dear 
  could you please remove my e-mail from your data base
  bcz i reseave alot of emails from you and you team
  regards

Sarah Reichelt <[EMAIL PROTECTED]> wrote:
  > What I really want is a way of tell if the mouseUp handler has been
> called by the user pressing the mouse or if it's via the "send" command.

Without going into the details of your script, one way to do this is
with a parameter e.g.

on mouseUp
myHandler "mouse"
end mouseUp

on otherHandler
send "myHandler send" to me in 5 seconds
end otherHandler

on myHandler pWhere
if pWhere = "mouse" then
-- called from mouse click
else if pWhere = "send" then
-- called by a send
end if
end myHandler

HTH,
Sarah
_______________________________________________
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


       
---------------------------------
Building a website is a piece of cake. 
Yahoo! Small Business gives you all the tools to get online.
_______________________________________________
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