I have a SWF which loads images and displays it.
Path to images is relative. It looks like this:
../../../images/thumbnail1.png
On Windows it works fine.
On MAC OS X
SWF file cannot load images.
So is there any differences between relative path
on Windows and MAC OS?
previewImagePath is ../../../images/thumbnail1.png
previewLoader = new Loader();
previewLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, previewLoaded);
previewLoader.load(new URLRequest(previewImagePath));
public function previewLoaded(e:Event):void
{
previewImageBtm = Bitmap(previewLoader.content);
previewImageBtm.smoothing=true;
addChild(previewImageBtm);
}//previewLoaded