aprisma Posted January 29, 2006 Posted January 29, 2006 Hello! Is there a possibility to see all the values of variables & constances during a run? thanx a lot, Juergen
greenmachine Posted January 29, 2006 Posted January 29, 2006 (edited) I like using TrayTips, because they don't pause the script like msgboxes do. I believe you can also do trace and debug trace, but I don't know how they work as I've never used them. SplashText might also be an option for you to consider - you can put multiple lines in 1 text window. I also just thought of a potential idea - not sure how practical it would be though. You could rig up a hotkey (or adlib function) to write the values of all variables and constants to a txt file. That would be good to get all the info down at once, especially if there are a large number of variables. However, it's not real-time, so it would be a little hard to check if the variables contain the values they should. Edited January 29, 2006 by greenmachine
herewasplato Posted January 29, 2006 Posted January 29, 2006 A sample from your other thread:Do $pos1 = MouseGetPos() ToolTip("$pos1 " & $pos1[0] & ", " & $pos1[1]) Sleep(2500) $pos2 = MouseGetPos() ToolTip("$pos1 " & $pos1[0] & ", " & $pos1[1] & @CR & _ "$pos2 " & $pos2[0] & ", " & $pos2[1]) Sleep(2500) Until $pos1[0] = $pos2[0] And $pos1[1] = $pos2[1] [size="1"][font="Arial"].[u].[/u][/font][/size]
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