Syruz 1 Posted October 24, 2007 Is there a way to exit a function early? 1 yutijang reacted to this Share this post Link to post Share on other sites
Achilles 2 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. 1 yutijang reacted to this My Programs[list][*]Knight Media Player[*]Multiple Desktops[*]Daily Comics[*]Journal[/list] Share this post Link to post Share on other sites
Syruz 1 Posted October 24, 2007 Thank you, thought Return was just used to return a variable for a function... Share this post Link to post Share on other sites