Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #23710
    LTT
    Participant

    Issue 1:
    Default settings.
    Save an empty (or any) macro.
    Enable “Runs at Events” for it.
    Open “Select Events” box.
    ** BTW, note that initially the 1st item is selected but the “Delay Time” is 0. (Click the 1st item. Now the time is 1.)
    Enable the last one (File Dropped).
    ** Now EmEditor won’t open any file dropped.

    Suggestion 1:
    Is it possible to add one more option in “Macro Temporary Options” box:
    Redraw = false

    Suggestion 2:
    I often use some macros via shortcut keys.
    Running a saved macro would flush away the temporary macro.
    Is it possible to keep the temporary macro alone?

    #23729
    Yutaka Emura
    Keymaster

    v18.1.0 fixes the Issue 1. I will think about other suggestions. Thanks!

    #24275
    LTT
    Participant

    Issue 1 (won’t open any file dropped) is not fixed yet.

    #25410
    LTT
    Participant

    Suggestion 3:
    I once used a macro to set/reset “FindFlag” value rapidly (by using GetProfileInt/WriteProfileInt methods).
    But “FindFlag” is not a Dword any longer.
    Will you add a new method to operate such a double-Dword binary value (Qword)?

    #26962
    LTT
    Participant

    Just a gentle bump for the issue (and the suggestions).

    Or maybe issue 1 (won’t open any file dropped) is inevitable?

    #27398
    LTT
    Participant

    Issue 1 is not fixed yet.

    And please consider suggestion 1, 2, (and 3 if possible to implement).

    Thank you.

    #27406
    Yutaka Emura
    Keymaster

    If File Dropped is enabled, dropped files must be handled by the specified macro using the DroppedFiles collection.
    Here is an example how to do this:

    files = new Enumerator( DroppedFiles );
    for( ; !files.atEnd(); files.moveNext() ){
       alert( files.item() );
    }

    I will clarify this in Help.

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