RE: [Flashcoders] creating MovieClip frames via code?

2007-04-12 Thread Smeets, Ben
Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of dr.ache Sent: donderdag 12 april 2007 0:49 To: [EMAIL PROTECTED] Subject: Re: [Flashcoders] creating MovieClip frames via code? try the following. load your grid bitmap (jpg) into an mc and mask it with a movieclip with exactly

RE: [Flashcoders] creating MovieClip frames via code?

2007-04-12 Thread Smeets, Ben
: RE: [Flashcoders] creating MovieClip frames via code? You can use e.g. the technique described below in conjunction with the onEnterFrame method of the movieclip object. It is not possible to create frames through AS, but it is possible to react on a frame change (a 1 framed mc also animates

Re: [Flashcoders] creating MovieClip frames via code?

2007-04-12 Thread Newsdee
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Smeets, Ben Sent: donderdag 12 april 2007 11:51 To: [EMAIL PROTECTED] Subject: RE: [Flashcoders] creating MovieClip frames via code? You can use e.g. the technique described below in conjunction

[Flashcoders] creating MovieClip frames via code?

2007-04-11 Thread Newsdee
Hi all, I would like to import sprites using a single source image... in other words, take an image containing my animation in a grid, cut it up in single bitmaps, and create an animation with it. I have most of the code done, but I'm not sure how on the best way to go in order to animate the

Re: [Flashcoders] creating MovieClip frames via code?

2007-04-11 Thread dr.ache
try the following. load your grid bitmap (jpg) into an mc and mask it with a movieclip with exactly the dimensions your single sprite on your grid bitmap has. now let the movieclip under your mask change position in a way that your wanted animation bitmap looks through. got it? Newsdee