First Question
my code is:
I have three open documents. In the first document i copy the first line to the clipboard. Then i change to the second document and search for the content of the clipboard. When the string is found, the macro should go to the third document and paste the clipboard content.
But this does not happen, the content of the clipboard is pasted in the first document instead.
Second Question:
When i save a file from a macro, how can the "save dialog" be suppressed?
my code is:
Code: Select all
InsertMode
ColumnModeOff
HexOff
UnixReOff
ColumnModeOn
GotoLine 1
Key HOME
StartSelect
Key END
Copy
NextDocument
GotoLine 1
Find "^c"
IfFound
NextDocument
Paste
EndIf
ColumnModeOff
But this does not happen, the content of the clipboard is pasted in the first document instead.
Second Question:
When i save a file from a macro, how can the "save dialog" be suppressed?