Bugz Posted December 15, 2005 Posted December 15, 2005 Hello!!!Please help. Is there a command in AutoIt v3 that is equivalent to "go to" so I could skip the current process in my script that is terminated and proceed to the remaining accessible processes?Thanks!Bugz
Valuater Posted December 15, 2005 Posted December 15, 2005 (edited) if processexist("Name") then processclose("name") or if not processexist("name") then ; do this else ; do this endif 8) there is no goto in autoit... you dont need it...if you want better help.. show your script with your question Edited December 15, 2005 by Valuater
Bugz Posted December 15, 2005 Author Posted December 15, 2005 if processexist("Name") then processclose("name")orif not processexist("name") then; do thiselse; do thisendif8)there is no goto in autoit... you dont need it...if you want better help.. show your script with your questionThanks!I'll see what I can do. If I can't find ways to solve this, I'll post my script so you could understand the case better.Thanks again!
JSThePatriot Posted December 15, 2005 Posted December 15, 2005 Are you talking about a process that exists in the Task Manager like Valuaters example helps with or a 'process' like a function in your script? If it is in your script please post it. I am sure we can add some If statements to help you out. I think if you look into creating your own Functions you will be able to answer you own question. JS AutoIt Links File-String Hash Plugin Updated! 04-02-2008 Plugins have been discontinued. I just found out. ComputerGetInfo UDF's Updated! 11-23-2006 External Links Vortex Revolutions Engineer / Inventor (Web, Desktop, and Mobile Applications, Hardware Gizmos, Consulting, and more)
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