Page 1 of 1

How can I create hotkeys toggle and icon on menu bar?

Posted: 24 Jan 2026 16:20
by raphaelmsx
Hi people!

How can I create two hotkeys toggle and icon on menu bar for the following options:

Confirm drag and drop
Confirm delete operations

Thanks!

Re: How can I create hotkeys toggle and icon on menu bar?

Posted: 24 Jan 2026 16:40
by highend

Code: Select all

    // Confirm drag and drop
    sendkeys "{PGUP}ss{TAB}{TAB 3} {ENTER}";
    #600;

Code: Select all

    // Confirm delete operations
    sendkeys "{PGUP}ss{TAB}{TAB 5} {ENTER}";
    #600;

Re: How can I create hotkeys toggle and icon on menu bar?

Posted: 24 Jan 2026 16:58
by raphaelmsx
Thanks!