Improvement requests :  K-Meleon Web Browser Forum
Use this forum to talk about a feature you're missing. 
Pages: 123Next
Current Page: 1 of 3
Name to save an IE fav
Posted by: Rodger
Date: August 11, 2008 05:54PM

Hello,
first I want to say that I am German. But I try to write in English, so that more people can read and help me.

Before I have seen K-Meleon I used IE7.
So I want to use the IE7 Favorites.
This works great.
But When I klick on "Favoriten - Seite hinzufügen" there comes no dialog where I can say how the favorites Name is and where the favorites should be save (in which folder).

Can you fix this?

Thanks
Rodger

Options: ReplyQuote
Re: Name to save an IE fav
Posted by: desga2
Date: August 11, 2008 06:51PM

We have a macro in MacroLibrary named FavRenAdd to do this.

Thanks to JamesD to developed it.

K-Meleon in Spanish

Options: ReplyQuote
Re: Name to save an IE fav
Posted by: Rodger
Date: August 11, 2008 08:47PM

Hi,
I works partly
I have posted it here
http://kmeleonbrowser.org/forum/read.php?1,73639,page=2

Options: ReplyQuote
Re: Name to save an IE fav
Posted by: JamesD
Date: August 11, 2008 11:41PM

@ Rodger

The FavRenAdd macro and js in the MacroLibrary works for ASCII only. There is another version that I developed for international use. See this thread. http://kmeleonbrowser.org/forum/read.php?1,81444

I would like to know if the orginal version works for you, or if not you might try the international version. I was waiting for feedback before putting in the MacroLibrary. I am sorry that I don't have any translation for it as I speak only English.

Options: ReplyQuote
Re: Name to save an IE fav
Posted by: Rodger
Date: August 12, 2008 10:01AM

Hi,
I have tested it.
How must I save the file ANSI, UTF-8 ???
Die link will not be saved !!!
It comes a message "Windows Script Host" "1".
Then comes a message with the path to my default folder

How can I translate this into german?
I have in the folder "C:\Programme\K-Meleon\locales\de-DE" the file "FavRenAdd.kml"
with the content

Quote

Specify where to add the new shortcut. Select your Favorites folder or one of its subfolders:=Geben Sie an, wo die neue Verknüpfung erstellt werden soll. Wählen Sie Ihren Favoritenordner oder einen seiner Unterordner aus:
Rename the Favorite Title here=Ändern Sie hier den Titel des Favoriten
Did you mean to cancel?=Wollten Sie abbrechen?
Affirm cancel=Abbruch bestätigen
&Rename-Add=&Umbenennen-Hinzufügen
But only "&Rename-Add" will be translated. The other things are always in english.

Can you help me?

Options: ReplyQuote
Re: Name to save an IE fav
Posted by: desga2
Date: August 12, 2008 10:56AM

@ JamesD:
You must write the strings to traslate into _("string") function in kmm code to be translated.

K-Meleon in Spanish

Options: ReplyQuote
Re: Name to save an IE fav
Posted by: JamesD
Date: August 12, 2008 11:42AM

I am sorry I did not have the translate function correct before. I only know English so this is very new for me.

@desga2

These are the lines I am going to change. There may be more here than are in the translate code. I added another menu location and I don't think we had alert box titles there before. Does it appear that I have now used the translate function correctly?

alert(_("Unable to create favorite - data too long!\n\nThe data was copied to the clipboard."),_("Failure to complete"),EXCLAIM);

$_FavRenAdd_SubFolder=promptforfolder (_("Specify where to add the new shortcut. Select your Favorites folder or one of its subfolders:"),$_FavRenAdd_FavFolder);

$_FavRenAdd_value=prompt($_FavRenAdd_CurrTitle,_("Rename the Favorite Title here"),$_FavRenAdd_CurrTitle);

$FavRenAdd_Button=confirm(_("Did you mean to cancel?"),_("Affirm cancel") ,YESNO,QUESTION);

$kFavorites=="true"?setmenu("F&avorites",macro,_("&Rename-Add"),_FavRenAdd_RenameAdd,1):0;

$kFavorites=="true"?setmenu("DocumentSave",macro,_("&Rename-Add to Favorites"),_FavRenAdd_RenameAdd,1):0;


Options: ReplyQuote
Re: Name to save an IE fav
Posted by: JamesD
Date: August 12, 2008 11:55AM

I have updated code in MacroLibrary for ASCII version. Please check and see if the translation works.

I will have another look at the international version. The message seems to say there was not the right number of arguement passed to the JS file.

Options: ReplyQuote
Re: Name to save an IE fav
Posted by: JamesD
Date: August 12, 2008 12:17PM

@Rodger

When you tried the international version, did you replace both the kmm file and the js file? It seems to work OK for me. I have updated the translate function in this copy. The js file is below the kmm file

FavRenAdd.kmm

#  K-Meleon Macros (http://kmeleon.sourceforge.net/wiki/index.php?id=MacroLanguage)
#
# ---------- FavRenAdd.kmm
# ---------- K-Meleon Macro Language Rename/Add page to Favorites ---------------
# ---------- INTERNATIONAL VERSION
#
# Dependencies        : - main.kmm, Favorites plugin active, JScript, Windows Scripting Host
# Resources           : - Registry keys "HKCU\\Software\\KMELEON\\FavRenAdd\\URLname"
#                 	            and "HKCU\\Software\\KMELEON\\FavRenAdd\\URLdisc"
# Preferences         : -
# Version             : -  3.0   2008-07-30
# --------------------------------------------------------------------------------
#
_FavRenAdd_RnameTrue{
####   look three places for the favorites directory
$_FavRenAdd_FavFolder=getpref(STRING,"kmeleon.plugins.favorites.directory");
$_FavRenAdd_FavFolder==""?$_FavRenAdd_FavFolder=readreg("HKCU","Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders\\Favorites"):0;
$_FavRenAdd_FavFolder==""?$_FavRenAdd_FavFolder=readreg("HKLM","Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders\\Favorites"):0;
####   $_FavRenAdd_FavFolder should have the path for the favorites folder   c:\something\favorites
####   call _FavRenAdd_RnameTrue_loop until $_FavRenAdd_SubFolder is no longer a "?"
$_FavRenAdd_SubFolder="?";   while($_FavRenAdd_SubFolder=="?") &_FavRenAdd_RnameTrue_loop;
$_FavRenAdd_Title = substr($_FavRenAdd_value,1);
macros(_FavRenAdd_Sanitize_Title) ;                                
$_FavRenAdd_PathName = $_FavRenAdd_FavFolder."\\".$_FavRenAdd_SubFolder."\\".$_FavRenAdd_Title.".url" ;
$_FavRenAdd_Ext_Interger = 1;
while ($_FavRenAdd_Ext_Interger > 0 ) &_FavRenAdd_Duplicates_loop ;
## enclosure of a parameter in double quotes is only necessary when the parameter can contain whitespace
## therefor the 1, 2, and 3 in the next "exec" lines do not have double quotes
## first check the line lengths
$_fmax=258 ; $_FavRenAdd_ExVal = 0 ;
$_fcmd = "(wscript.exe \"".$_FavRenAdd_Path."\" 1 \"".$_FavRenAdd_PathName.")" ;
length($_fcmd)>$_fmax ? &_FavRenAdd_Error1:0;
$_fcmd = "(wscript.exe \"".$_FavRenAdd_Path."\" 2 \"".$_FavRenAdd_CurURL.")" ;
length($_fcmd)>$_fmax ? &_FavRenAdd_Error2:0;
$_FavRenAdd_ExVal < 2 ? &_FavRenAdd_RunScript:0;
}

_FavRenAdd_RunScript{
exec("wscript.exe \"".$_FavRenAdd_Path."\" 1 \"".$_FavRenAdd_PathName."\"");
exec("wscript.exe \"".$_FavRenAdd_Path."\" 2 \"".$_FavRenAdd_CurURL."\"");
exec("wscript.exe \"".$_FavRenAdd_Path."\" 3 \""execute"\"") ;
}

_FavRenAdd_Error1{
alert(_("Unable to create favorite - data too long!  Line length, "). length($_fcmd). _(" and line are displayed\n\n"). $_fcmd, _("String length too long!"), EXCLAIM) ;
$_FavRenAdd_ExVal = $_FavRenAdd_ExVal + 2;
}

_FavRenAdd_Error2{
alert(_("Unable to create favorite - data too long!  Line length, "). length($_fcmd). _(" and line are displayed\n\n"). $_fcmd, _("String length too long!"), EXCLAIM) ;
$_FavRenAdd_ExVal = $_FavRenAdd_ExVal + 3;
}

_FavRenAdd_Sanitize_Title{
$_FavRenAdd_RevTitle = gsub( "?"," ",$_FavRenAdd_Title); 
$_FavRenAdd_RevTitle = gsub( ":"," ",$_FavRenAdd_RevTitle); 
$_FavRenAdd_RevTitle = gsub( "*"," ",$_FavRenAdd_RevTitle); 
$_FavRenAdd_RevTitle = gsub( "<"," ",$_FavRenAdd_RevTitle); 
$_FavRenAdd_RevTitle = gsub( ">"," ",$_FavRenAdd_RevTitle); 
$_FavRenAdd_RevTitle = gsub( "/"," ",$_FavRenAdd_RevTitle); 
$_FavRenAdd_RevTitle = gsub( "|"," ",$_FavRenAdd_RevTitle); 
$_FavRenAdd_RevTitle = gsub( "\\","",$_FavRenAdd_RevTitle);
$_FavRenAdd_Title = gsub( "\"","^",$_FavRenAdd_RevTitle);
}

_FavRenAdd_Duplicates_loop{
$_FavRenAdd_Exists=readfile($_FavRenAdd_PathName);
$_FavRenAdd_Exists=1.$_FavRenAdd_Exists ;
$_FavRenAdd_Len2=length($_FavRenAdd_Exists);
$_FavRenAdd_Len2 == 1 ? $_FavRenAdd_Ext_Interger=0 : &_FavRenAdd_Extend;
}

_FavRenAdd_Extend{
$_FavRenAdd_Wrk_Int = $_FavRenAdd_Ext_Interger - 1 ;
$_FavRenAdd_Ext_Interger == 1 ? $_FavRenAdd_PathName = gsub(".url" , "[".$_FavRenAdd_Ext_Interger."].url",$_FavRenAdd_PathName):0;
$_FavRenAdd_Ext_Interger > 1 ? $_FavRenAdd_PathName = gsub("[".$_FavRenAdd_Wrk_Int."].url" , "[".$_FavRenAdd_Ext_Interger."].url" , $_FavRenAdd_PathName):0;
$_FavRenAdd_Ext_Interger = $_FavRenAdd_Ext_Interger + 1 ;
}

_FavRenAdd_RnameTrue_loop{
$_FavRenAdd_SubFolder=promptforfolder(_("Specify where to add the new shortcut. Select your Favorites folder or one of its subfolders:"),$_FavRenAdd_FavFolder);
$_FavRenAdd_SubFolder=$_FavRenAdd_SubFolder=="" ? "" : index($_FavRenAdd_SubFolder,$_FavRenAdd_FavFolder) == 0 ? substr($_FavRenAdd_SubFolder,length($_FavRenAdd_FavFolder)+1) : "?";
}

_FavRenAdd_RenameAdd{
$_FavRenAdd_CurrTitle = $TITLE;
$_FavRenAdd_CurURL = $URL;
$_FavRenAdd_value=prompt($_FavRenAdd_CurrTitle,_("Rename the Favorite Title here"),$_FavRenAdd_CurrTitle);
###  cancel from prompt will return a length of zero to which we add one
$_FavRenAdd_value = 1.$_FavRenAdd_value;
$_FavRenAdd_Len=length($_FavRenAdd_value);
###  if the length is 1 cancelled was pressed on the prompt box
$_FavRenAdd_Len == 1 ? &_FavRenAdd_Cancelled :&_FavRenAdd_RnameTrue ;
}

_FavRenAdd_Cancelled{
$FavRenAdd_Button=confirm(_("Did you mean to cancel?"),_("Affirm cancel") ,YESNO,QUESTION);
$FavRenAdd_Button == "YES" ? 0 : &_FavRenAdd_RenameAdd ;
}

_FavRenAdd_ModMenu{
### add another option to Favorites menu if favorites plugin is active
$kFavorites=="true"?setmenu("F&avorites",macro,_("&Rename-Add"),_FavRenAdd_RenameAdd,1):0;

### show in Document Popup ;
$kFavorites=="true"?setmenu("DocumentSave",macro,_("&Rename-Add to Favorites"),_FavRenAdd_RenameAdd,1):0;
}

_FavRenAdd_GetPath{
### FavRenAdd.js is supposed to be located in the same folder as FavRenAdd.kmm (this file).
### If it isn't, Windows Script Host will notify the user.
$_FavRenAdd_Data=readfile(getfolder(MacroFolder)."\\FavRenAdd.kmm");
$_FavRenAdd_Path=getfolder($_FavRenAdd_Data==""?UserMacroFolder:MacroFolder)."\\FavRenAdd.js";
}

$OnStartup=$OnStartup."_FavRenAdd_GetPath;";
$OnInit=$OnInit."_FavRenAdd_ModMenu;";
$macroModules=$macroModules."FavRenAdd;";

FavRenAdd.js

/* FavRenAdd.js by JamesD, version  3.01  2008-07-30
   INTERNATIONAL VERSION

   This script is a helper application for the K-Meleon Macro Module FavRenAdd.kmm that
   enables you to rename a favorite, select a folder, and write the favorite to that folder.

   Windows Script Host 1.0 (or better) required!

   WSH is part of Microsoft Internet Explorer 5.0 and newer. Latest version of WSH is
   available at http://msdn.microsoft.com/scripting/
*/

if(WScript.Arguments.count()==2)
{
	var WshShell = new ActiveXObject("WScript.Shell")
	if (WScript.Arguments(0) == 1)
		{
			WshShell.RegWrite ("HKCU\\Software\\KMELEON\\FavRenAdd\\URLname", WScript.Arguments(1), "REG_SZ");
		}
	if (WScript.Arguments(0) == 2)
		{
			WshShell.RegWrite ("HKCU\\Software\\KMELEON\\FavRenAdd\\URLdisc", WScript.Arguments(1), "REG_SZ");
		}		
	if (WScript.Arguments(0) == 3)
		{
			WScript.Sleep(1000);
			var $_FavRenAdd_PathName = WshShell.RegRead ("HKCU\\Software\\KMELEON\\FavRenAdd\\URLname") ;
			var $_FavRenAdd_CurURL   = WshShell.RegRead ("HKCU\\Software\\KMELEON\\FavRenAdd\\URLdisc") ;
			var oShellLink = WshShell.CreateShortcut($_FavRenAdd_PathName);
			oShellLink.TargetPath = $_FavRenAdd_CurURL;
			oShellLink.Save();
			WshShell.RegDelete ("HKCU\\Software\\KMELEON\\FavRenAdd\\URLname") ;
			WshShell.RegDelete ("HKCU\\Software\\KMELEON\\FavRenAdd\\URLdisc") ;
		}		
}
else
{
objArgs = WScript.Arguments ;
WScript.Echo(WScript.Arguments.Count());
for (i=0; i<objArgs.length; i++)
{
    WScript.Echo(objArgs(i))
}
}



Options: ReplyQuote
Re: Name to save an IE fav
Posted by: desga2
Date: August 12, 2008 12:21PM

@ JamesD:

Now code looks translation functions OK.

K-Meleon in Spanish

Options: ReplyQuote
Re: Name to save an IE fav
Posted by: Rodger
Date: August 12, 2008 07:46PM

Hi,
the Script works now better.

The link will be saved correct.

But when I look under "Favoriten in K-Meleon the saved link didn`t exist.
I must clode K-Meleon and shot all processes called k-meleon.exe away.
Then I start K-Meleon and I can see the link.
Whats going wrong there?

When I start the PC (and the K-Meleon Loader) ist comes an error MSGbox with 5 rows.
The first is this
"Error in davrenadd.kmm
C:\...\favrenadd.kmm at line 41 expected but found <name>"
The other 4 rows are nearly the same.
Whats going wrong there?
How must I save the two files ANSI, UTF-8???

The Translation for the script works now.

Options: ReplyQuote
Re: Name to save an IE fav
Posted by: JamesD
Date: August 12, 2008 08:22PM

@ Roger

First item is that FavRenAdd works outside of KM. Information is sent to the js file and that script creates the link. KM's IE Favorites dll only reads your favorites once - when it starts. In order to see and use the new links from FavRenAdd you can use the "Edit" item in the favorites menu. That option reads the favorites in real time. The only other option is to stop and restart KM.

As for the second item, I don't know why the error. Are you using the version of FavRenAdd in the MacroLibrary or the international version from my earlier post?

Options: ReplyQuote
Re: Name to save an IE fav
Posted by: JujuLand
Date: August 12, 2008 08:37PM

To read again the favorites folder, you perhaps can use kplugin command

perhaps something like :

plugins("favorites", "load");

Functions avalaible are:

FindNick
AddLink
DoAccel
DoRebar
DoMenu
Quit
Destroy
Config
Create
Load


A+



Mozilla/5.0 (x11; U; Linux x86_64; fr-FR; rv:38.0) Gecko/20100101 Ubuntu/12.04 K-Meleon/76.0


Web: http://jujuland.pagesperso-orange.fr/
Mail : alain [dot] aupeix [at] wanadoo [dot] fr



Ubuntu 12.04 - Gramps 3.4.9 - Harbour 3.2.0 - Hwgui 2.20-3 - K-Meleon 76.0 rc



Options: ReplyQuote
Re: Name to save an IE fav
Posted by: desga2
Date: August 12, 2008 10:08PM

Also for refresh favorites menu i think that you can use rebuildmenu() function.

K-Meleon in Spanish

Options: ReplyQuote
Re: Name to save an IE fav
Posted by: Rodger
Date: August 13, 2008 08:58AM

Hi,
I use the INTERNATIONAL VERSION from your post from 12. August 2008 14:17
What must I change for the rebuildmenu() function?

Sorry but I am new.

Options: ReplyQuote
Re: Name to save an IE fav
Posted by: JamesD
Date: August 13, 2008 01:24PM

Quote
Roger
When I start the PC (and the K-Meleon Loader) ist comes an error MSGbox with 5 rows.
The first is this
"Error in davrenadd.kmm
C:\...\favrenadd.kmm at line 41 expected but found <name>"
The other 4 rows are nearly the same.
Whats going wrong there?
How must I save the two files ANSI, UTF-8???

The lines 38 thru 42 should look like the following.
_FavRenAdd_RunScript{
exec("wscript.exe \"".$_FavRenAdd_Path."\" 1 \"".$_FavRenAdd_PathName."\"");
exec("wscript.exe \"".$_FavRenAdd_Path."\" 2 \"".$_FavRenAdd_CurURL."\"");
exec("wscript.exe \"".$_FavRenAdd_Path."\" 3 \""execute"\"") ;
}
I don't know why you are getting the error. I have the international version running on my KM 1.1.6 and I do not get any error. Which version of KM are you using? Maybe it would be good to try to save the FavRenAdd.kmm file again. The first line to save begins with "# K-Meleon Macros (http://kmeleon" and the last line to save begins with "$macroModules=$macroModules".

It is best to save files needed for KM in the UTF8 without BOM format.

No need to be sorry to be new. We were all new at some time. We all try to help answer questions when we can.

Options: ReplyQuote
Re: Name to save an IE fav
Posted by: JamesD
Date: August 13, 2008 01:31PM

@ Roger

Disregard previous post. Not your fault. I moved international version to my KM 1.5 and I get the error. I will do some testing and get a repost as quick as I can.

Options: ReplyQuote
Re: Name to save an IE fav
Posted by: JamesD
Date: August 13, 2008 01:44PM

@ Roger

Congratulations, you have just become a beta tester and have completed your first bug report. I forgot to test in KM 1.5 and that version has a more strict macro language.

To fix your FavRenAdd.kmm file you can replace just a few lines of code.

The old code looks like this.
_FavRenAdd_RunScript{
exec("wscript.exe \"".$_FavRenAdd_Path."\" 1 \"".$_FavRenAdd_PathName."\"");
exec("wscript.exe \"".$_FavRenAdd_Path."\" 2 \"".$_FavRenAdd_CurURL."\"");
exec("wscript.exe \"".$_FavRenAdd_Path."\" 3 \""execute"\"") ;
}

Replace that code with this new version.
_FavRenAdd_RunScript{
$_FavRenAdd_Execute = "execute" ;
exec("wscript.exe \"".$_FavRenAdd_Path."\" 1 \"".$_FavRenAdd_PathName."\"");
exec("wscript.exe \"".$_FavRenAdd_Path."\" 2 \"".$_FavRenAdd_CurURL."\"");
exec("wscript.exe \"".$_FavRenAdd_Path."\" 3 \"".$_FavRenAdd_Execute."\"") ;
}


Options: ReplyQuote
Re: Name to save an IE fav
Posted by: kko
Date: August 13, 2008 01:54PM

Quote
JamesD
$_FavRenAdd_Execute = "execute" ;
exec("wscript.exe \"".$_FavRenAdd_Path."\" 3 \"".$_FavRenAdd_Execute."\"") ;

Why so complicated?

exec("wscript.exe \"".$_FavRenAdd_Path."\" 3 execute");


Options: ReplyQuote
Re: Name to save an IE fav
Posted by: desga2
Date: August 13, 2008 03:06PM

I'm agree with kko. smiling smiley
This is more easy than you have in mind.

K-Meleon in Spanish

Options: ReplyQuote
Re: Name to save an IE fav
Posted by: JamesD
Date: August 13, 2008 08:43PM

@kko and desga2

Because I have a mental block, I guess, when it comes to the \" and " combinations.

I will try out the simple version use that for the copy for the MacroLibrary. I am waiting to see how it does for Roger before I put it in the MacroLibrary.

Options: ReplyQuote
Re: Name to save an IE fav
Posted by: Rodger
Date: August 14, 2008 10:29AM

Hi,
thanks now i works.
I have edit the lines from your post from 13. August 2008 15:44.
Yes I use KM 1.5.0

One problem exist.
But when I look under "Favoriten in K-Meleon the saved link didn`t exist.
I must clode K-Meleon and shot all processes called k-meleon.exe away.
Then I start K-Meleon and I can see the link.
What must I exactly change?

Options: ReplyQuote
Re: Name to save an IE fav
Posted by: JamesD
Date: August 14, 2008 11:33AM

@ Roger

See my post of August 12 for reason you do not see new links until you restart KM.

I will investigate the possible fixes for this problem that JujuLand and desga2 suggested in posts of the same date. I am having a computer hardware problem now, so it may take some time before I can get to work on this.

I am glad to hear that FavRenAdd international version is working for you. Thanks for your patience and help.

Options: ReplyQuote
Re: Name to save an IE fav
Posted by: Rodger
Date: August 14, 2008 06:06PM

OK thanks for all.
When you have a solution, can you please post it here?

Thanks

Options: ReplyQuote
Re: Name to save an IE fav
Posted by: JamesD
Date: August 15, 2008 04:55PM

@ JujuLand

Tests indicate that running 'plugin("favorites", "load");' does not make availible to the favorites system the recent additions using FavRenAdd.

Options: ReplyQuote
Re: Name to save an IE fav
Posted by: desga2
Date: August 15, 2008 05:46PM

@ JamesD:
If you look in "menus.cfg" file in \defaults\settings folder you can found that Favorites in menus are included with command "favorites()".
Are you tried with something similar to:
setmenu("F&avorites",command,"favorites()");

K-Meleon in Spanish

Options: ReplyQuote
Re: Name to save an IE fav
Posted by: JujuLand
Date: August 15, 2008 06:52PM

As Favorites is already loaded, the kplugin probably make nothing.

Have you tried first 'Quit' and then 'Load' ??

A+



Mozilla/5.0 (x11; U; Linux x86_64; fr-FR; rv:38.0) Gecko/20100101 Ubuntu/12.04 K-Meleon/76.0


Web: http://jujuland.pagesperso-orange.fr/
Mail : alain [dot] aupeix [at] wanadoo [dot] fr



Ubuntu 12.04 - Gramps 3.4.9 - Harbour 3.2.0 - Hwgui 2.20-3 - K-Meleon 76.0 rc





Edited 2 time(s). Last edit at 08/15/2008 06:53PM by JujuLand.

Options: ReplyQuote
Re: Name to save an IE fav
Posted by: JamesD
Date: August 15, 2008 08:11PM

@ JujuLand

Did not work to do "Quit" and "Load". I still cannot see new link until restart.

_Snippet_RunCode{
plugin("favorites", "Quit");
plugin("favorites", "Load");
}

Options: ReplyQuote
Re: Name to save an IE fav
Posted by: JujuLand
Date: August 15, 2008 09:05PM

Sorry, no other idea, except adding DoRebar and DoMenu.

A+



Mozilla/5.0 (x11; U; Linux x86_64; fr-FR; rv:38.0) Gecko/20100101 Ubuntu/12.04 K-Meleon/76.0


Web: http://jujuland.pagesperso-orange.fr/
Mail : alain [dot] aupeix [at] wanadoo [dot] fr



Ubuntu 12.04 - Gramps 3.4.9 - Harbour 3.2.0 - Hwgui 2.20-3 - K-Meleon 76.0 rc





Edited 2 time(s). Last edit at 08/15/2008 09:06PM by JujuLand.

Options: ReplyQuote
Re: Name to save an IE fav
Posted by: Rodger
Date: September 06, 2008 07:50PM

Hi, one question
when I add a favorite then the box will be displayed an I type a name for the favorite und press ok.
Then comes the dialog where I must say where the favorite should be saved.
But when I click there on cancelled the url will be saved nevertheless in the favorite folder.
Can you please fix this?
Thanks

Options: ReplyQuote
Pages: 123Next
Current Page: 1 of 3


K-Meleon forum is powered by Phorum.