[FONT="][/FONT][FONT="][/FONT][FONT="][/FONT][FONT=Arial]Hi there,
[/FONT]
[FONT=Arial][FONT="]
I am building a site (can be viewed here: www.samueldixon.com)
Within the portfolio section I have an MP3 player for streaming MP3s. what I really need is to be able to create a preloader for the mp3 player, but i just cant work out how to code it.
In flash, it is set up like this…
On the timeline, the actions for the MP3 player are on the first frame:
[/FONT]
////MUSIC
function callMusic (myURL:String):void
{
var music:Sound = new Sound(new URLRequest(myURL));
var sc:SoundChannel;
var isPlaying:Boolean = false;
var pos:Number = 0;
var soundVolume:Number = 1;
var muted:Boolean = false;
mute_mc.buttonMode = true;
volume_mc.slider_mc.buttonMode = true;
pause_btn.addEventListener (MouseEvent.CLICK, pauseMusic);
function pauseMusic (e:Event):void{
if (isPlaying)
{
pos = sc.position;
sc.stop ();
isPlaying = false;
}
}
stop_btn.addEventListener (MouseEvent.CLICK, stopMusic);
function stopMusic (e:Event):void{
//if (sc != null)
//{
SoundMixer.stopAll();
sc.stop();
pos = 0;
isPlaying = false;
// STOP ALL SOUNDS
// }
}
play_btn.addEventListener (MouseEvent.CLICK, playMusic);
function playMusic (e:Event):void
{ pleaseWait_mc.play();
if (! isPlaying)
{ // STOP ALL SOUNDS
SoundMixer.stopAll();
sc = music.play(pos);
isPlaying = true;
}
}
//---VOLUME SLIDER---//
var dragging:Boolean = false;
var rectangle:Rectangle = new Rectangle(0,0,100,0);
volume_mc.slider_mc.addEventListener (MouseEvent.MOUSE_DOWN, dragIt);
stage.addEventListener (MouseEvent.MOUSE_UP, dropIt);
function dragIt (e:Event):void
{
volume_mc.slider_mc.startDrag (false,rectangle);
dragging = true;
volume_mc.slider_mc.addEventListener (Event.ENTER_FRAME, adjustVolume);
}
function dropIt (e:Event):void
{
if (dragging)
{
volume_mc.slider_mc.stopDrag ();
volume_mc.slider_mc.removeEventListener (Event.ENTER_FRAME, adjustVolume);
dragging = false;
}
}
function adjustVolume (e:Event):void
{
mute_mc.gotoAndPlay ("On");
soundVolume = volume_mc.slider_mc.x / 100;
var st:SoundTransform = new SoundTransform(soundVolume);
if (sc != null)
{
sc.soundTransform = st;
muted = false;
}
}
mute_mc.addEventListener (MouseEvent.CLICK, mute);
function mute (e:MouseEvent):void
{
if (sc != null)
{
var st:SoundTransform;
if (muted)
{
st = new SoundTransform(soundVolume);
sc.soundTransform = st;
mute_mc.gotoAndStop ("On");
muted = false;
}
else
{
st = new SoundTransform(0);
sc.soundTransform = st;
mute_mc.gotoAndStop ("Mute");
muted = true;
}
}
}
}
[/FONT] [FONT=Arial][FONT="]Then each artist’s page is seperated with frame labels, and on each frame has the mp3 player and actions to call the music function eg:[/FONT][/FONT]
[FONT=Arial]
callMusic("http://samueldixon.com/music/Let_Go.mp3");
[/FONT]
[FONT=Arial]
[/FONT]
[FONT=Arial]My main site preloader contains this code:[/FONT]
[FONT=Arial]
stop();
addEventListener(Event.ENTER_FRAME, loaderFF);
function loaderFF(e:Event):void{
var toLoad:Number = loaderInfo.bytesTotal;
var loaded:Number = loaderInfo.bytesLoaded;
var total:Number = loaded/toLoad;
if(loaded == toLoad){
removeEventListener(Event.ENTER_FRAME, loaderFF);
gotoAndStop("home");
} else {
preloader_mc.preLoaderFill_mc.scaleX = total;
preloader_mc.percent_txt.text = Math.floor(total*100) + "%";
preloader_mc.ofBytes_txt.text = loaded + "bytes";
preloader_mc.totalBytes_txt.text = toLoad + "bytes";
}
}
[/FONT]
[FONT=Arial]If anyone can help me translate the above code to work on my mp3 player, I would seriously appreciate it! This is my first flash site, and I am desperate to get it right!
Thanks in advance!
doodark x[/FONT]
[FONT="][/FONT]
[FONT="][/FONT]