Example |
This routine checks to see if the mouse pointer is over a navigation button in the Flash sprite. If the mouse pointer is over the button, the script updates a variable with an appropriate message; if not, it clears the message.
If GetSpriteProperty(@"Flash Icon", #mouseOverButton)
Message:= "Click here to go to the next page."
else
Message:= ""
end if
|