|
From: arikira on 5 May 2008 01:54 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 5 May 2008 03:30 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 5 May 2008 06:20 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 5 May 2008 06:31 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()
|
Pages: 1 Prev: Problem with sub-mask Next: Getting MX 2004 to create a flash player 8 swf |