Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #3992
    krolik
    Member

    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…

    #3996
    Yutaka Emura
    Keymaster

    In 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.

    #3997
    Yutaka Emura
    Keymaster

    This 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();
    }
    }

    #3999
    krolik
    Member

    Thank you! It works :-)

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.