lordicast Posted November 8, 2007 Posted November 8, 2007 i got problem with multiple Guictrlread's i have some inputs $rate,$store,$weath and i have a button $Load to send all inputs then begin a function when i press the button load it just sits i need help please here is a example script while 1 $Msg = GUIGetMsg() If $msg = $Load Then GUICtrlRead($rate) GuiCtrlRead($store) GuiCtrlRead($weath) Call("justdoit") EndIf WEnd Func justdoit() Local $count = 0 While 1 WinActivate("Untitled - Notepad") WinWaitActive("Untitled - Notepad") send("Hello i type at "&$rate&" per seconds") send("I like shopping at "&$store&"") send("the weather is "&$weath&"") $count +=1 Wend EndFunc [Cheeky]Comment[/Cheeky]
Blue_Drache Posted November 8, 2007 Posted November 8, 2007 Pass the variables into your function, like so: While 1 $Msg = GUIGetMsg() If $Msg = $Load Then justdoit(GUICtrlRead($rate), GUICtrlRead($store), GUICtrlRead($weath)) EndIf WEnd Func justdoit($intRate, $strStore, $strWeath) Local $intCount = 0 While 1 WinActivate("Untitled - Notepad") WinWaitActive("Untitled - Notepad") Send("Hello i type at " & $intRate & " per seconds") Send("I like shopping at " & $strStore & "") Send("the weather is " & $strWeath & "") $intCount += 1 WEnd EndFunc ;==>justdoit Lofting the cyberwinds on teknoleather wings, I am...The Blue Drache
lordicast Posted November 8, 2007 Author Posted November 8, 2007 Wow Blue thank you for your speedy help man cheers [Cheeky]Comment[/Cheeky]
lordicast Posted November 8, 2007 Author Posted November 8, 2007 Another problem im running into is lets say i want $rate is currently is being used in minutes and i want to translate it to milliseconds example i want the user to input how many minutes lets say 2 the value of $rate = 2 but i want it to translate 120000 in milliseconds for the script to understand. this is what i came up with\ if $rate = '2' then $rate2 = '120000' [Cheeky]Comment[/Cheeky]
Developers Jos Posted November 8, 2007 Developers Posted November 8, 2007 Or just: ? $rate2 = $rate * 60 * 1000 SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
lordicast Posted November 8, 2007 Author Posted November 8, 2007 Another problem im running into is lets say i want $rate is currently is being used in minutes and i want to translate it to milliseconds example i want the user to input how many minutes lets say 2 the value of $rate = 2 but i want it to translate 120000 in milliseconds for the script to understand for sleep mode. this is what i came up with\ if $rate = '2' then $rate2 = '120000' elseif $rate = '5' then $rate2 = '300000' elseif $rate = '10' then $rate2 = '600000' endif it wont work though [Cheeky]Comment[/Cheeky]
Developers Jos Posted November 8, 2007 Developers Posted November 8, 2007 did you see my post ? SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
lordicast Posted November 8, 2007 Author Posted November 8, 2007 sorry i didnt relize i posted that first one i wasnt finished. will that work alone or must i add somthing like $rate2 = ("$rate * 60 * 1000") [Cheeky]Comment[/Cheeky]
Developers Jos Posted November 8, 2007 Developers Posted November 8, 2007 sorry i didnt relize i posted that first one i wasnt finished.will that work alone or must i add somthing like $rate2 = ("$rate * 60 * 1000")No that will not work ... did you try the line as I post it ? SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
lordicast Posted November 8, 2007 Author Posted November 8, 2007 no, im afraid not do think it might have somthing to do with the way $rate is read $rate = GUICtrlCreateCombo("2", 312, 80, 145, 25) GUICtrlSetData(-1,"5|10","2") $rate2 = $rate * 60 * 1000 [Cheeky]Comment[/Cheeky]
Developers Jos Posted November 8, 2007 Developers Posted November 8, 2007 no, im afraid not do think it might have somthing to do with the way $rate is read$rate = GUICtrlCreateCombo("2", 312, 80, 145, 25)GUICtrlSetData(-1,"5|10","2")$rate2 = $rate * 60 * 1000You need to do a GUICtrlRead($rate) to retrieve its value ... SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
lordicast Posted November 8, 2007 Author Posted November 8, 2007 Another one? here's some example of what i got going $rate = GUICtrlCreateCombo("2", 312, 80, 145, 25) GUICtrlSetData(-1,"5|10","2") $rate2 = $rate * 60 * 1000 While 1 $Msg = GUIGetMsg() If $Msg = $Load Then justdoit(GUICtrlRead($rate2)) EndIf WEnd Func justdoit($rate2) Local $intCount = 0 While 1 WinActivate("Untitled - Notepad") WinWaitActive("Untitled - Notepad") Send("Hello nice to meet you!") sleep("" & $rate2 & "") Send("I need help on this script") Sleep("" & $rate2 &"") $intCount += 1 WEnd EndFunc [Cheeky]Comment[/Cheeky]
Developers Jos Posted November 8, 2007 Developers Posted November 8, 2007 $rate is the HAndle to the ComboControl ... WHen you need to retrieve the selected value you do GuiCtrlRead(). I have no idea what this line is supposed to do at the spot its placed: $rate2 = $rate * 60 * 1000 And I also have no idea what this is supposed to do: justdoit(GUICtrlRead($rate2)) SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
lordicast Posted November 8, 2007 Author Posted November 8, 2007 i figured out what i was doing wrong $rate = GUICtrlCreateCombo("2", 312, 80, 145, 25) GUICtrlSetData(-1,"5|10","2") While 1 $Msg = GUIGetMsg() If $Msg = $Load Then justdoit(GUICtrlRead($rate)) EndIf WEnd Func justdoit($rate) Local $intCount = 0 While 1 WinActivate("Untitled - Notepad") WinWaitActive("Untitled - Notepad") $rate2 = $rate * 60 * 1000 Send("Hello nice to meet you!") sleep("" & $rate2 & "") Send("I need help on this script") Sleep("" & $rate2 &"") $intCount += 1 WEnd EndFunc AND SUCESS thanks for everyones help on this project [Cheeky]Comment[/Cheeky]
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