Now with the vB bug and all, when people post scripts ( and ) will be replaced with ***40; and ***41; (Example). Run this script to "fix" the script.
1. Copy the script you want to run to clipboard (using CTRL + C and so on)
2. Run the script I've posted below.
3. Now the script you copied at 1. is now fixed and ready to use.
Code:var S : String; I : Integer; begin S := GetClipBoard; for I := 1 to 9001 do S := Replace(S, '***' + ToStr(I) + ';', Chr(I), [rfReplaceAll]); SetClipBoard(S); end.









Reply With Quote







The script wasn't completely useless then 