Viewing 4 posts - 1 through 4 (of 4 total)
- AuthorPosts
- November 11, 2006 at 5:12 am #3992krolikMember
Yutaka, please, add “Save as” button on Toolbar. I wait it from version to version, but it doesn’t appear :-(
And it will be nice to see function in Emeditor “move this file to Recycle Bin” (and then switch to next tab or window). Because when you examine a lot of files and many of them is the junk, it is necessary delete them quickly. Please, add this function!
Thanks…November 11, 2006 at 6:35 pm #3996Yutaka EmuraKeymasterIn future versions, you will be able to add the Save As button. In future, when a macro can be configured with a toolbar button with a favorite icon, you can assign any command to a toolbar button.
November 11, 2006 at 6:53 pm #3997Yutaka EmuraKeymasterThis is a JavaScript macro to permanently delete and close the current document. I don’t know how to move a file to the Recycle Bin.
if( document.FullName != '' ){
sPath = document.FullName;
if( confirm( "Are you sure you want to delete " + sPath + "?" ) ){
fso = new ActiveXObject( "Scripting.FileSystemObject" );
fso.DeleteFile( sPath );
document.close();
}
}
November 12, 2006 at 9:09 pm #3999krolikMemberThank you! It works :-)
- AuthorPosts
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.