mIRC Home    About    Download    Register    News    Help

Print Thread
#126876 05/08/05 07:17 PM
Joined: Feb 2005
Posts: 344
B
Fjord artisan
OP Offline
Fjord artisan
B
Joined: Feb 2005
Posts: 344
I have a addon to make my own toolbar but i have trouble finding the commands to open the thing in the toolbar.
i have trouble finding the command for:
1 options
2 script editor
3 colors
4 notyfy list
5 about

I hope someone can help
thanks infront

Greetzz

#126877 05/08/05 07:35 PM
Joined: May 2005
Posts: 79
M
Babel fish
Offline
Babel fish
M
Joined: May 2005
Posts: 79
well as they are key combinations, you'd need an alias to open a com object, i use someones that i got from here, i can't remember who's it is but credits to whoever they are smile

Code:
 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
} 


then i used like ..
alias editor { //sendkeys % $+ r }

alias colours { //sendkeys % $+ k }

alias options { //sendkeys % $+ o }


Link Copied to Clipboard