On Windows Mobile phones :
var file : string = "file://" + "SD Card\My Documents\My Images\" + "Flower.jpeg";
mcl.loadClip(file, mc);
On Symbian phones :
var file : string = "C:\Images\" + "Flower.jpeg";
mcl.loadClip(file, mc);
You just have to check in your file browser to get the good absolute path.
Relative path works as well I think :
var file : string = "Flower.jpeg";
mcl.loadClip(file, mc);
With "Flower.jpeg" in the same folder as your .SWF
|