Syruz Posted October 24, 2007 Share Posted October 24, 2007 Is there a way to exit a function early? yutijang 1 Link to comment Share on other sites More sharing options...
Achilles Posted October 24, 2007 Share Posted October 24, 2007 Is there a way to exit a function early?Use Return For example Func _DoNothingMuch() Sleep(2000) Return Sleep(2000) EndFunc This will sleep two seconds, and then exit... so the next Sleep(2000) is useless. yutijang 1 My Programs[list][*]Knight Media Player[*]Multiple Desktops[*]Daily Comics[*]Journal[/list] Link to comment Share on other sites More sharing options...
Syruz Posted October 24, 2007 Author Share Posted October 24, 2007 Thank you, thought Return was just used to return a variable for a function... Link to comment Share on other sites More sharing options...
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