Just tried it out.....
Here's the code I used
I had a text field so I could see the file name for testing, and a movieclip on the stage called mc2 then made a couple of simple images saved as the same name as the mp3 files with an jpg extension.Code:mediaplayer1.onPlay=function(n,f){
//_root.txt1.text=f;
p=f.lastIndexOf(".");
f=f.substr(0,p)+".jpg";
_root.txt1.text=f
_root.mc2.loadMovie(f);
}
http://www.bretlanius.com/flash/lab/mploadimage.html
