Need Assistance - Flash MP3 Player for the Wii

I’m working on a simple mp3 player for my Wii that can play files loaded from my file server (if I can get it working really well, I plan to release it for public consumption). I have the script (php) and flash movie working on everything except the Wii opera browser, (even regular opera works) and I’ve had a few odd things work to where I can’t figure out what’s going wrong.

I’m using the MediaPlayback component with no modifications, and have tried using flashvars and query strings to insert the filename into the actual flash movie. It actually loads and plays the mp3’s, except on the actual Wii Opera browser. The actionscript I’m using is as follows:

mediaplayer.setMedia(media2play,"MP3");
mediaplayer.play();

I haven’t modified the mediaplayback component, with the exception of giving it the “mediaplayer” label.

Now, I have gotten two halves of the problem working seperately::

I’ve gotten it to load (and play) an mp3 by entering the mp3 name in the url field of the component inspector.

I’ve been able to read external variables (using either query strings or flashvar) in a blank flash file with the following code:


this.createTextField("t_txt", 1, 100, 100, 1, 1);
t_txt.autoSize = true;
t_txt.text = "the external variable is:
" + myVar;