In a message dated 3/21/06 8:14:18 AM, "Jeff Honken" <[EMAIL PROTECTED]> 
writes:
>Is there any way to combine events so you don't have to have redundant
>code.  I would like the same code to run on both the "on returnInField"
>and "on mouseDown" events.  Jeff
   In general, the solution to this problem looks something like this:

on returnInfield
  DoStuff
end returnInField

on mouseDown
  DoStuff
end mouseDown

on DoStuff
  real code goes here
  code real here goes
  here code real goes
end DoStuff

  Hope this helps...
_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to