How to hyperlink webpages through a flash file

167 Views Asked by At

Hello everyone i am developing web application in net beans 7.0.1 and using MySQL as database and Apache tomcat as server. I am developing an jsp web pages. i have developed a flash file .swf file as my home page which i included in my jsp file. my .swf file is an movie clip. i have added some menus in that i want to link that menus to appropriate jsp files of my application. how can i do that? Please help me. I am a student doing final year project and don't have much knowledge about flash files . for editing flash files i am using Macromedia flash player 8.0

1

There are 1 best solutions below

3
On

If you are using ActionScript 2, use

getURL("urltoload", "target");

If you are using AS3, use

var url:String = "http://site";
var request:URLRequest = new URLRequest(url);
navigateToURL(request, 'target');

Where target can be _self, _blank, _top, etc.