| View previous topic :: View next topic |
| Author |
Message |
med23
Joined: 01 Feb 2007 Posts: 4
|
Posted: Thu Feb 01, 2007 1:19 am Post subject: Open link in new window? |
|
|
Hi, I am a bit of a noob in Flash, and I would like to know how to get a button in my flash site to open a link in a new window WITHOUT it affecting my main flash site.
THANKS IN ADVANCE!  |
|
| Back to top |
|
 |
|
|
flabbyrabbit 500+ Club

Joined: 25 Jan 2007 Posts: 569 Location: UK
|
Posted: Mon Feb 19, 2007 11:37 am Post subject: Re: Open link in new window? |
|
|
There are two different ways of doing this that i know of, one is purely in the flash movie (which i could never actually get to work) or by having the code in the webpage which is then called by the flash movie.
Flash code:
| Code: |
//Insert into the GetUrl code for the button.
//'page.htm' is the target page to be opened
//'New Window' is the name for the new window
javascript:openNewWindow('page.htm','New Window', 'height=200,width=250,toolbar=no,scrollbars=no') |
HTML code:
| Code: |
//Insert inbetween the head tags
<script language="JavaScript">
function openNewWindow(URLtoOpen, windowName, windowFeatures) { newWindow=window.open(URLtoOpen, windowName, windowFeatures); }
</script> |
Flabby Rabbit
Jogos Gaming
P.S. A simple search in google for 'popups in flash' would have given you the answer instantely. |
|
| Back to top |
|
 |
|
Welcome to DEVPPL.com
You are not logged in, which means that you can't post in the forums. Click here to Register
If you are a current member here on DEVPPL, please login below:
|
|
|
|