From: arikira on
I can't quite figure out how to do this... Seems simple enough. All I want to
do is create a link within my .swf file that will take me to a new web page in
the same browser window (without opening a new window or tab) -- essentially
the way a normal link works in html.

Thanks!



From: rafiqelmansy on
Hi,
The code that is used to make your Flash go to an HTML page is:
getURL("yourpage.html");

this can be added to the frame, when the SWF player reach, it goes to that
page. But if you want to added it to button when the user click on, use the
following link:

on (release) {
getURL("yourpage.html");
}

From: CipiClaudiu on
Hi,

here's the secret:
getURL("url") - to open on the same page
getURL("url", "_blank") - to open on another page

*url = http://www.sitename.com
or
*url=http://www.sitename.com//index.php (.html, etc)

From: Travis on
On May 5, 1:54 am, "arikira" <webforumsu...(a)macromedia.com> wrote:
> I can't quite figure out how to do this... Seems simple enough. All I want to
> do is create a link within my .swf file that will take me to a new web page in
> the same browser window (without opening a new window or tab) -- essentially
> the way a normal link works in html.

Depends on the version you are using. But it will be eithe rgetURL()
or NavigateToURL()