Nathan Huesken schrieb:
Bump!

No one can give me any answer to this?

On Sun, Dec 14, 2008 at 01:38:51AM +0100, Nathan Huesken wrote:
Hello everybody,

I wonder, is there more documentation that this site: 
http://osflash.org/doku.php?id=swfmill

I wonder if things like the following  possible with swfmill:
- Create a MovieClip that runs in loop.
- Create a MovieClip, which displaies just one image, but rotates it slowly.

OK, for the second I could create a MovieClip with a lot of frames, but can it 
not be done with only 2 Frames and let Flash make the interpolation?

Thanks!
Nathan


_______________________________________________
swfmill mailing list
[email protected]
http://osflash.org/mailman/listinfo/swfmill_osflash.org

Hi,
was curious and a simple loop can be done this way
<?xml version="1.0" encoding="iso-8859-1" ?>
<movie width="242" height="91" framerate="1" >
<background color="#ffffff"/>
<frame>
  <library>
      <clip id="image1" import="frame1.jpg" />
  </library>
  <place id="image1" name="myImage1" x="0" y="0" depth="1" />
</frame>
<frame>
  <library>
      <clip id="image2" import="frame2.jpg" />
  </library>
  <place id="image2" name="myImage2" x="0" y="0" depth="2" />
</frame>
</movie>
you can see in action at http://go2ghana.net/flashDevel/swf.php?movie=loop.swf

regarding actionscript meanwhile I use haXe.

Cordially,
Axel
_______________________________________________
swfmill mailing list
[email protected]
http://osflash.org/mailman/listinfo/swfmill_osflash.org

Reply via email to