Re: [Swftools-common] Strange behavior of SWFCOMBINE

2008-08-13 Thread Matthias Kramm
On Fri, Aug 01, 2008 at 02:23:57PM +0530, Govindan Gopalan [EMAIL PROTECTED] wrote: When i use swfcombine to combine more than 500 files in a single command, the swfcombine throws the following error - Can't combine -c and -t. I can't reproduce this. If this issue is still outstanding,

Re: [Swftools-common] How to vertical or horizontal flip a SWF

2008-08-13 Thread Matthias Kramm
On Wed, Aug 06, 2008 at 05:55:30PM +0700, Cornelis Brouwers [EMAIL PROTECTED] wrote: Maybe someone knows how to vertical, horizontal flip and rotate a SWF file (it's preferred that the registering point stays the same). Flip horizontally: swfcombine -dw -100 file.swf -o file.swf Flip

Re: [Swftools-common] Swfstrings does not extract swedish characters

2008-08-13 Thread Matthias Kramm
On Fri, Aug 08, 2008 at 10:48:21AM +0200, Anders Östman [EMAIL PROTECTED] wrote: I'm trying to use swfstrings to extract text from a SWF-file that I've generated through pdf2swf. The PDF contains Swedish characters but the output from swfstrings does not contain any of the Swedish characters.

Re: [Swftools-common] rasterizing swf

2008-08-13 Thread Matthias Kramm
On Sat, Aug 09, 2008 at 04:40:28PM +0530, Bhupendra Singh [EMAIL PROTECTED] wrote: Is there any way to rasterize a swf? See item 19 on http://www.swftools.org/faq.html There's a swfrender utility in the CVS, which isn't finished yet, and will only work for *very* simple SWF files. (No

Re: [Swftools-common] combining swf files

2008-08-13 Thread Matthias Kramm
On Tue, Aug 12, 2008 at 10:04:27PM +0700, John Francis Lee [EMAIL PROTECTED] wrote: When I try to combine the two swfs : $ swfcombine ack16.swf ack1-15.swf WARNING Didn't find anything named ack1-15 in file. No substitutions will occur. Try swfcombine --cat ack16.swf ack1-15.swf

Re: [Swftools-common] resizing

2008-08-13 Thread Matthias Kramm
On Wed, Aug 06, 2008 at 07:55:44PM +0200, Daniel Caillibaud [EMAIL PROTECTED] wrote: I just see this interesting post. Since which swftools version is this implemented ? 0.8.1 I think. This option is a good one, but I don't really understand how to use it in case I want an image just at

Re: [Swftools-common] clickable swf from gif/png/jpg

2008-08-13 Thread Matthias Kramm
On Wed, Aug 13, 2008 at 01:23:57PM +0300, Romi Kuntsman [EMAIL PROTECTED] wrote: 1. How can I do it with GIFs? Convert the gif to a SWF first: gif2swf image.gif -o image.swf and then include the image as swf: .swf image image.swf 2. How do I define a background for the flash, to be

Re: [Swftools-common] clickable swf from gif/png/jpg

2008-08-13 Thread Romi Kuntsman
Also, embedding this swf from gif using swfc *doesn't* make it clickable. 2008/8/13, Romi Kuntsman [EMAIL PROTECTED]: 1. gif2swf doesn't handle the animated frames correctly, erasing the entire image instead of just changed places. see attached example. 2. backgroundcolor doesn't work, you

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

2008-08-13 Thread Yurij Bilas
Thanks, Matthias! Is that something that can be done from python gfx module without invoking swfcombine? Perhaps something like this? -- #!/usr/bin/python import gfx docs=[1.swf,2.swf,3.swf] swf = gfx.SWF() for f in docs doc = gfx.open(swf, f) page = doc.getPage(1)

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

2008-08-13 Thread Matthias Kramm
On Wed, Aug 13, 2008 at 05:04:34AM -0700, Yurij Bilas [EMAIL PROTECTED] 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

Re: [Swftools-common] combining swf files

2008-08-13 Thread Matthias Kramm
On Wed, Aug 13, 2008 at 07:25:08PM +0700, John Francis Lee [EMAIL PROTECTED] wrote: Now... I want to add sound. I'm sue I can make an .mp3 soundtrack file. How would I add it to the .swf? First, create a soundtrack using wav2swf, making sure it has the same framerate as the file you want to

Re: [Swftools-common] combining swf files

2008-08-13 Thread John Francis Lee
Matthias Kramm wrote: On Wed, Aug 13, 2008 at 07:25:08PM +0700, John Francis Lee [EMAIL PROTECTED] wrote: Now... I want to add sound. I'm sue I can make an .mp3 soundtrack file. How would I add it to the .swf? First, create a soundtrack using wav2swf, making sure it has the same framerate as

Re: [Swftools-common] Python parser

2008-08-13 Thread Michel Sabchuk
Hi Matthias, On Tue, Aug 12, 2008 at 05:57:06PM -0300, Michel Sabchuk [EMAIL PROTECTED] wrote: Is there a python interface to swfc command? Nope. Probably wouldn't be hard to put together, but nobody requested something like this so far :) Depending on how complicated the SWF you'd like

Re: [Swftools-common] Python parser

2008-08-13 Thread Matthias Kramm
On Wed, Aug 13, 2008 at 10:30:25AM -0300, Michel Sabchuk [EMAIL PROTECTED] wrote: I will take a look. The only documentation available is the source code, isn't it? Err *scratcheshead*... Yeah :) Python problems :D - I created the spec file dynamically and then run swfc over it. I