Posted by member 7223 on 2003-11-11 01:09:11 link

LOL:
!textreplace @$ConfigDir$flags.rc@ @^(hotspots_on *)1@ @\10@

This couldn't work because you have one string (hotspots_on *) associated with \1 and textedit think you want to replace it with an undefined string \10 !!!

Why not simply do:
!textreplace @$ConfigDir$flags.rc@ @^hotspots_on @ @&0@

or
!textreplace @$ConfigDir$flags.rc@ @^hotspots_on *1@ @hotspots_on 0@