virus4141 Posted June 15, 2005 Posted June 15, 2005 (edited) edited Edited October 22, 2005 by virus4141
blindwig Posted June 15, 2005 Posted June 15, 2005 How do you make a user defined value be used in another part of a scriptlike if I had a input box and someone put in, lets say the Coords he wanted the mouse to move to, how could I make the script use that value in another line,like a mousemove code. sorry for the bad question if you need clerfication just askĀ also sorry its a really newb question.<{POST_SNAPBACK}>Use GuiCtrlRead() to see what a user has typed in an input box My UDF Threads:Pseudo-Hash: Binary Trees, Flat TablesFiles: Filter by Attribute, Tree List, Recursive Find, Recursive Folders Size, exported to XMLArrays: Nested, Pull Common Elements, Display 2dSystem: Expand Environment Strings, List Drives, List USB DrivesMisc: Multi-Layer Progress Bars, Binary FlagsStrings: Find Char(s) in String, Find String in SetOther UDF Threads I Participated:Base64 Conversions
virus4141 Posted June 15, 2005 Author Posted June 15, 2005 Use GuiCtrlRead() to see what a user has typed in an input box<{POST_SNAPBACK}>ah ok ill look that up ty
layer Posted June 15, 2005 Posted June 15, 2005 If you mean a GUI input box, then use GUICtrlRead, but if you're using a pop up input box like InputBox(), then you would do this:$x = InputBox("X Coord", "What is the X coord?") $y = InputBox("Y Coord", "What is the Y coord?") MouseMove($x, $y)Good luck! FootbaG
virus4141 Posted June 15, 2005 Author Posted June 15, 2005 If you mean a GUI input box, then use GUICtrlRead, but if you're using a pop up input box like InputBox(), then you would do this:$x = InputBox("X Coord", "What is the X coord?") $y = InputBox("Y Coord", "What is the Y coord?") MouseMove($x, $y)Good luck! <{POST_SNAPBACK}>i think thats what i need ty
virus4141 Posted June 15, 2005 Author Posted June 15, 2005 oh cool its exactly what i need thanx much
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