Hey ppl, i've tried to make a script to send a Chr from the extended ascii and the only way i could make it work is this way, is there other (better) ways of doing this or is this the right approach, anyways since this works for me i thought i post it if anyone else has had troubles with special chr.
#include <IE.au3>
$g_szVersion = "ieatt"
If WinExists($g_szVersion) Then Exit ; EXIT!
AutoItWinSetTitle($g_szVersion)
Local $oIE = _IEAttach("Mystart")
WinActivate("Mystart")
;MsgBox(0, "The URL", _IEPropertyGet($oIE, "locationurl"))
sleep(1000)
Send("!y")
sleep(1000)
Local $var = Chr(229)
send($var)
sleep(1000)
This example triggers a submeny link in IE with the Chr å (in my browser anyway)