|
-
Proxus FLV Player - Action on Frame?
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
-
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?
-
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);
-
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|