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

Newbie Help please!

Guest
Jul 30, 2009 Jul 30, 2009

Ive just made my first flash intro file which I want to open a web page after it has run to the end.

In Action script 2 it would be as simple as placing this command at the end of the timeline of my flash intro (so I'm told)

Can anyone please help with what I need to change it to to work in Action script 3.

//Goto Webpage Behavior

getURL("Halloween_09/Welcome.html","_self");

//End Behavior

Thankyou.

TOPICS
ActionScript
344
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

correct answers 1 Correct answer

Explorer , Jul 30, 2009 Jul 30, 2009

import flash.net.navigateToURL;

import flash.net.URLRequest;

navigateToURL(new URLRequest("Halloween_09/Welcome.html"),"_self");

Translate
Explorer ,
Jul 30, 2009 Jul 30, 2009

import flash.net.navigateToURL;

import flash.net.URLRequest;

navigateToURL(new URLRequest("Halloween_09/Welcome.html"),"_self");

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
Guest
Jul 30, 2009 Jul 30, 2009
LATEST

great!

thanks for that

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