|
-
Im loading a movie (links.swf) into a main swf that consists of a number of links to URL's that open in blank windows.
what im trying to do is when a user clicks on one of the links, it opens in a blank window and the main movie in the other window runs a screensaver which is really just a movie clip. (see "on release" below).
There is one main button that controls everthing:
on (rollOver) {
_level0:halt = 1;
_level0 p = 18;
}
on (rollOut, releaseOutside) {
_level0:halt = 0;
_level0 p = 0;
}
on (keyPress "<Up>") {
enlhip.gotoAndPlay(2);
}
on (keyPress "<Down>") {
enlhip.gotoAndPlay(16);
}
on (release) {
getURL("http://www.whatever.com", "_blank");
_root.saver.gotoAndPlay("saver");
}
when i launch the "links.swf" it works perfectly. But if i try the same through the main swf, it doesn't.
seems a simple problem but its been annoying me. can anyone help?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|