Ok well I posted a topic about this b4 with no replies. I have gotten more info on this and was wondering what I should do. I am trying to learn actionscript and according to macromedia this is what they released:
\\\\\\\\\\\\\\\\\\\\\\\\\
Accessing ID3 properties in MP3 files
Macromedia Flash Player 6.0r40 and later supports MP3 files with ID3 v1.0 and v1.1 tags.
ID3 tag properties can be retrieved from a sound object when an MP3 sound containing an ID3v1 tag has been loaded using the attachSound() or loadSound() method. If a sound does not contain an ID3v1 tag, the ID3 properties will be undefined. Users must have the Macromedia Flash Player 6.0r40 or later in order for the ID3 properties to function.
Once the MP3 has completely loaded into the Sound object, you can access the following properties:
mySound.id3.songname
mySound.id3.artist
mySound.id3.album
mySound.id3.year
mySound.id3.comment
mySound.id3.track (available only for ID3v1.1 tags)
mySound.id3.genre
Note: The value of genre is an integer, not a name. For a table listing genre names and their corresponding integer values, see the ID3 website. To use a genre name instead of an integer for the genre property value, you must embed the genre table into the ActionScript in your movie.
For example, the following code loads an MP3 file and reads its ID3 tag properties:
myTrack = new Sound();
function RockAndRoll(){
myTrack.start();
if((myTrack.getBytesLoaded() == myTrack.getBytesTotal()) && myTrack.duration > 0){
tf.text += "songName = " + myTrack.id3.songname +"." + newline;
tf.text += "Artist = " + myTrack.id3.artist +"." + newline;
tf.text += "album = " + myTrack.id3.album + newline;
tf.text += "year = " + myTrack.id3.year + newline;
tf.text += "comment = " + myTrack.id3.comment + newline;
tf.text += "track = " + myTrack.id3.track + newline;
tf.text += "genre = " + myTrack.id3.genre + newline;
clearInterval (poll);
}
}
myTrack.loadSound("myFile.mp3", false);
poll = setInterval(RockAndRoll, 1000);
If the attached MP3 file Some_Linked_Sound has an ID3 v1.0 or v1.1 tag for artist, the value is traced to the Output window.
Note: The entire song must be loaded for the ID3 properties to be available.
\\\\\\\\\\\\\\\\\\\\\\
I have a understanding of what it means, but I am lost on where and how to put the code. Any above help would be appreciated. Thanks in advance!