Perfect, thank you Genius.
I now have this line in my Main Client aliases:
/F12 .notice botname run-script-editor
And the following code in the Bots remote section:
on *:NOTICE:run-script-editor:?:{
showmirc -x
if ($appstate == maximized) { sendkeys % $+ r }
.timer 1 1 showmirc -m
}
alias sendkeys {
var %a = sendkeys $+ $ticks
.comopen %a WScript.Shell
if !$comerr {
var %b = $com(%a,SendKeys,3,bstr,$1-)
.comclose %a
return %b
}
return 0
}
So, I just press the F12 key, and bot's remote window pops up!
Thanks