Tagged Questions

2
votes
5answers
112 views

Getting error when using the removeChild method

Happy Pre-Halloween everyone :) My issue today is a DisplayObject error I'm getting when remove a child object. I have code that will launch(addChild) a video container and video …
0
votes
2answers
91 views

Identify MovieClip in AS3 among DisplayObjectContainer

in ActionScript 3, if I loop through the children of a movie clip, it will return a DisplayObjectContainer, which is a list of DisplayObjects. However, the AS3 typeof cannot iden …
0
votes
2answers
248 views

Getting a Specific Object from a Loader in Actionscript 3.0

Hello. I am learning ActionScript 3.0 and I am seeing this paradigm often: package util { import flash.display.Sprite; import flash.display.Bitmap; import flash.displ …
0
votes
2answers
46 views

Workarounds for setting the size of an empty display object?

I want to create an invisible drawing surface that sits over top of an image. This drawing surface would be in charge of taking mouse input and passing the coordinates along to a …
0
votes
1answer
110 views

Flex: DisplayObject Singleton

Hi, I want to display an Flex component in several different places through out the application. And it should be the same instance of the component, but not the copies. So I thin …
0
votes
3answers
123 views

Is there a way to export a DisplayObject’s vector data?

Flex gives the ability to export a display object as a bitmap as follows: var bitmapDataBuffer:BitmapData = new BitmapData ( displayObject.width, displayObject.height, false); …
1
vote
3answers
404 views

Multiple viewports of the same DisplayObject

Is it possible to have multiple view of the same display object? (e.g. same-computer multi-player game using split screen) The sample code that failed to work follows: var co …