try setting a flag like this:

property firstClick -- determines whether it's the first time or not

on mouseDown me
   if firstClick then
     go to "link"
     firstClick = 0
   else go to "home"
end

on beginSprite me
   firstClick = 1
end

hth

-Buzz

At 11:21 AM -0500 2/24/02, you wrote:
>my main navigation uses this simple behavior:
>
>on mouseDown
>   go to "link"
>end 
>
>I'm hoping to find out how to have it go back to main page on second click -
>simply put, click once brings you to marker "link", click again brings you
>back to marker "home".
>
>TIA,
>
>D
>
>[To remove yourself from this list, or to change to digest mode, go 
>to http://www.penworks.com/lingo-l.cgi  To post messages to the 
>list, email [EMAIL PROTECTED]  (Problems, email 
>[EMAIL PROTECTED]). Lingo-L is for learning and helping with 
>programming Lingo.  Thanks!]

[To remove yourself from this list, or to change to digest mode, go to 
http://www.penworks.com/lingo-l.cgi  To post messages to the list, email 
[EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED]). Lingo-L is for 
learning and helping with programming Lingo.  Thanks!]

Reply via email to