Save As (and Save To) error
Posted: 2011-11-10 17:29:34
I made the simple macro, which make a new document from selected text on the now editing document.
When I run this macro and saved the new file, always the error dialogue come as "Could not save the file"; however, the file is saved.
Is there anyone can solve this problem?
I'm using NWP 2.0.1 on macosx 10.6.8
Kosaka
Code: Select all
$doc1 = Document.active
$text = Read Selection
$doc2 = $doc1.copy
Menu ':Edit:Select:Select All'
Menu ':Edit:Delete'
Select Document End
$doc2.insertText( $text, 'm' )
Save As
### end of macro ###
Is there anyone can solve this problem?
I'm using NWP 2.0.1 on macosx 10.6.8
Kosaka