Mark van Zon Posted October 21, 2005 Posted October 21, 2005 Case $msg = $okbutton Run('"' & @SCRIPTFULLPATH & '"') Exit If i do this is this right?
Developers Jos Posted October 21, 2005 Developers Posted October 21, 2005 Case $msg = $okbuttonRun('"' & @SCRIPTFULLPATH & '"')ExitIf i do this is this right?syntax looks ok... but did you try and did it work ? 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.
markusss Posted October 21, 2005 Posted October 21, 2005 (edited) I would just do this:Case $msg = $okbutton Run(@SCRIPTFULLPATH) ExitI assume you have a GUI and $msg = GUIGetMsg() ??Felix N. (tdlrali)P.S. This belongs in this thread: http://www.autoitscript.com/forum/index.php?showtopic=17186 Edited October 21, 2005 by Felix N.
Valuater Posted October 21, 2005 Posted October 21, 2005 it did not work in my script... however i do believe it will work if you compile the script to an exe 8)
Mark van Zon Posted October 21, 2005 Author Posted October 21, 2005 I would just do this:Case $msg = $okbutton Run(@SCRIPTFULLPATH) ExitI assume you have a GUI and $msg = GUIGetMsg() ??Felix N. (tdlrali)P.S. This belongs in this thread: http://www.autoitscript.com/forum/index.php?showtopic=17186How can i do it good ( copied from the example)
markusss Posted October 21, 2005 Posted October 21, 2005 Yeah, it has to be compiled to an .exe, so the script has something to open! Didn't think about that Felix N. (tdlrali)
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