hello, i need help the problem is like this
i use tell target movie, i have 2 button to call the movie, if i click the first button the movie comes up and if i click again, the movie will gone and its okay, what i want is if i click the first button and then i click the second button i wanna the movie from second button comes up, but i can't, what i did the movie in button 1 gone, just like i click button 1 twice

the script like this (for button 1 and 2), i just change the ("btn1") into ("btn2"
Code:
On (Press)
      If (/:pressed="1")
            Set Property ("/themovie", Visibility) = "0"
            Set Variable: "/:pressed" = "0"
      Else
            Set Property ("/themovie", Visibility) = "1"
            Begin Tell Target ("/themovie")
                  Go to and Play ("btn1")
            End Tell Target
            Set Variable: "/:pressed" = 1
      End If
End On
thanks...

[Edited by Triadis on 08-13-2000 at 06:23 AM]