Flash and Domino

Ok, here is what I want to do. I have a flash movie that I am attaching to a notes database using a file upload control (can also be embedded, but this one is an attached file). In the movie, I play a song using the sound object… this all works fine. What I want to do is allow the user to select the song (in the movie) and then play that song instead of having the mp3 embedded in my movie. I know how to load an external sound in flash using the loadSound method of the Sound object. What I need assistance with is this: I want the movie played to reside in a separate domino database as a resource. This way things are nice and neat. Does anyone know if this is possible to do? The following actionscript is what I have used to load the file if it resides outside of an .nsf file:

on (release, releaseOutside) {

myTrack = new Sound();

myTrack.Stop()

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(“http://joel0903.dominodeveloper.net/didotakemyhand.mp3”, false);

poll = setInterval(RockAndRoll, 1000);

play()

}