swftools-common
[Top][All Lists]
Advanced

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

Re: [Swftools-common] Importing SWF into Flash 7


From: phonosynthese
Subject: Re: [Swftools-common] Importing SWF into Flash 7
Date: Sun, 04 Sep 2005 18:28:27 +0100
User-agent: Mozilla Thunderbird 1.0.2 (Windows/20050317)

hi chris,

thanks for the advice! didn't know that flash has problems
importing swf's which come from apps different than flash
itself. unfortunately, the .sc script doesn't help.
i've already tried an .sc script just like yours but the
swf does not import correctly. but it can be shown in
browsers and the stand alone flash player.

flash is weird and that's no news..

thanks anyway
cheers

jan


Chris Flowers schrieb:
----- Original Message ----- From: "phonosynthese" <address@hidden>
To: <address@hidden>
Sent: Saturday, September 03, 2005 6:13 PM
Subject: [Swftools-common] Importing SWF into Flash 7



hi there,

first, i'd like to thank the developer for writing
swftools! it fills up a huge gap which macromedia
obviously left open!

unfortunately i encountered some problems:

i converted a bunch of transparent pngs to swfs
successfully (png2swf). now i'd like to combine
these swfs into one single swf (it's an animation
sequence). now the issue:

when importing swf files created by swfcombine or
swfc into flash (pro mx 2004) the images show up
in the library but the corresponding movieclip
doesn't show the images in its timeline although
key frames are set.

i've tried several options of swfcombine and to
do a 'manual' combine script with swfc but with
no success. are the swf files 100% flash compatible
in means of reimporting them into the flash ide?

thanks in advance for any hints
jan





_______________________________________________
Swftools-common mailing list
address@hidden
http://lists.nongnu.org/mailman/listinfo/swftools-common



Flash has a long history of poor swf importing.
I usual write an .sc script file like the one below. This example
would not be the best if you need it to stream because I embed
all the swfs upfront before placing them on the timeline. You could
alter it to suite your needs them compile it with swfc.exe

# # frames.sc # .flash bbox=800x533 fps=30 version=6 compress background=#FFFFFF # embed all frame swfs to script
 .swf s1 "frame1.swf"
 .swf s2 "frame2.swf"
 .swf s3 "frame3.swf"
 .swf s4 "frame4.swf"
 .swf s5 "frame5.swf"

# put each swf into a frame
.frame 1
 .put s1 0 0
.frame 2
 .del s1
 .put s2 0 0
.frame 3
 .del s2
 .put s3 0 0
.frame 4
 .del s3
 .put s4 0 0
.frame 5
 .del s4
 .put s5 0 0
 .action: stop(); .end

.end








reply via email to

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