SovietGhost Posted May 26, 2008 Posted May 26, 2008 is there anyway of the script ask for the user to insert a variable on a windows? ie: i start the ai program and it popup a window with: "Please insert the current data:" then i'd like to place that awser into a $data1 variable any idea, masters?
sandin Posted May 26, 2008 Posted May 26, 2008 $variable = InputBox("title", "I ask for XXX data:") Some cool glass and image menu | WinLIRC remote controler | Happy Holidays to all... | Bounce the sun, a game in which you must save the sun from falling by bouncing it back into the sky | Hook Leadtek WinFast TV Card Remote Control Msges | GDI+ sliding toolbar | MIDI Keyboard (early alpha stage, with lots of bugs to fix) | Alt+Tab replacement | CPU Benchmark with pretty GUI | Ini Editor - Edit/Create your ini files with great ease | Window Manager (take total control of your windows) Pretty GUI! | Pop-Up window from a button | Box slider for toolbar | Display sound volume on desktop | Switch hotkeys with mouse scroll
SovietGhost Posted May 26, 2008 Author Posted May 26, 2008 $variable = InputBox("title", "I ask for XXX data:") great... ty... if i want to confirm that in anoher popup like: you inserted data = xxx ($data) is that correct? Yes / no is it possible too?
PsaltyDS Posted May 26, 2008 Posted May 26, 2008 great... ty... if i want to confirm that in anoher popup like: you inserted data = xxx ($data) is that correct? Yes / no is it possible too? Like this: While 1 $variable = InputBox("title", "I ask for XXX data:") If MsgBox(32 + 4, "Verify", "You entered: " & $variable & @CRLF & _ "Is this correct?") = 6 Then ExitLoop WEnd MsgBox(64, "Selected", "Selected value was: " & $variable) Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
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