#1 (permalink)  
Old 07-02-2008, 06:23 PM
Junior Member
 
Join Date: Jul 2008
Posts: 1
Default Play Next FLV

I want the the player to play the next file on the xml list every time it finish playing a file.
how do I go about doing this:

Any help will be appreciated Thank You.
Reply With Quote
  #2 (permalink)  
Old 07-05-2008, 04:04 PM
Super Moderator
 
Join Date: May 2008
Posts: 519
Send a message via Skype™ to Adrian
Default

You could try this: open Actions.as file and find this block of code:

Code:
FC["onComplete"] = function () {
	if (!_global.seeking) {
		middleBtn_mc.gotoAndStop(2);
		vid_mc.blur();
		_global.__complete = true;
	}
};
replace it with

Code:
FC["onComplete"] = function () {
	if (!_global.seeking) {
		next_mc.onClick();
	}
};
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.