General :  K-Meleon Web Browser Forum
General discussion about K-Meleon 

Pages: PreviousFirst...9192939495...LastNext
Current Page: 93 of 126
Results 2761 - 2790 of 3766
14 years ago
JamesD
If this id command is used in a macro, will the macro continue in the original window or the next window? I have this code. opennew( $URL ); id(ID_WINDOW_NEXT); The macro stays in the original window, but that window already has 80 tabs and I need to inject some JS into the second window. I need to produce tabs for links 79 to 159.
Forum: General
14 years ago
JamesD
@ desga2 $SelectedText variable only has the screen text. It does not have the URL from the source behind the text.
Forum: General
14 years ago
JamesD
@ magic48ges The current limit on number of tabs does seem to be 80. I have made a change to OpenLinksAsTabs.kmm to account for that. You might give it a try and let me know if it works for you. OpenLinksAsTabs.kmm # K-Meleon Macros (http://kmeleon.sourceforge.net/wiki/index.php?id=MacroLanguage) # ---------- OpenLinksAsTabs --------------------------------------------------- #
Forum: General
14 years ago
JamesD
@ magic48ges Good work finding that limit. I think I can fix the macro to handle that just like the other prefs that are changed. Regarding the limit of 80, I found this in one of my earlier posts. QuoteI hope this is what Charlie wants. I see one problem ahead. There seems to be an upper limit on number of tabs. Maybe he will not do a page with more than 99 links. I am not sure where
Forum: General
14 years ago
JamesD
@ magic48ges I see what you mean. I don't know why the limit. I worked on the conversion from layers to tabs for this macro, but I made no change to the "injectJS" code. If I have a single tab open and use the macro, I get only 20 additional tabs. I can find no coded limit in the macro. I will keep looking but I am not an expert on "JS" code.
Forum: General
14 years ago
JamesD
This thread may provide an anwser for your first question. http://kmeleonbrowser.org/forum/read.php?4,85002
Forum: Improvement requests
14 years ago
JamesD
Sometimes when you have a lockup the next time KM starts it makes a new profile. It did not erase your old. Use EDIT - CONFIGURATION - PROFILE DIRECTORY to find your current (new) profile. Then close KM and look in the same area for the earlier profile. It will have a name like "q6psu8b0.default" where the q6psu8b0 part is a random name. You can copy bookmarks and cookies from the
Forum: General
14 years ago
JamesD
@ Alan You can also use Groups2 http://kmeleon.sourceforge.net/wiki/KmmGroups2 to have a list of single or multiple pages that you can load from a menu.
Forum: Improvement requests
14 years ago
JamesD
I traced the context menu item back to these lines in main.kmm but I don't know how to go further. kTabs_ReloadAll{ macroinfo=_("Reload all tabs in the current window"); injectJS("location.reload()","alltabs"); }
Forum: Bugs
14 years ago
JamesD
I just tried with 7 then 9 tabs and all reloaded. I am using KM 1.5.3 rv:1.8.1.22 on XP=SP3. What version are you using?
Forum: Bugs
14 years ago
JamesD
@ Kameleon153 The menu item "Find In Page" comes from "menus.cfg". Find{ &Find In Page=ID_EDIT_FIND .. As you can see it just calls a "Command ID". Like you, I looked but could find no prefs which seem to affect the display location. Just a thought - what would be the effect on your quick start bar if you did not run KM at max window size? Run fu
Forum: Improvement requests
14 years ago
JamesD
How do I tell if I am using the newest 10.0.32.18 version? I ran the update noted earlier in this thread. This is from my about plugins: File name: NPSWF32.dll Shockwave Flash 10.0 r32
Forum: General
14 years ago
JamesD
I think that upper left icon is "main.ico" and is located in your skin folder.
Forum: General
14 years ago
JamesD
@ caprivi Look at EDIT - PREFERENCES - BROWSING - TABBED BROWSING - TAB BAR and check to see if there is a check in the box called "Display tab bar at the bottom".
Forum: General
14 years ago
JamesD
@ koMon I ran a test on my pc to see what I said would work correctly. It did. These are the steps I took. I am posting to this thread from the new, synced version of KM. Even my cookie for the automatic logon to the forum worked. All you need to do for 1-3 is find the profile directory on the second pc. profile directory for original KM C:\Program Files\k-meleon\Profiles\q6psu8b0
Forum: General
14 years ago
JamesD
Quotemhf I'd have thought the tab information must be in there somewhere because of the "Close other tabs" command...? There is a specific Command ID to do that. Quotehttp://kmeleon.sourceforge.net/wiki/CommandIDs ID_CLOSE_ALLOTHERTAB Only 1.5 and later. Close all other tabs but not current active tab. @TabList knows the position of the current tab, but it not provided to
Forum: Development
14 years ago
JamesD
@ mhf That's great. I wish I could get full automation but the critical piece of data, the tab number of the current tab, does not seem to be available to the MacroLanguage.
Forum: Development
14 years ago
JamesD
@ koMon Maybe I said that wrong. I think I should have said to copy the contents of the profile directory rather than the directory itself. Each system will have a unique name for its profile directory. KM looks to find that name. If pc #1 has q6psu8b0.default and pc #2 has x0psw8b0.default for their profiles then you must copy the contents of q6psu8b0.default and paste over the contents in
Forum: General
14 years ago
JamesD
@ koMon I think that if you have the same version running on each pc then you can copy your profile folder from one to the other. You can find your profile by using EDIT - CONFIGURATION - PROFILE DIRECTORY. If you copy the entire profile, you will get the same history and cache. If you do not need the same history and cache, you could leave out history.dat and the folder named cache when yo
Forum: General
14 years ago
JamesD
@ mhf Are you still not seeing a prompt for Previous? I have had no luck in making macro more automatic. I am seeing prompts for both next and previous. I will post my most recent code. EndTabLR.kmm # K-Meleon Macros (http://kmeleon.sourceforge.net/wiki/index.php?id=MacroLanguage) # # ---------- EndTabLR.kmm # ---------- K-Meleon Macro Language Close all previous or next tab
Forum: Development
14 years ago
JamesD
Sometimes when I am working on a new macro, I get so fixated on the code and what I hope to see on the screen that I forget to check the error console to see if that shows me a problem. So I wrote this little program that I can turn on for testing and leave off for surfing. AutoE.kmm # K-Meleon Macros (http://kmeleon.sourceforge.net/wiki/index.php?id=MacroLanguage) # # ---------- AutoE
Forum: General
14 years ago
JamesD
Quotedesga2 But you now the current $URL and $Title, you can compare it with the others to find it. Start in first tab, compare $URL with tabs and when this is match you have the current tab number and you can close other tabs to left or right without prompt for how much you want to close. How do I determine the first tab? I can compare next with current until I have a match, but then all I
Forum: Development
14 years ago
JamesD
@ mhf Fix for context menu on Go button -- Change the # from $OnInit to $OnStartup, save file, and try it. #$OnStartup=$OnStartup."_EndTabLR_ModMenu;"; $OnInit=$OnInit."_EndTabLR_ModMenu;"; $macroModules=$macroModules."EndTabLR;"; Quotemhf The prompt window opens for right-hand tabs but not for left-hand. I am seeing both. I don't know why you a
Forum: Development
14 years ago
JamesD
@ desga2 Thanks ever so much.
Forum: General
14 years ago
JamesD
@ mhf This is not as automatic as I had hoped. There does not seem to be a variable to inform the MacroLanguage of the index number of the current tab. For now, at least, you must eyeball the tab bar or tab list and enter a number for how many tabs to delete. EndTabLR.kmm # K-Meleon Macros (http://kmeleon.sourceforge.net/wiki/index.php?id=MacroLanguage) # # ---------- EndTabLR.kmm
Forum: Development
14 years ago
JamesD
@ desga2 Well, I have egg all over my face again. Thank you for spotting the missing brace. I guess my next project will be to automate the Error Console to run OnStartup if user pref "k-meleon.errorchecking" is set to true. Then I will have to remember to set the pref when starting a new project.
Forum: Development
14 years ago
JamesD
Sorry, unable to post reason. Never used FF. Came to KM from IE.
Forum: General
14 years ago
JamesD
Can someone find for me the name of the menu which appears when you right click on a tab. I thought it was "TabButtonPopup". I found that in menus.cfg # ----- Tabs %ifplugin tabs TabButtonPopup{ !New !CloseTab !NavTab - :T&abs } %endif Either that is the wrong item or my setmenu statements are not valid. # K-Meleon Macros (http://kmeleon.sourceforge.net/wiki/
Forum: Development
14 years ago
JamesD
@ JujuLand I guess it is part of KM's core program which uses the kml file when it sees the _() statement in a macro? This will be a fix Dorian must do? So if I gave you a file with the left side of the equation only <text string 1>= <text string 2>= and you filled in the right side on your linux machine, the current KM would not be able to use it? That is something
Forum: Bugs
14 years ago
JamesD
@ Gorilla no baka I assume from what you have said that you do not get an error message. When you restart you do not get any message about not closing properly? It is not always during a file download where this happens. Sometimes it is just on page loading as well? QuoteThere is no pattern in K-meleon`s freezing.And when it freezes it DOES FREEZE !!! Not even the search button on the
Forum: General
Pages: PreviousFirst...9192939495...LastNext
Current Page: 93 of 126

K-Meleon forum is powered by Phorum.