Search code examples
actionscript-3flasheditfla

How to edit swf file link without fla file?


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/).


Solution

  • 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));
    }