iSkilz Posted September 14, 2013 Posted September 14, 2013 I'm trying to make a simple debugger, where you input a variable and it gives the value. but i am new, and am having difficulty.. here's the code: $test = 13 ;~ Func Hotkey_F1() $Debug = InputBox("Debugger","Input var name","$test","",200, 135 ) Msgbox(0,"Debugger",$Debug ) ;~ EndFunc any suggestion for a better debugger method is also welcome
JohnOne Posted September 14, 2013 Posted September 14, 2013 What is it debugging exactly? I don't see any debugging there. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
Solution abberration Posted September 14, 2013 Solution Posted September 14, 2013 $test = 13 ;~ Func Hotkey_F1() $Debug = InputBox("Debugger","Input var name","test","",200, 135 ) ; must leave off the $ for the Eval statement to work $value = Eval($Debug) Msgbox(0,"Debugger", $value) ;~ EndFunc Easy MP3 | Software Installer | Password Manager
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