0

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

born2fr4g
  • 1,290
  • 4
  • 27
  • 38

1 Answers1

0

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));
}
Mattias
  • 3,907
  • 4
  • 28
  • 50