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

Pages: PreviousFirst...9495969798...LastNext
Current Page: 96 of 126
Results 2851 - 2880 of 3766
14 years ago
JamesD
I do not use the autoloaded myself. We must hope someone who does can answer your questions.
Forum: General
14 years ago
JamesD
Very good desga2. The urlencode and urldecode functions work just fine. } else { $_PriorTabs_ENameA = urlencode($_PriorTabs_EName); setmenu($PT__m2,macro,$_PriorTabs_EName,"_PriorTabs_OpenTab(".$_PriorTabs_ENameA.")"); and _PriorTabs_OpenTab{ $_PriorTabs_URL = urldecode( $ARG ); opentab($_PriorTabs_URL) ; That is one more item to update in MacroLangu
Forum: General
14 years ago
JamesD
I don't think it is the url that has the problem. The problem is the $ARG does not handle the comma in setmenu. I added a line to sub the | for the comma for a new variable to be used in setmenu. } else { $_PriorTabs_ENameA = gsub( ",", "|",$_PriorTabs_EName); setmenu($PT__m2,macro,$_PriorTabs_EName,"_PriorTabs_OpenTab(".$_PriorTabs_ENameA.&
Forum: General
14 years ago
JamesD
The comma and items after the comma are getting lost using the @ARG in the setmenu function. When I look at $_PriorTabs_URL after setting it the value of $ARG the comma and items after it are gone. _PriorTabs_OpenTab{ $_PriorTabs_URL = $ARG; opentab($_PriorTabs_URL) ; } The problem is going to be in the setmenu statement. Somehow the comma is not transfering to the #ARG value there
Forum: General
14 years ago
JamesD
QuoteeDOC786 1. What should I do to get auto updates for KM when available? EDIT - PREFERENCES - K-MELEON PLUGINS and make sure there is a check in the box for 'update checker'. Quote2. Do I need to create a profile……if yes ……what are its pros & cons & how? KM always has a profile. Find your current profile using EDIT - CONFIGURATION - PROFILE DIRECTORY. Note
Forum: General
14 years ago
JamesD
EDIT - PREFERENCES - PRIVACY & SECURITY - GENERAL and uncheck the box called 'remember login data'.
Forum: General
14 years ago
JamesD
But you must be careful doing things that require a KM restart. Might have to shut down the autoloader and restart it also.
Forum: General
14 years ago
JamesD
I wonder if the complaints are from people who would have to re-write their extentions or from users who have tested and have problems? A lot of stuff we are used to is not going to work anymore when the change happens. I wonder if Cookie Monster will be ready with a version that works for both the old and the new way. I run some older versions of KM just for backwards testing. I wond
Forum: General
14 years ago
JamesD
You get two interfaces to the macro when you use Rename_Add. The first allows you to change the name of the favorite. After you do that box you will get one which will allow to choose any existing folder within Favorites, or you may 'Make a new folder'. If you make a new folder it will say 'new folder'. You can rename the folder. You may have to highlight Favorites and th
Forum: General
14 years ago
JamesD
@ MSLAYER Hold everything! Clear list is not working. More checking to do, I think. Working now I think I have the clear list working now. Sorry for the delay. Check to see if you have version .5 of the file. I have an example of a good menu system for this project. I will include it with this post. PriorTabs.kmm is not meant for use. It will run but there issues using an ini fi
Forum: General
14 years ago
JamesD
QuoteeDOC786 Thanks James done. Some lines of the 2 macros extend beyond the grey border? Sorry I meant gray up and down, not side to side. Do you now have the Rename_Add menu item under Favorites?
Forum: General
14 years ago
JamesD
See post in your other thread.
Forum: General
14 years ago
JamesD
@ eDOC786 Regarding FavRenAdd, there are two files which need to be created. The best method is to open Notepad, or any other text editor that you use. Go to the FavRenAdd page in the Macro Library. http://kmeleon.sourceforge.net/wiki/KmmFavRenAdd Look for the file name FavRenAdd.kmm in bold type. Highlight the text that has a gray background, but do not go beyond the gray background. C
Forum: General
14 years ago
JamesD
@ eDOC786 You can have the ability to rename a site during the add process to IE favorites and also create and use folders by installing this macro. http://kmeleon.sourceforge.net/wiki/KmmFavRenAdd
Forum: General
14 years ago
JamesD
@ desga2 I have updated MacroLanguage2 with iniread and iniwrite. http://kmeleon.sourceforge.net/wiki/MacroLanguage2 Where can I get the information needed to update Command IDs or have they been done? http://kmeleon.sourceforge.net/wiki/CommandIDs
Forum: Development
14 years ago
JamesD
I have updated MacroLanguage2 with some information about iniread and iniwrite. http://kmeleon.sourceforge.net/wiki/MacroLanguage2
Forum: Improvement requests
14 years ago
JamesD
I have asked for a new special variable. \null, for the macro language. http://kmeleonbrowser.org/forum/read.php?4,94189 I am posting the latest version of ini_Demo.kmm. I have changed the $_ini_Demo_Item variable name to $_ini_Demo_Key to make it consistent with the names for part of an ini file. This version of the macro does not require Windows Scripting Host for the the ini file delet
Forum: Improvement requests
14 years ago
JamesD
The current macro language does not have a null value available. With the introduction of the statements iniwrite and iniread in version 1.5.3 a null value is needed. If we assume that the "WritePrivateProfileStringUTF8" function in the code for the macro language is to have the same properties as the "WritePrivateProfileString", then we must have a null value to pass to eit
Forum: Improvement requests
14 years ago
JamesD
Quotedesga2 In C++ you have NULL word to represent a null value but in K-Meleon Macro Language a null value is represented by an empty string "" or a 0 (zero). The macro language empty string does not equate to the C++ NULL word when using iniwrite. Perhaps we need another macro language special string which could be \null. That may be too much like the \n for new line. I have ru
Forum: Improvement requests
14 years ago
JamesD
I have tried several methods to send a null value to the iniwrite statement. Sometimes I get a blank, perhaps a null, value but never does the statement remove the item from the section. #$_ini_Demo_Value = ""; ## No delete, the value becomes blank #$_ini_Demo_Value = -0; ## No delete, the value becomes 0 #$_ini_Demo_Value = \n; ## No delete, the value becomes blank #$_ini_
Forum: Improvement requests
14 years ago
JamesD
The current history plugin uses the Mork database. It is not an easy database to understand. KM 1.6 (in the near future) is expected to use the sqlite database and maybe more features will be available then.
Forum: Improvement requests
14 years ago
JamesD
Work is ongoing. I hope before long there will be a 1.6 version. This is right place to discuss improvements. There is even a forum section just for improvement requests. Feel free to post your requests for discussion. Sometimes the feature is available but not well known. People in the forum know a lot about KM and help with many requests.
Forum: Development
14 years ago
JamesD
If you right click on Sessions, there is a "Undo Last Closed" option. I even have that option set up to a button so I can single click to re-open closed tabs.
Forum: Improvement requests
14 years ago
JamesD
@ Mslayer See this macro for rebuildmenu example. http://kmeleon.sourceforge.net/wiki/KmmPgLdSound
Forum: General
14 years ago
JamesD
@ desga2 This line iniwrite($_ini_Demo_Section, $_ini_Demo_Item, , $_ini_Demo_Path); causes problems in error console. Invalid expression ,$_ini_Demo_Path); and wrong number of arguments - expected 4 found 2.
Forum: Improvement requests
14 years ago
JamesD
@ desga2 You were faster than I. It was the pesky quotes and special quotes. I found your post when I came here to post my change. exec("cmd /c ERASE \"".$_ini_Demo_Path."\""); I will go back and re-test the nulls. Thanks.
Forum: Improvement requests
14 years ago
JamesD
@ Jujuland I tried 'exec("cmd.exe");' and I had the Cmd window stay open with info like this" Microsoft Windows XP ver 5.1.2600 copyright line C:\Program Files\k-meleon> This means that my 'cmd.exe' file is present and working, right? @ Desga2 I tried omitting the field(s) where I wanted a null. I saw no change to the ini file. I don'
Forum: Improvement requests
14 years ago
JamesD
QuoteJujuLand Hum, I don't think it's a good idea to use a wsh script. Instead of it, you can use the exec command: exec("cmd /c del ".$inifile); I have used the exec cmd statement, but it has not worked for me. Have I done the statement wrong? _ini_Demo_RunCode6{ #exec("wscript.exe \"".$_ini_Demo_JSpath."\" \"".$_ini_Demo_Path.&
Forum: Improvement requests
14 years ago
JamesD
@ desga2 I have tried everything I can think of for a null value. I have even tried leaving out the variable name and just having the commas for placeholders but nothing seems to work. I don't know if this is a bug or the work in incomplete. I want to start work on updating Macrolibary2, but I don't want to put incomplete data or incorrect data there. I am including my most up-
Forum: Improvement requests
14 years ago
JamesD
I am doing some testing on the new macro statements, iniwrite and iniread. I have some things working and will include a demo macro for that. There is a question about the action of a null value. The information on WritePrivateProfileString from http://msdn.microsoft.com/en-us/library/ms725501(VS.85).aspx would lead me to expect that if the value for a key is null then the key would be remove
Forum: Improvement requests
Pages: PreviousFirst...9495969798...LastNext
Current Page: 96 of 126

K-Meleon forum is powered by Phorum.