How to redo changes?
Posted by: Michael R
Date: May 23, 2009 11:26PM

Hello,

if I used "undo" (by right-clicking) to delete changes I made and then want to redo (some of) them, how can I do that in k-meleon?

Thanks.

Michael

Re: How to redo changes?
Posted by: Kleon
Date: May 24, 2009 05:13PM

You can't, if you haven't backed up your user profile.

There are plugins or macros available for backing up your profile. Search the forum or the 'Resources' page for them.

Re: How to redo changes?
Posted by: JamesD
Date: May 24, 2009 06:50PM

@ Michael

I am not sure I understand your question. What kind of changes did you undo with a right click? Was it a change to K-Meleon itself or to some information on a web form or text box?

Re: How to redo changes?
Posted by: guenter
Date: May 25, 2009 12:00AM

Quote
Michael R
if I used "undo" (by right-clicking) to delete changes I made and then want to redo (some of) them, how can I do that in k-meleon?

You mean like alteration in forum posts?

Sorry not possible.
You could post this in bugs as Improvement request.

P.s. Existiert nicht - könntest du als Verbesserungsforschlag in Bugs posten

Re: How to redo changes?
Posted by: desga2
Date: May 25, 2009 07:07PM

As guenter said you "redo" option for text boxes isn't implemented in K-Meleon yet.

But this isn't implemented in Firefox 2, anyone know some browser with this implementation?

K-Meleon in Spanish

Re: How to redo changes?
Posted by: JamesD
Date: May 25, 2009 08:48PM

Just so that I will understand, does any know what kind of changes the command ID_EDIT_UNDO operates on?

Re: How to redo changes?
Posted by: Michael R
Date: May 26, 2009 06:05PM

Yes, I was talking about undo and redo changes e.g. in text boxes when I post in a forum etc.
Firefox 3 offers a redo option.

Re: How to redo changes?
Posted by: disrupted
Date: May 26, 2009 09:59PM

it works for me in the few forums i use..in the input boxes; either ctrl+z or right click 'undo' works.

edit: sorry.. i misunderstood..there's no 'redo'.. once you undo there's no redo. request it in improvement requests and if it's doable, dorian will add it

edit 2 : smiling smiley found out you can redo..it's the simplest thing but is not available in the context menu.
ctrl+y will redo your undos.. you can just request to add it in context menu.. it's very doable with a macro too.



Edited 2 time(s). Last edit at 05/26/2009 10:58PM by disrupted.

Re: How to redo changes?
Posted by: desga2
Date: May 30, 2009 10:31PM

Since 1.5.2 version exist a new ID command:
ID_EDIT_REDO

You can use it in a macro to add this option in right click context menu.
As disrupted said there is a default accelerator (key shortcut) defined to it: Ctrl+Y

Also in 1.5.3 version were added this new ID commands:
ID_MAXIMIZE_WINDOW
ID_MINIMIZE_WINDOW
ID_RESTORE_WINDOW
ID_TOGGLE_WINDOW

All this ID commands updated in documentation.

Macro Example:
# K-Meleon Macros (http://kmeleon.sourceforge.net/wiki/index.php?id=MacroLanguage)
#
# ---------- New ID commands in 1.5.2 and 1.5.3 versions --------------------------------
#
# Dependencies		: -
# Resources			: -
# Preferences		: -
# Version			: -
# ---------------------------------------------------------------------------------------
#
_newIDs_SetAccels{
# CTRL+Y is defined by default to Redo option:
#setaccel("CTRL Y","ID_EDIT_REDO");
setaccel("CTRL M","ID_MINIMIZE_WINDOW");
setaccel("CTRL SHIFT M","ID_MAXIMIZE_WINDOW");
setaccel("CTRL K","ID_RESTORE_WINDOW");
setaccel("CTRL ALT K","ID_TOGGLE_WINDOW");
}

_newIDs_BuildMenu{
# Text box context menu for Redo option:
setmenu("TextPopup",command,"&Redo","ID_EDIT_REDO",1);
# New popup menu for context menu to new window properties:
setmenu("DocumentPopup",popup,"Window Properties",-1);
setmenu("Window Properties",command,"Mi&nimize","ID_MINIMIZE_WINDOW");
setmenu("Window Properties",command,"Ma&ximize","ID_MAXIMIZE_WINDOW");
setmenu("Window Properties",command,"&Restore","ID_RESTORE_WINDOW");
setmenu("Window Properties",command,"&Toggle","ID_TOGGLE_WINDOW");
}

$OnInit=$OnInit."_newIDs_SetAccels;_newIDs_BuildMenu;";
$macroModules=$macroModules."newIDs;";

K-Meleon in Spanish



Edited 1 time(s). Last edit at 05/30/2009 10:32PM by desga2.

K-Meleon forum is powered by Phorum.