hi steven,
perhaps all of the movieclips in "allsequences" are on different depths,
so that they may all be visible at the same time if you place it on the
stage. perhaps if you place them all on the same depth they could
possibly replace each other...
or else you might try to recreate "allsequences" with swfmill, which is
really easy (Mark's Guide):
<!-- import images to be displayed in the frames -->
<clip id="onState" import="images/on.png"/>
<clip id="offState" import="images/off.png"/>
<!-- create the movieclip -->
<library>
<clip id="onOff">
<frame name="on">
<place id="onState" depth="1"/>
<stop/>
</frame>
<frame name="off">
<place id="offState" depth="1"/>
</frame>
</clip>
</library>
try it. it really works like a charm.
cheers,
florian
ps: you only need to define one <library> per frame... ;)
Steven Shipton wrote:
> Hi, I’m a bit new to Swfmill and also Actionscript, can anyone please
> shed any light on this problem?
>
> I have a movieclip where each frame is another movieclip, created
> using Flash and in the library.
>
> In Flash, my first movieclip calls Engine.main which contains the
> following code:
>
> _root.stop();
>
> var seq:MovieClip = _root.attachMovie("allsequences","t1",1);
>
> seq._x = 100;
>
> seq._y = 100;
>
> seq.gotoAndStop(2);
>
> In Flash this plays the animation located at the 2^nd frame.
>
> When I export the movieclip “allsequences” as an swf and use swfmill
> to access it I use:
>
> <?xml version="1.0" encoding="iso-8859-1" ?>
>
> <movie width="640" height="480" framerate="12">
>
> <background color="#ffff00"/>
>
> <frame>
>
> <library>
>
> <clip id="allsequences" import="library/allsequences.swf"/>
>
> </library>
>
> <library>
>
> <clip id="splash" import="library/s.png"/>
>
> </library>
>
> </frame>
>
> </movie>
>
> But now when I recompile the same Engine.as (in Eclipse using Mtasc
> with Flashout), what I see is every animation sequence being played
> repeatedly.
>
> I’m really impressed with Swfmill and the whole FLAMES package so far
> anyway J
>
> Steven
>
>------------------------------------------------------------------------
>
>_______________________________________________
>swfmill mailing list
>[email protected]
>http://osflash.org/mailman/listinfo/swfmill_osflash.org
>
>
_______________________________________________
swfmill mailing list
[email protected]
http://osflash.org/mailman/listinfo/swfmill_osflash.org