Hello! I was sick and this is why I went missing.
Also thanks Atilim for putting the features that I requested!
Anyway, I saw the movieclips, and the textures...
Animation in Gideros if I understand is movieclips requesting a certain region from a texture? With the regions ordered by a number?
Or I understood it wrong? The MovieClip examples I found tend to be quite... "disembodied" and not be attached to a example Bitmap object and Texture object.
Comments
Well what MovieClip accepts is a Bitmap objects, and a frame numbers during which Bitmap will be shown on the screen.
Inside Bitmap object you can use both texture for single graphic, or texture region from some larger texture (basically all you can do with Bitmap).
So MovieClip itself, has nothing to do with Textures, but rather with Sprite hierarchy, when which Sprite object will be added to render hierarchy.
Additionally you can tween the Sprite objects, inside MovieClip object.
Hope that helps
Here is a small example:
http://appcodingeasy.com/Gideros-Mobile/Animating-Box2d-objects
Single Bitmap in a MovieClip may have multiple frames, where it is shown.
and from 101 to 150 only image2.png are shown
also, you said that single bitmap on movieclip can have multiple frames... I don't understood that
As in, if you run your app at 60FPS, then 1 frame is 1/60 of a seccond or to make your Bitmap appear on the screen for 1 second, you need to assign span of 60 frames to it