n9mfk9 Posted May 15, 2004 Posted May 15, 2004 I have list of 3 letter commands like FFS this is the script I have If not ProcessExists("UiView32.exe") Then Run ("C:\Program Files\Peak Systems\UI-View32\Uiview32.exe") EndIf Sleep(5000) WinSetState ( "UI-NWS V2.71", "", @SW_MAXIMIZE ) WinActivate ( "UI-NWS V2.71") MouseClick("left", 146, 29 ) WinSetState ( "Finger WxSvr", "", @SW_MAXIMIZE ) WinActivate ( "Finger WxSvr") MouseClick("left", 14, 560 ) send ("TBW") send ($cmdline[0]) MouseClick("left", 780, 559 ) WinActivate ( "- TBw$cmdline[0]") what do i need to do so i can send text as a commd line once it is a exe thank for all help
CyberSlug Posted May 15, 2004 Posted May 15, 2004 I'd change the last three lines: send ($cmdline[0], 1) ;extra parameter specifying "raw" keys MouseClick("left", 780, 559 ) WinActivate ( "- TBw" & $cmdline[0]);use & to join variables with text SeeFAQ #9 and #10 in the help file for more explanation. Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now