Action script gurus, I need your help

[LEFT]
Hi all,

I started my site from a flash template that loads its pages from the library (the pages are not on the time line).In this template there are 5 buttons in the first page (main) that link to the pages from the library.[/LEFT]
[LEFT]The action script that links the original buttons to the pages(in the library) is :

[/LEFT]
[LEFT]on (rollOver) {[/LEFT]
[LEFT] gotoAndPlay(“s1”);[/LEFT]
[LEFT]}[/LEFT]
[LEFT]on (releaseOutside, rollOut) {[/LEFT]
[LEFT] gotoAndPlay(“s2”);[/LEFT]
[LEFT]}[/LEFT]
[LEFT]on (release) {[/LEFT]
[LEFT] gotoAndStop(“studio”);[/LEFT]
[LEFT]}

[/LEFT]
[LEFT](BTW, S1 and S2 are in a layer which roles over the button when the mouse rolls over it)[/LEFT]
[LEFT]

Up to here it all makes sense to me, Well sort of :stuck_out_tongue:
[/LEFT]
[LEFT]Here comes my problem: [/LEFT]
[LEFT]I add a new keyframe on the main timeline with a new page and modified the action script of one of the original buttons to :

[/LEFT]
[LEFT]on (rollOver) {[/LEFT]
[LEFT] gotoAndPlay(“s1”);[/LEFT]
[LEFT]}[/LEFT]
[LEFT]on (releaseOutside, rollOut) {[/LEFT]
[LEFT] gotoAndPlay(“s2”);[/LEFT]
[LEFT]}[/LEFT]
[LEFT]on (release) {[/LEFT]
[LEFT] gotoAndStop(“page2”);[/LEFT]
[LEFT]}

[/LEFT]
[LEFT]For some the button will not link to the frame “page2”

[/LEFT]
[LEFT]What am I doing wrong here??

[/LEFT]
[LEFT](BTW, I created a new simple button(in the main page) with a simple script which worked fine.

[/LEFT]
[LEFT]on (release) {[/LEFT]
[LEFT] gotoAndStop(“page2”);[/LEFT]
[LEFT]}[/LEFT]
[LEFT]

[/LEFT]
[LEFT]I hope what I wrote here makes sense

[/LEFT]
[LEFT]Thanks :-)[/LEFT]