LoadMovieNum Question

Hi,

I am using loadmovienum to try and load picture files (.jpg) into my main movie. When loading it onto a certian “level” it works fine.

However, when using load movie in the past I have loaded separate .swf files into movie clip symbols on the main time line which greatly helps when trying to position the movies I am loading in.

I am trying to load in my pictures files in the same way (into movie clip symbol on the timeline) however it doesn’t seem to be working. Is is possible to load in external picture files in this way?

You can use a script that creates a movieclipm, loades your external movie into it, then positions it as well, something like this:[AS]on (release) {
_root.createEmptyMovieClip(“container”, 1);
container.loadMovie(“mypicture.jpg”);
container._x =400; container._y=50;

}[/AS]