One could also include something like the color change in small scripts, I'd prefer
AHK for that.
Code:
#1::
Send, [.COLOR="Indigo"]XXXXXXXXXXXX[./COLOR]
Return
I can't test it right now but that should be enough to fire the code for "Indigo" upon pressing the Windows + 1 key at the same time. Remove the dots in the color tags, tho.
Edit: right, so here it is.
Code:
;GTP Color
#1::
MsgBox, 257,Changing color, Changing color - start?
IfMsgBox Cancel
return
IfMsgBox Ok
Sleep 500
Send, [.COLOR=INDIGO]XXXXXXXXXXXX[./COLOR]
Return
1) Download
AutoHotKey
2) Create a text file and name it script.ahk, copy the code into the file (remove the dots inside the color tags in my example!)
3) Double-click to run the script
4) Press Win + 1 on your keyboard in order to run the script.
It'll ask you for confirmation, so that you won't fire it into any IM windows etc. You can also add bold etc. tags, it's all up to you.
If you're not having the file extension set to be visible in Windows and don't want to enable it, you can also rename it through a simple command. Press Win key + R and enter "cmd" without quotation marks. Then, enter the following commands (I'm assuming the script file has been saved to your desktop and you're using Windows Vista or 7).
cd desktop
ren script.txt script.ahk
exit
And it's all done.