Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

navigateToURL "_self" still opens new tab in Firefox

New Here ,
Sep 12, 2013 Sep 12, 2013

I have a flash intro to a website that I want to redirect to the homepage once the video is finished. My code is below. Everything works right except that it always opens a new tab when I view the website in firefox. It works fine in safari though... I'm pretty new to actionscript but the "_self" command should make the page open in the same tab, right? please let me know what I'm doing wrong!

intro.addEventListener(Event.COMPLETE,completeF);

function completeF(e:Event){

    var targetURL:URLRequest = new URLRequest("home.html");

    navigateToURL(targetURL, "_self");

}

TOPICS
ActionScript
1.0K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 12, 2013 Sep 12, 2013

what's intro?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Sep 13, 2013 Sep 13, 2013

intro is the the instance name of the FLV playback

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 13, 2013 Sep 13, 2013
LATEST

i don't see any problem using firefox 23.0.1 with fp 11.7.700.169.

the latest version of fp is 11.8.800.168.  which are you using: http://helpx.adobe.com/flash-player/kb/find-version-flash-player.html

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines