PDA

View Full Version : Turning a flash page into an HTML page..


toria
08-20-2009, 04:27 AM
How do you make a flash intro page that transitions into a HTML page? I am learning how to do flash websites but I do not know how to do a lot of things as of yet, so I want to start off slow and try to make a flash page transition or link to an HTML page. :confused:

Thanks for your help!!!

raydowe
08-20-2009, 02:21 PM
button_mc.addEventListener(MouseEvent.CLICK, linkClicked);

function linkClicked(e:MouseEvent):void
{
navigateToURL(new URLRequest("http://google.com"), "_self");
}