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

link|improve this question

57% accept rate
1  
Have you just tried wrapping the swf in an achor tag? – Chris Nov 13 '11 at 1:39
I don't think so. You could try decompiling the swf, changing the link and then using the new swf. Obviously, this is to be done only if you have a license to modify the swf. :) – Pranav Hosangadi Nov 13 '11 at 7:23
How i can decompile the swf file in Flash Pro ? Is it even possible ? – born2fr4g Nov 14 '11 at 2:36
feedback

1 Answer

up vote 0 down vote accepted

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));
}
link|improve this answer
1  
Note that setting a clicktag will only work if the flash banner was made to support one. – grapefrukt Nov 13 '11 at 12:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.