swftools-common
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Swftools-common] swfcombine with master file and multiple swf's


From: Matthias Kramm
Subject: Re: [Swftools-common] swfcombine with master file and multiple swf's
Date: Wed, 13 Aug 2008 14:31:22 +0200
User-agent: Mutt/1.5.13 (2006-08-11)

On Wed, Aug 13, 2008 at 05:04:34AM -0700, Yurij Bilas <address@hidden> wrote:
> Is that something that can be done from python gfx module without invoking 
> swfcombine?

It's something that can be done with the python SWF module.

(gfx isn't able to combine arbitrary SWF files. (Usually only files it
 created itself))

Try something like:

    import SWF
    swf1 = SWF.load("file1.swf")
    swf2 = SWF.load("file2.swf")
    swf1.tags += swf2.tags
    swf1.save("combined.swf")

Greetings

Matthias






reply via email to

[Prev in Thread] Current Thread [Next in Thread]