Hey all,

This really should be simple. It is a rollover that tests for the play head position on the target movie. Here is the code:

On (Roll Over)
If (/web:_currentframe >= 15)
Stop
Else
End If
Begin Tell Target ("/web")
Loop While (/web:_currentframe <= 15)
Go to Next Frame
End Loop
End Tell Target
End On
On (Roll Out)
If (/web:_currentframe >= 1)
Loop While (/web:_currentframe >= 1)
Begin Tell Target ("/web")
Go to Previous Frame
End Tell Target
End Loop
End If
End On

I am getting and infinate loop error. And, the play head goes immeadiately to the end of the movie /web.

Any clues?

vince