Getting UI on embedded movie to work
I'm trying to make a photo website for myself. I have a main movie that launches a picture-viewer movie. Both movies work by themselves, but when I use the code below to load the picture viewer SWF into the main movie, the controls don't work.
The non-working version is at:
http://www.graysonschaffer.com/Grays...affer_new.html
(click "portfolio" then "portraits")
The working picture viewer is at:
http://www.graysonschaffer.com/1.html
I think this may have something to do with only the main timeline getting loaded, but I have no idea how to fix it.
_root.container1.createEmptyMovieClip("container", 1);
loadMovie("/"+_global.movieToPlay+".swf","container");
container._x = -485 ;
container._y = -345 ;
You are a god among mortals