PDA

View Full Version : flash and pages issues


digitalsin
05-12-2008, 06:40 AM
hi
sorry if this as seen asked before but here is my problem.
I have this template with flash with 5 menus, about us, products and so on...
the problem is when i click on on any of the links it opens another page but with the same home page it wont open about us or contact us or any of them just same flash and same frame (home page).

obviously i would like to be able to open lets say "about us" in the same page where the flash( with menus ) is, and same with the rest of the tabs

this is the code for just one of the tabs, Frame0 which is the home page..

on (rollOver) {
if (_root.link<>1) {
this.gotoAndPlay("s1");
}
}
on (releaseOutside, rollOut) {
if (_root.link<>1) {
this.gotoAndPlay("s2");
}
}
on (release) {
if (_root.link<>1) {
_root["item"+_root.link].gotoAndPlay("s2");
_root.link = 1;
}
getURL("iframe_0.html" , "cont");

do i need to change anything in there besides the path to frame?
thanks:confused:

honeycloverpkiss
06-10-2008, 01:47 PM
Try using gotoAndStop instead.

hi
sorry if this as seen asked before but here is my problem.
I have this template with flash with 5 menus, about us, products and so on...
the problem is when i click on on any of the links it opens another page but with the same home page it wont open about us or contact us or any of them just same flash and same frame (home page).

obviously i would like to be able to open lets say "about us" in the same page where the flash( with menus ) is, and same with the rest of the tabs

this is the code for just one of the tabs, Frame0 which is the home page..

on (rollOver) {
if (_root.link<>1) {
this.gotoAndPlay("s1");
}
}
on (releaseOutside, rollOut) {
if (_root.link<>1) {
this.gotoAndPlay("s2");
}
}
on (release) {
if (_root.link<>1) {
_root["item"+_root.link].gotoAndPlay("s2");
_root.link = 1;
}
getURL("iframe_0.html" , "cont");

do i need to change anything in there besides the path to frame?
thanks:confused: