A Flash Developer Resource Site

Results 1 to 3 of 3

Thread: XML FLV Player

  1. #1
    Junior Member
    Join Date
    Jul 2005
    Posts
    2

    XML FLV Player

    Does anyone know how to attach an xml playlist to the media player component so that when opened the player will open the first flv and continue through the playlist and start over again?
    -Chino

  2. #2
    Junior Member
    Join Date
    Dec 2000
    Posts
    5
    there is a tutorial on macromedia here
    http://www.macromedia.com/devnet/mx/..._download.html
    or a player at videospark
    http://www.macromedia.com/devnet/mx/..._download.html
    here is some code I hacked to push my flv to the next one

    // from Macromedia Help
    var myListener = new Object();
    myListener.complete = function(eventObject) {
    trace("media is Finished"); //gotoNextFrameInTheMovie
    loadMovie("intro2.swf","_level0.bg.holder");
    _level0.bg.holder.bg.controls.mediaDisplay.setMedi a("", "FLV");
    };
    mediaDisplay.addEventListener("complete", myListener);
    //_level0.bg.holder.bg.controls.controller._buttons. setStyle("themeColor", "haloOrange");

  3. #3
    Junior Member
    Join Date
    Jul 2005
    Posts
    2
    thanks for the info. Is there any way you have a working sample as I am having a hard time using the zip files that came from the macromedia site.

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