Zmodem commented on a Page, 3D text  -  May 12, 2011

You don't need the 'goto skipper' or the :skipper jump point. Example:

Instead of this:

if ($left($1,1) == /) || ($left($1,1) == !) || ($left($1,1) == .) { goto skipper }

Use this:

if ($left($1,1) == /) || ($left($1,1) == !) || ($left($1,1) == .) { return }

The 'return' alias allows you to exit out of a function without halting things, only skipping the rest of the code if the if-then-else statement is TRUE. Enjoy! :)

 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.