mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Apr 2006
Posts: 6
E
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
E
Joined: Apr 2006
Posts: 6
I want to remove those "Tile Horizontal", "Tile Vertical" and "Cascade" buttons from the default toolbar...I hate when I hit them by mistake smile I found the /toolbar command and the params...but I'm not that good at syntax. I can't figure out how to find the names of the buttons to delete them...is there a command to find the existing names? Also I tried to save the settings to a toolbar.ini file - i tried /toolbar -f[s] and it just complained about "insufficent params" - anyone got any suggestions? thanks

Joined: Nov 2006
Posts: 1,559
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Nov 2006
Posts: 1,559
A quick alias to list all items
Code:
alias listtoolbaritems {
  var %nr = 1
  while ($toolbar(%nr)) {
    echo -a toolbaritem %nr NAME: $toolbar(%nr).name TYPE: $toolbar(%nr).type
    inc %nr
  }
}
thus:
/toolbar -d htile
/toolbar -d vtile
/toolbar -d cascade
/toolbar -d sep9

save these settings with /toolbar -fs

Joined: Apr 2006
Posts: 6
E
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
E
Joined: Apr 2006
Posts: 6
worked perfectly - thank you very much smile


Link Copied to Clipboard