Discussion:
nicklist/channellist
(too old to reply)
Grumpy
2005-01-05 12:32:32 UTC
Permalink
Firstly happy New Year to everyone, hope all your aspirations become your
reality.

Now to the business end of this message, I am fairly new to scripting and
trying to work out, how you would write something in remote that can be
loaded, but would add options to the menulist and nicklist etc in the
popups.

Many thanks

Alan
Bianca
2005-01-10 04:49:44 UTC
Permalink
Post by Grumpy
Firstly happy New Year to everyone, hope all your aspirations become your
reality.
Now to the business end of this message, I am fairly new to scripting and
trying to work out, how you would write something in remote that can be
loaded, but would add options to the menulist and nicklist etc in the
popups.
Many thanks
Alan
For remote: alt-r
for popups: alt-p

depends what you want the script to do.

Any examples?
Grumpy
2005-01-10 10:14:40 UTC
Permalink
I want to write a small script , but that includes options in the popup nick
list and channel list.When writing a script that can be loaded into remotes
I use the alias xxx to create an alias entry, what would you use to create a
popup item in the nick list or chanlist, I hope that makes sense...

thanks
Alan
Post by Bianca
Post by Grumpy
Firstly happy New Year to everyone, hope all your aspirations become your
reality.
Now to the business end of this message, I am fairly new to scripting and
trying to work out, how you would write something in remote that can be
loaded, but would add options to the menulist and nicklist etc in the
popups.
Many thanks
Alan
For remote: alt-r
for popups: alt-p
depends what you want the script to do.
Any examples?
Bianca
2005-01-11 00:39:27 UTC
Permalink
Post by Grumpy
I want to write a small script , but that includes options in the popup nick
list and channel list.When writing a script that can be loaded into remotes
I use the alias xxx to create an alias entry, what would you use to create a
popup item in the nick list or chanlist, I hope that makes sense...
thanks
Alan
Something like this:

In popups
===
Color codes: echo -a Executing... | color_c
===


In remote
===
alias color_c {
echo -a Color codes: 0,1 1 0,2 2 0,3 3 0,4 4 0,5 5 0,6 6 0,7 7 1,8 8
1,9 9 0,10 10 1,11 11 0,12 12 0,13 13 0,14 14 1,15 15 0,16 16
}
===
Post by Grumpy
Post by Bianca
Post by Grumpy
Firstly happy New Year to everyone, hope all your aspirations become
your
Post by Bianca
Post by Grumpy
reality.
Now to the business end of this message, I am fairly new to scripting
and
Post by Bianca
Post by Grumpy
trying to work out, how you would write something in remote that can be
loaded, but would add options to the menulist and nicklist etc in the
popups.
Many thanks
Alan
For remote: alt-r
for popups: alt-p
depends what you want the script to do.
Any examples?
Paradox
2005-02-28 16:02:30 UTC
Permalink
Post by Grumpy
I want to write a small script , but that includes options in the popup nick
list and channel list.When writing a script that can be loaded into remotes
I use the alias xxx to create an alias entry, what would you use to create a
popup item in the nick list or chanlist, I hope that makes sense...
thanks
Alan
Just to make sure i understood correctly, you want to add stuff to
the nicklist or channel popup directly from a script file that has been
loaded into the 'remotes' section? If so then what you are looking for
is 'menu' ie.

menu nicklist {
New:echo this is a new nicklist option
}
or
menu channel {
Blah:echo blah
}
For channels you can also use:

menu #ThisChannel

for a menu that will only show up in #ThisChannel (in this case) or
you can use:

menu @blah

for a menu that will open in a custom window, in this case @blah.

If i missunderstood then i appologise.
Grumpy
2005-03-09 11:45:12 UTC
Permalink
that is what I needed thanks,

Regards
Al
Post by Grumpy
Post by Grumpy
I want to write a small script , but that includes options in the
popup nick
Post by Grumpy
list and channel list.When writing a script that can be loaded into
remotes
Post by Grumpy
I use the alias xxx to create an alias entry, what would you use to
create a
Post by Grumpy
popup item in the nick list or chanlist, I hope that makes sense...
thanks
Alan
Just to make sure i understood correctly, you want to add stuff to
the nicklist or channel popup directly from a script file that has been
loaded into the 'remotes' section? If so then what you are looking for
is 'menu' ie.
menu nicklist {
New:echo this is a new nicklist option
}
or
menu channel {
Blah:echo blah
}
menu #ThisChannel
for a menu that will only show up in #ThisChannel (in this case) or
If i missunderstood then i appologise.
Loading...