SjaakTV Posted April 13, 2010 Share Posted April 13, 2010 Hi, I made a script and it fully works but now i want to add extra stuf on it. I made an GUICtrlCreateinput in the menu gui. I also have a add but. Now the value i type i want to put it somewhere in the script. the input $name = GUICtrlCreateinput("",30, 100,100,20) the button $adder = GUICtrlCreateButton("Add", 150,100, 33 ) thing thing i want to be changed. send ("Hello.") So when I put Bye in the input and press add. The send needs to change to Bye from hello. Thnx for your help. Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted April 13, 2010 Moderators Share Posted April 13, 2010 SjaakTV,Firstly, declare a variable to hold the value you want to send and change your Send command to use this variable rather than the literal string.Then use GUICtrlRead to get the value entered into in the Input. Put this value in the variable you created above and you are done. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
SjaakTV Posted April 13, 2010 Author Share Posted April 13, 2010 (edited) thxn i got that but a new problem came on hand. Func a1() $Timedif = 10 $Timer = TimerInit() While 1 If (TimerDiff($Timer)/1000) < $Timedif Then F1() Else F3() F2 = TimerInit() EndIf WEnd EndFunc Is it posible to change the Timedif? Because it is already useing a fariable. Edited April 13, 2010 by SjaakTV Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted April 13, 2010 Moderators Share Posted April 13, 2010 SjaakTV,To change a variable you just reassign it with a new value: $Timerdif = 10 MsgBox(0, "Timerdif", "Timerdif is set to " & $Timerdif) $Timerdif = 20 MsgBox(0, "Timerdif", "Timerdif is set to " & $Timerdif)M23P.S. Leaving function names like potion() in your script might make a suspicious person think that you were writing a game bot. Probably a good idea to change them before posting. Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
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