- AuthorPosts
- September 21, 2018 at 9:26 am #23710LTTParticipant
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 = falseSuggestion 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?September 25, 2018 at 12:52 pm #23729Yutaka EmuraKeymasterv18.1.0 fixes the Issue 1. I will think about other suggestions. Thanks!
February 1, 2019 at 9:42 am #24275LTTParticipantIssue 1 (won’t open any file dropped) is not fixed yet.
February 12, 2019 at 9:50 am #25410LTTParticipantSuggestion 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)?August 19, 2020 at 6:41 am #26962LTTParticipantJust a gentle bump for the issue (and the suggestions).
Or maybe issue 1 (won’t open any file dropped) is inevitable?
April 7, 2021 at 1:02 pm #27398LTTParticipantIssue 1 is not fixed yet.
And please consider suggestion 1, 2, (and 3 if possible to implement).
Thank you.
April 9, 2021 at 12:17 pm #27406Yutaka EmuraKeymasterIf 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.
- AuthorPosts
- You must be logged in to reply to this topic.