Add "Save Copy As..." to File Menu
Posted: Thu Jan 22, 2004 2:22 pm
I'm not sure if this has been mentioned before or not, but its a simple one, that comes in handy all the time.
Purpose: It saves a copy of the current document, to a new file, which is opened. This way, the original file, is still open, and the new file is editable too.
I have a macro right now, to attempt to emulate this...
CTRL+A //select All
CTRL+C //copy to the clipboard
CTRL+N //create a new Document
CTRL+S //save new Document (which prompts for a name)
The problem is, it *kills* my clipboard contents... (very undesired)
As another potential solution, I would be happy with the ability to assign some "content" to a variable, in Macros, that I can "get" latter in a macro...
In fact, this would be a very desirable addition to macros in genera.
Purpose: It saves a copy of the current document, to a new file, which is opened. This way, the original file, is still open, and the new file is editable too.
I have a macro right now, to attempt to emulate this...
CTRL+A //select All
CTRL+C //copy to the clipboard
CTRL+N //create a new Document
CTRL+S //save new Document (which prompts for a name)
The problem is, it *kills* my clipboard contents... (very undesired)
As another potential solution, I would be happy with the ability to assign some "content" to a variable, in Macros, that I can "get" latter in a macro...
In fact, this would be a very desirable addition to macros in genera.