i am trying to figure out the lennykravits.com navigation system and i’m running into a few problems
I downloaded the .fla from flashkit and everything works fine
when i want to load a section i’ve placed this code on the buttons
on (release) {
_root.Tpointer = 1;
if (_root.Picture._xscale=100){
loadMovieNum(“1.swf”, 3);
}
gotoAndPlay(4);
}
however, the 1.swf replaces the current movie and my navigation is lost.
if i try this, the swf doesn’t load.
on (release) {
_root.Tpointer = 1;
if (_root.Picture._xscale=100){
createEmptyMovieClip(“container”, 1);
loadMovie(“1.swf”, “container”);
container._x = 0;
container._y = 0;
}
gotoAndPlay(4);
}
what am i doing wrong? i’m more of a designer than a programmer so any help would be greatly apreciated.