bf2forlife Posted June 10, 2008 Posted June 10, 2008 look at this GUICtrlSetData($input, "z") GUICtrlSetData($input, "x") When i try this code, the z will be replaced by x. Can you do this without replacing the previous letters?
k3v Posted June 10, 2008 Posted June 10, 2008 (edited) try something like... $var = GUICtrlRead($input) GUICtrlSetData($input,$var & "123") Edited June 10, 2008 by k3v
Kerros Posted June 10, 2008 Posted June 10, 2008 Something like this I believe. Untested GUICtrlSetData($input, "z") GUICtrlSetData($input, GUICtrlRead($input)&"x") Kerros===============================================================How to learn scripting: Figure out enough to be dangerous, then ask for assistance.
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