;

PDA

Click to See Complete Forum and Search --> : Proxus FLV Player - Action on Frame?


DaveToon
11-08-2004, 01:05 PM
Howdy all,

I've asked this question (twice) to Proxus but have never received an answer...

Is there a way to make the Proxus FLV player execute an action on a frame of your movie? (Like the built-in media player can do)

I have used they're scipt to detect the end of a movie and execute a script but I really need it to detect a frame.

I would assume there is a simple script to do this, but I have been searching everywere and have yet to find it.

Thank You!


Dave

nickbeyeler
02-15-2005, 03:08 AM
In desperate need of a solution to this as well... !Anybody? Can an action be executed on a certain frame of the movie within the Proxus FLV Player?

nickbeyeler
02-15-2005, 09:08 AM
Found this code in the forum of proxus flv player's website - works perfectly for me.

// activate somekind of buttons(butt01,butt02) on runtime
var myListener = new Object();
myListener.time = function():Void
{
xx = player_mc.time
trace(xx);
if(xx== "00:07") {
setProperty(_root.butt01,_visible,1);
}
if(xx== "00:10") {
setProperty(_root.butt02,_visible,1);
}

}
player_mc.addEventListener("time", myListener);

DaveToon
02-15-2005, 11:21 AM
Cool. Thanks!

Dave