mIRC Home    About    Download    Register    News    Help

Print Thread
#268414 25/01/21 09:18 AM
Joined: Jan 2021
Posts: 7
B
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
B
Joined: Jan 2021
Posts: 7
Hi..

As shown in the picture below, which hotkey I do, this window opens directly?

Is there a hotkey to open this window?

My English is bad, I'm sorry.

[Linked Image from i.stack.imgur.com]

Joined: Jan 2004
Posts: 2,127
Hoopy frood
Offline
Hoopy frood
Joined: Jan 2004
Posts: 2,127
Pressing Alt+O opens the options menu to the last option topic used, but there's not a hotkey to go to this popup window specifically. If you want a scripted solution, you can search this forum for the 'sendkeys' alias, which can feed the keystrokes needed to reach that window. The following example works, assuming that the top "connect" section has not been collapsed, and that the current topic is not the "server" list, which steals focus away from the menu tree:

/sendkeys %o{home}{down 6}{tab}%V

If the options focus is already on the server list, it needs a few keystrokes to make sure it's away from there:

/sendkeys %o^+{tab}{home}{esc}%o{home}{down 6}{tab}%V

If you're using this from a script, you must replace the
%o
with
% $+ o
to prevent it trying to evaluate this to find a variable of that name, like:

//sendkeys % $+ o^+{tab}{home}{esc}%o{home}{down 6}{tab}%V

And this assumes you're not already in a dialog window, scripts editor, etc

Last edited by maroon; 25/01/21 11:51 AM.

Link Copied to Clipboard