BryanP
09-09-2005, 06:46 PM
I don't know how, can't figure out how, and can't find in literature how to add pages in my library to scene 1.
I have a professionally made template which has one scene. The scene runs an annimation and then stops on page one (listed in library as page 1). Buttons go through an animation and then stop at page 2, page 3, page 4, or page 5. It all works great.
I see the actionscript for each of these buttons and they contain a script to bring up these pages. This is button to page 3.
on (rollOver) {
gotoAndPlay("over");
}
on (releaseOutside, rollOut) {
gotoAndPlay("out");
}
on (release) {
if (_root.click)
if (_root.link != 3) {
_root.prev = _root.link;
_root.link = 3;
_root.click = 0;
_root.slogan1 = 'Workstation Tables';
_root.slogan2 = '';
_root.hdr.slogan.play();
_root.gotoAndPlay("change");
}
}
I want to know how to add a page 6, page 7, page 8, page 9, and page 10 to the other pages. I can add the script from the other pages but how do I get the pages to run within my scene like the other pages? Nothing I have done has worked. Please help.
I have a professionally made template which has one scene. The scene runs an annimation and then stops on page one (listed in library as page 1). Buttons go through an animation and then stop at page 2, page 3, page 4, or page 5. It all works great.
I see the actionscript for each of these buttons and they contain a script to bring up these pages. This is button to page 3.
on (rollOver) {
gotoAndPlay("over");
}
on (releaseOutside, rollOut) {
gotoAndPlay("out");
}
on (release) {
if (_root.click)
if (_root.link != 3) {
_root.prev = _root.link;
_root.link = 3;
_root.click = 0;
_root.slogan1 = 'Workstation Tables';
_root.slogan2 = '';
_root.hdr.slogan.play();
_root.gotoAndPlay("change");
}
}
I want to know how to add a page 6, page 7, page 8, page 9, and page 10 to the other pages. I can add the script from the other pages but how do I get the pages to run within my scene like the other pages? Nothing I have done has worked. Please help.