I have a Player, on OSX IDE, which should fire "playStopped" at the end of the video or if the user clicks on it (controls are hidden).
While everything is fine at the end of the video, clicking on the player instead put it on pause and, off course, does not fire "playStopped".
This is the player script
Code: Select all
on mouseDown
stop player "ThePlayer"
put the paused of player "ThePlayer" & cr after msg
end mouseDown
OBTAINED RESULT: I get "true" on the msg and the "playStopped" command is not fired.
What am I missing?