2 photos and on each photos i have next and previous button. they work fine with this script:
on (release) {
_parent.aaa.loadMovie(“photos-swf/edi/1.swf”,1);
_parent.phtm._visible=false;
_parent.btn._visible=false;
_parent.btn2._visible=false;
}
loads photo 1 from the photo2’s previous button.
on (release) {
_parent.aaa.loadMovie(“photos-swf/edi/3.swf”,1);
_parent.phtm._visible=false;
_parent.btn._visible=false;
}
loads photo 3 from the photo2’s next button.
and
on (release) {
_parent.aaa.loadMovie(“photos-swf/edi/2.swf”,1);
_parent.btn2._visible=false;
_parent.afd._visible=false;
_parent.edi1._visible=false;
_parent.btn2._visible=false;
}
loads photo 2 from the photo1’s next button.
when i click on each button from the main fla (the main fla is where all those swf s are loaded in. it is an editorial section of the photography site) the photos goes up and up on each click. they are not stable…
can u please help me…