A Flash Developer Resource Site














Internet Commerce

Partners & Affiliates














Developer Channel

internet.com


Featured Flash FLA
Gallery Downloads 11303 Flash Movies | 7 New Flash Movies Added
What's New | Top 100

Featured FLA

» Author: VICENTE VERGARA SILVA
» Title: JORGE ASBUN BOJALIL WEBSITE INTRO
» Description: THIS IS BRIEF A 3D INTRO MADE IN 3D MAX STUDIO FOR A PERSONAL POET WEBSITE. ENJOY.
» More by VICENTE VERGARA SILVA


Random FLAs | Add Flash Movie
Featured Flash Site
Gallery Downloads 6010 Flash Sites | 0 New Flash Links
What's New | Top 100 Flash Site

Featured Site

» Posted in the Flash Kit Links section
» Title: 3D Jobs
» Description: Free job forum for jobs in Films, Video Games, Multimedia and jobs in flash animation and scripting.


Random Links | Add your own Flash Related Links
Flash Tutorials 1255 Tutorials 7 New Tutorials Added!
What's New | Top100

» Make flash video player for broadcasting live streaming video / TV on website
» How to convert the project file of Flash Demo Builder 2.0 into FLV file
» FLV to PSP for Mac - How to convert YouTube video to PSP on mac
» How to Convert FLV to MP4 for Playback on iPod
» how to download and convert youtube video to AVI with Leawo Free FLV converter
» Flash Multi-player Game Tutorial - TicTacToe
» How to make Flash elearning tutorials with screen recorder?
» Fader API:Slideshow with MovieClips on stage
» How to convert MS PPT file into an FLV File
» Unknown Tag: Title10
Random Tutorial | Add Site

Network Design Manager
The Computer Merchant, Ltd
US-VA-Hampton

Justtechjobs.com Post A Job | Post A Resume


Tutorials Home What's New Top Rated Submit myTutes Random!

Search Tutorials


Tutorials Tutorials » Utilities

Categories make your own mp3 player
Author: roozbeh afrasiabi(black_death) | Website: none |

 
Page 1
1

Make your own MP3 player using Flash MX :
Version 2.0


Introduction:

One of the best features of Flash MX is its ability to download mp3 files directly into flash player, before the release of flash MX developers had to import mp3 files into their projects and this made handling such files very hard. But now with the loadSound() function you can easily load mp3s and choose the method flash player downloads them.
There are basically two methods you can use to load your mp3s into flash player:

1.event
2.streaming


According to the method you select flash MX gives youdifferent options for handling the file.Event sounds have to be downloaded before they can be controlled, streaming sounds play while they are being loaded, so flash player gives you full control over event sounds and less options for handling streaming sounds.

When you load mp3s as event sounds you can use all commands for handling sound objects that actionscript offers, on the other hand when you load mp3s as streaming sounds you are only given the ability to stop, play or set volume-pan of the music file .


How it is done:

First of all run flash MX and create an empty project. Choose your desired document size and background color.

This mp3 player requires some buttons, you can make your own buttons or Use the buttons flash stores in the common libraries.

We will organize our scripting by using functions for the most part
of the MP3 player.
All functions are placed in the first frame (main scene).

Functions:


play:


function playa() {
if (playing!=true) {
mysound=new Sound();
if (url!=null) {
mysound.loadSound(url+".mp3", false);
mysound.start((_root.pos)/1000,1);
if (mysound.duration!=0) {
playing=true;
}
} else {
}
}
}

Note: You can not use play as the function name, flash already has
A built in function with that name. In general avoid naming your
Functions with names that are already used by flash.

This function will simply load the mp3 file from the path (URL) you have provided if the URL exists.

Note: you can use an input text box to get the URL from the user.

Note:_root.pos is a variable that stores the file position

If the URL value is null you can use the else command to force the
user into inputting a valid path or file name.

Stop:

function stopa() {
_root.pos=0;
mysound.stop();
playing=false;
}


The _root.pos=0 sets the pos value to zero so if the user calls the
playa function the file will be played from the beginning.

Pause:


function pause() {
if (playing) {
_root.pos=mysound.position;
mysound.stop();
playing=false;
}
}


This function pauses the sound and stores the position value in the
pos variable.(The pos value will be used when the user calls the
playa function, in this way when the music is played again it starts
from the position where it was stopped before)

Copy/paste all these functions to the first frame (on the main scene)
Of your project.


Forward/Rewind:

Create an empty movie clip and place the following scripts inside the
first frame of the movie.


if (_root.rw) {
if (_root.playing) {
pose = int((_root.mysound.position)/1000)-1;
_root.mySound.stop();
_root.mySound.start(pose, 1);
}
}


if (_root.fw) {
if (_root.playing) {
pose = int((_root.mysound.position)/1000)+1;
_root.mySound.stop();
_root.mySound.start(pose, 1);
}
}

Now select the next frame and convert it to a keyframe this will make a loop.

Mute:

Create a global sound object that can control the overall sound volume:

globalvolume = new Sound();

Place the above script in the first frame(main scene) we will use a button to
control this object.
Buttons:


play/pause/stop:

Just use the buttons you made before to call these functions .

Example:

on (press) {
pause();
}

forward/rewind/mute:

Copy/paste the following scripts to the buttons you have made
before.


Forward:

on (press) {
fw = 1;
}
on (release, releaseOutside, rollOut, dragOut) {
fw = 0;
}

Rewind:

on (press) {
rw = 1;
}
on (release, releaseOutside, rollOut, dragOut) {
rw = 0;
}

Mute:

on (release) {
if (_root.globalvolume.getVolume()>0) {
_root.globalvolume.setVolume(0);
} else {
_root.globalvolume.setVolume(100);

}
}


Counters:

Add these to the first frame(main scene) of your movie:

playing=false;
var pos=0;

These will set the default values for playing and pos.

Volume&pan:

you can use any fader to control the volume-pan of your mp3.

Note: If you can not handle making a fader use the faders in the common
libraries of flash MX.
Commonlibraries>>buttons>>Knobs&faders>>fadergain


And that’s it you have made your own MP3 player and it works fine.
You can now use your knowledge of action script to make this player as
complicated or as simple as you want.

1

» Level Advanced

Added: : 2002-12-12
Rating: 5.85 Votes: 146
Hits: 1180
» Author
none
» Download
Download the files used in this tutorial.
Download (0 kb)
Get conversion and unzipping tools for PC and Mac here!

» Forums
More help? Search our boards for quick answers!

Please rate this tutorial, 10 is the top rating, you can also click the comments link to read/write a review.
10 9 8 7 6 5 4 3 2 1
Read or Post Comments