mIRC Home    About    Download    Register    News    Help

Print Thread
R
rioborg
rioborg
R
When you right click, let's say, status window, you get several menu options, like: Server, Names, Join, Other, Edit Notes, and below those you have the 3rd party scripts loaded.

My question is, how can I put line dividers to separate the different scripts I have loaded.

Like the divider between Other and Edit Notes.

Hope you can understand.

Joined: Dec 2002
Posts: 1,999
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Dec 2002
Posts: 1,999

Insert a - in the script where you want the divider.

Joined: Nov 2006
Posts: 1,552
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Nov 2006
Posts: 1,552
You can separate menu items with a dash: "-". eg:
Code:
menu status { 
  first
  .something in first : noop
  .something else in first : noop
  second
  -
  third
  .something in third : noop
  .-
  .something else in third : noop
}


You can start with a separator too, e.g. if you want to add a "new" item to an existing menu definition:
Code:
menu status, channel {
  -
  MyScript
  .funktion1 : noop
  .funktion2 : noop
}

R
rioborg
rioborg
R
Thanks a lot everyone.


Link Copied to Clipboard