> > And, Is there method(like raw mode) that can input literally?
>
> new? If that's not what you want, give me example of what you're
> trying to do.
>
It is trivial feature request.
Au3.Send("keys" [, flag]) has optional flag.
-------------------------------------------------
flag [optional] Changes how "keys" is processed:
flag = 0 (default), Text contains special characters like + and ! to
indicate SHIFT and ALT key presses.
flag = 1, keys are sent raw.
-------------------------------------------------
Au3.Send("^c") // Ctrl+c
Au3.Send("^c", 1) // ^c
If use Sean's script, it sends keys by raw mode.
http://tech.groups.yahoo.com/group/power-pro/message/29993
SendUnicode("^c") // ^c