I know this is supposed to be pretty easy to do, but for some reason I can’t get this to work. In my first frame, I load a .swf of thumbnails into my main movie. On my second frame, I want that .swf to unload and not be there any longer. However, my .swf remains despite my efforts. Here is the scripting for the first frame:
[AS]_root.createEmptyMovieClip(“twinkle1”, 0)
_root.createEmptyMovieClip(“twinkle2”, 1)
_root.twinkle1.loadMovie(“NavigationThumbs.swf”)
stop();[/AS]
twinkle1 loads the thumbnails .swf, twinkle2 is where the pics load when a thumbnail is clicked.
on Frame 2 I have:
[AS]_root.twinkle1.unloadMovie(“NavigationThumbs.swf”)
stop();[/AS]
Can anyone help?
Batman124617:bounce: :crazy: