how can i load multiple pictures off of a single mouserelease. this is my code for my button so far:
on (release) {
_root.createEmptyMovieClip(“container”, 1);
container.loadMovie(“FREEDOM_OF_RELIGION1.jpg”);
set(container._x=385, container._y=135);
}
on (release) {
_root.createEmptyMovieClip(“container”, 1);
container.loadMovie(“FREEDOM_OF_RELIGION2.jpg”);
set(container._x=300, container._y=322);
}