-
Authors
Tags
openFrameworks Links
Media and Data Resources
Other Links
- Adobe Flash Developer Center
- Arduino
- C4ios
- Cinder
- Cocos2D
- Corona SDK
- Flight 404 (Robert Hodgin, Cinder)
- Form+Code – code examples
- Kinect Hacks
- libpd
- Max/MSP/Jitter
- Multimedia Development (Flash)
- NodeBox
- OpenSceneGraph
- PhoneGap
- Pocode
- Pure Data
- Quartz Composer
- Software Studies (Processing, HTML5/JS)
- Sparrow Framework
- TestFlight
- TouchDesigner
- Unity
- vvvv
- Web Media Development (JavaScript)
- Xcode
Meta
Tag Archives: movieclip
Differences between Movie Clip, Sprite and Shape
AS3 introduced a number of new DisplayObject classes, including Sprite and Shape. Unlike MovieClip, they do not have timelines of their own. Shape is a more lightweight type of object that has limited support for interactivity, and cannot have children. … Continue reading
Useful MovieClip-child tricks in AS3
Some useful MovieClip / Display Object tricks in ActionScript 3: 1. Send to front / back To set an MC on top of everything else: setChildIndex(yourMC, numChildren-1); To put an MC below everything else: setChildIndex(yourMC, 0); http://developer.yahoo.com/flash/articles/display-list.html 2. Remove all … Continue reading