Hi,
i’m writing a little application, where users can move through a small world with an avatar. Because their will be many avatars available I’ve decided to load them dynamic. The avatar is saved in a *.swf file. The file consists of different frames, where the front, the back and the side of the avatar is shown. Now I want to load this file in to my application and display a frame of the swf file.
What I’ve tried was:
url=“avatar1.swf”;
createEmptyMovieClip(“avatar”,1);
avatar.loadMovie(url);
avatar.gotoAndStop(3);
But this doesn’t work.
Do you have any suggestions?
Great_T