in zmud it is @variable, how can i do it in mushclient?
get variable
Posted by Lw on Thu 17 Feb 2005 07:38 AM — 7 posts, 20,772 views.
It depends. If you're doing it in an alias or trigger, you can use @variable when you check the "expand variables" box. If youre doing it in a script, you'll have to use getvariable.
can i do it in timer?
Oh, yeah, timers too. I knew there was something I forgot.
i am sorry for my poor english.
i can not find "expand variables" box in timers,
i can not find "expand variables" box in timers,
You're right. You cant.
Instead, you'll have to use a little bit of scripting like this:
Change the dropdown menu 'send to' to "script"
then put this in the send box:
Send "Some text" & getvariable("variable") & "some more text"
you'll need to enable scripting, and set it to VBScript (for that example) (this can be done in the scripting config screen).
Instead, you'll have to use a little bit of scripting like this:
Change the dropdown menu 'send to' to "script"
then put this in the send box:
Send "Some text" & getvariable("variable") & "some more text"
you'll need to enable scripting, and set it to VBScript (for that example) (this can be done in the scripting config screen).
its work, thanks alot!