I created a SWF that uses uses dynamic text to show song IDs for an MP3 player
It works great by itself, but when I load this SWF as a movie into another SWF
interface I created, nothing wil
appear in the dynamic text box

Can anyone help

Here is my code for the SWF that is being loaded into the bigger SWF. This
code is hooked to a button tha
loads a song

on (release)
var song = new Sound()

// Display MP3 ID tag
song.onID3 = function ()
display_txt.text = ("Artist: " + song.id3.TPE1 + newline)
display_txt.text += ("Song: " + song.id3.TIT2)


var soundtrack = "mymusic.mp3"
song.loadSound(soundtrack, "true")
song.stop()