SitePoint Sponsor |
|
User Tag List
Results 1 to 4 of 4
Thread: Import .swf files to edit them
-
Dec 1, 2008, 07:14 #1
- Join Date
- Aug 2006
- Posts
- 92
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Import .swf files to edit them
Hi everyone,
I have several .swf files without the .fla's that i'd like to edit. Normally this isn't really possible, but the swf files are nothing but one row of keyframes without any actionscript or interactivity. It are just litteraly movies with sound saved as .swf because .flv wasn't really used back in the days they were created. What i want to do it to add a logo over the movie. Nothing more nothing less.
Is there any way i can open this files so i can add a logo on a new layer?
Or is there another (better) way?
Thanks in advance!
-
Dec 1, 2008, 09:27 #2
- Join Date
- Jul 2005
- Location
- USA
- Posts
- 291
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
you could use something like sothink decompiler to revert back to fla, or you could create a new fla with the logo that imports the existing swf at runtime
-
Dec 1, 2008, 10:19 #3
- Join Date
- Aug 2006
- Posts
- 92
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
That last option, how would i do that? Because i can't seem to import a swf.
-
Dec 1, 2008, 11:39 #4
- Join Date
- Jul 2005
- Location
- USA
- Posts
- 291
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
as2
Code:this.loadMovie("sound.swf");
Code:import flash.display.Loader; import flash.net.URLRequest; var loader:Loader = new Loader(); loader.load(new URLRequest("sound.swf")); addChild(loader);
Bookmarks