Go Back   CodingForums.com > :: Client side development > Flash & ActionScript

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 07-30-2009, 06:22 AM   PM User | #1
petemotz
New to the CF scene

 
Join Date: Jul 2009
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
petemotz is an unknown quantity at this point
MP3 Player, multiple functions per button, help needed

Hi everyone, this is my first post and my first time working with actionscript. I'm developing a website for my own business and am integrating an mp3 player. I can have it play one song easily and I can have it go to the next song as well, however I can't pause and then re-play the second song because the button is linked to the first song. Here's what I have:

Code:
var music:Sound = new Sound(new URLRequest("http..."));
var sc:SoundChannel = null;
var isPlaying:Boolean = false;
var pos:Number =0;
var soundVolume:Number = 1;

play_btn.buttonMode = true;
pause_btn.buttonMode = true;

play_btn.addEventListener(MouseEvent.CLICK, playMusic);
pause_btn.addEventListener(MouseEvent.CLICK, pauseMusic);

function playMusic(e:Event):void
{
			sc=music.play(pos);
			isPlaying=true;		
			dyn_txt.text="song1";
		}
		
		
function pauseMusic(evt:MouseEvent)
{
	pos = sc.position;
			sc.stop();
			isPlaying=false;
			dyn_txt.text="song1";
			soundVolume = 75;			
		}

var black:Sound = new Sound(new URLRequest("http..."));
var sc2:SoundChannel = null;
var isPlaying2:Boolean = false;
var pos2:Number =0;
var soundVoulmer2:Number = 1;

next_btn.buttonMode = true;

next_btn.addEventListener(MouseEvent.CLICK, nextBlack);

function nextBlack(e:Event):void
{
	sc.stop();
	sc2=black.play(pos);
	isPlaying2=true;
	dyn_txt.text="song2";
}
Any ideas?
petemotz is offline   Reply With Quote
Old 07-30-2009, 02:20 PM   PM User | #2
gnomeontherun
Senior Coder

 
gnomeontherun's Avatar
 
Join Date: Sep 2007
Location: Houston
Posts: 2,846
Thanks: 10
Thanked 238 Times in 229 Posts
gnomeontherun will become famous soon enoughgnomeontherun will become famous soon enough
I think the problem is you are creating separate functions and markers for different songs. You might consider this tutorial or something similar.

http://www.flashessential.com/archives/26

Ideally, you have an array with your songs listed, and you play songs based on an index variable that keeps track of what song you are on.
__________________
jeremy - gnomeontherun
Educated questions often get educated answers, and simple questions often get simple answers.
gnomeontherun is offline   Reply With Quote
Reply

Bookmarks

Tags
buttons, functions, mp3

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

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

Forum Jump


All times are GMT +1. The time now is 05:32 PM.


Advertisement
Log in to turn off these ads.