Is it possible to export cast member(swf file) from dir file??
Is it possible to export cast member(swf file) from dir file??
(OP)
Hallo there,
I have a problem, I am currently trying to correct some mistakes done by another person, and unfortunately I don't have all the source code I need, in this case .fla... Moreover I am new to director... Now, what is left for me to do, is somehow export swf from dir file, and then decompile swf to fla... Plz I need help urgently!
Thanks in advance...
I have a problem, I am currently trying to correct some mistakes done by another person, and unfortunately I don't have all the source code I need, in this case .fla... Moreover I am new to director... Now, what is left for me to do, is somehow export swf from dir file, and then decompile swf to fla... Plz I need help urgently!
Thanks in advance...
RE: Is it possible to export cast member(swf file) from dir file??
use Swifty Xena
http://w
this tools will decompile EXE to DXR, and also it will bring swf members out of dxr files or dir files!, then use SWF Decompiler to get the FLA files,
another way! :
i understand that a DXR file should be locked and prevented from changes. But I really need to modify the contents of this file by loading it again as a DIR file. I've grab this script somewhere which will perform the above requirements. However this script contains some error.
SCRIPT:
===============================
Here is the Lingo script that should be put in frame one of a projector:
on exitframe
set dxrFile=fileio(mnew,"?read","dxr")
if objectp(dxrFile) then
set newpath=dxrFile(mfilename)
dxrFile(mdispose)
go frame 1 of movie dxrFile -- must be running from a projector
saveMovie "unDXR.dir"
end if
end
This is supposed to give you a normal director file called "unDXR.dir" with
empty script castmembers.
RE: Is it possible to export cast member(swf file) from dir file??