A Flash Developer Resource Site

Results 1 to 4 of 4

Thread: Proxus FLV Player - Action on Frame?

  1. #1
    Junior Member
    Join Date
    Nov 2004
    Posts
    5

    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

  2. #2
    Junior Member
    Join Date
    Dec 2000
    Posts
    21
    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?

  3. #3
    Junior Member
    Join Date
    Dec 2000
    Posts
    21
    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);

  4. #4
    Junior Member
    Join Date
    Nov 2004
    Posts
    5
    Cool. Thanks!

    Dave

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center