How to edit swf file link without fla file?

2.6k Views Asked by At

How to edit flash file (.swf) without .fla file ? I got banner in swf file and a need to make something like that:

when user click on that banner he will be redirected to an url (for example http://www.google.com/).

1

There are 1 best solutions below

1
On BEST ANSWER

Take a look at clicktag. http://www.flashmagazine.com/news/detail/solving_clicktag_in_flash9/

private function onClick(e : MouseEvent) : void
{
    navigateToURL(new URLRequest(stage.loaderInfo.parameters.clickTAG));
}