I'm having trouble with this now.... I had this ActionScript:
Code:
loadMovie("test.jpg", "_root.mainContent.reel.photo1");
setProperty("_root.mainContent.reel.photo1", _x, "800");
setProperty("_root.mainContent.reel.photo1", _y, "-230");
It worked fine. Then I went to put the movie in situ, so I changed it to:
Code:
loadMovie("../img/photos/runners.jpg", "_root.mainContent.reel.photo1");
setProperty("_root.mainContent.reel.photo1", _x, "800");
setProperty("_root.mainContent.reel.photo1", _y, "-230");
It didn't work. Tried moving "runners.jpg" to the same location as my movie:
Code:
loadMovie("runners.jpg", "_root.mainContent.reel.photo1");
setProperty("_root.mainContent.reel.photo1", _x, "800");
setProperty("_root.mainContent.reel.photo1", _y, "-230");
Still no joy. 
Any ideas? I don't see how it could actually be the graphic cos it was outputted for web.
G
Bookmarks