You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Utility to stitch together .abc files into a SWF container.
With redshell you can create projectors by merging one file with the runtime,
you can merge either one .as file or one .abc file or one .swf file
swfmake is a small utility to cover the need of combining different .abc files
into one .swf, eg. you make a SWF of many ABC.
example:
Let's say you're building a testing library that you will compile into testlib.abc
and maybe by extension to testlib.swc
you want to make a command-line tool out of this library, a test binary
and if you need to use other ABC libraries, like a prettylib.abc to display things pretty
you cannot merge two .abc files into that binary but just one
so you would need to use swfmake to combine both testlib.abc and prettylib.abc into test.swf
then you can use something like projectormake to create your test binary out of test.swf
The text was updated successfully, but these errors were encountered:
With
redshell
you can create projectors by merging one file with the runtime,you can merge either one
.as
file or one.abc
file or one.swf
fileswfmake
is a small utility to cover the need of combining different.abc
filesinto one
.swf
, eg. you make a SWF of many ABC.example:
Let's say you're building a testing library that you will compile into
testlib.abc
and maybe by extension to
testlib.swc
you want to make a command-line tool out of this library, a
test
binaryand if you need to use other ABC libraries, like a
prettylib.abc
to display things prettyyou cannot merge two
.abc
files into that binary but just oneso you would need to use
swfmake
to combine bothtestlib.abc
andprettylib.abc
intotest.swf
then you can use something like
projectormake
to create yourtest
binary out oftest.swf
The text was updated successfully, but these errors were encountered: