; convert x'a0' to %a_space% ; Author: Scott Mattes ; Date: 2008-09-16 ; I found that when using the Copy link to copy some interesting code Google's Chrome ; browser was changing   to x'a0' instead of x'20'. This causes AutoHotKey to ; complain and not run the code ; fixes problem caused by the copy link while using early google chrome releases ; ; copy the problem code into the clipboard and run this script, then use the ; contents of the clipboard ifinstring, clipboard,   { msgbox, found a x'a0' in the clipboard contents asdf = %clipboard% stringreplace, asdf, asdf,  , %a_space%, All ; the 'blank' SearchText is really x'a0' clipboard = %asdf% } else { msgbox, did not find a x'a0' in the clipboard contents }