Quote:
But i need a quicker way of doing it. I can drag the mouse across the name that i would like to highlight and rick click it, then select my color. I need a quicker way of doing this.
I am sorry, but I don't see how it can get much faster. The minimal amount you would need to do is:
- Choose the word to be highlighted
- Tell the program to highlight it
What sort of quicker way did you have in mind?
If you have a whole list of words you already know, that you want to highlight, you can edit the trigger it generated and put in an "or" condition between each one (a vertical bar), like this:
<triggers>
<trigger
custom_colour="17"
enabled="y"
group="Highlighted Words"
ignore_case="y"
keep_evaluating="y"
match="\b(Nick|John|Peter|Mary|Jane|Frederick)\b"
regexp="y"
repeat="y"
sequence="90"
other_text_colour="lightcoral"
>
</trigger>
</triggers>
See http://mushclient.com/pasting for how to copy that example back into the client.
Quote:
So what i don't understand about the alias, are the different boxes. The first box is labeled "alias" and then the "send" box is underneath.
Aliases are explained here:
http://www.gammon.com.au/forum/?id=8084
The "alias" box is what matches (eg. "j" in your example) and the "send" box is what you want to send. But if you want to do something like "aim %1;shoot auto" then the alias needs to match on some variable word (eg. if you type "j nick") so it can "aim nick; shoot auto". Thus the alias part needs to have a wildcard, eg. "j *".
Quote:
It would be awesome to learn how to make one for "Trax flies" "bash Trax"
Triggers are explained here:
http://www.gammon.com.au/forum/?id=8086
If you have trouble getting something to work please paste what you have tried (see http://mushclient.com/copying) so we can see what you have done. |