Tagged Questions

3
votes
3answers
197 views

take snapshot of display object visible area in flash

I have camera input app in flash (AS3) and I draw some graphics over it. I want to take the image snapshot of the stage visible area but only the video an graphics I draw over video. I want to exclude ...
2
votes
5answers
833 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 controls as well as ...
1
vote
1answer
63 views

actionscript bitmap draw with transform.matrix and rectangle.bounds

I am trying to get a partial bitmap from an object but I am getting different values from: object.transform.matrix.tx and object.transform.matrix.ty v/s object.getBounds(object.parent).x and ...
1
vote
3answers
182 views

AS3 add a border to a displayobject

I know how to draw a rectangle and add it to a DisplayObjectContainer, but do you see a simpler method to directly add a border to a DisplayObject? DisplayObject don't seem to have addChild(), so I ...
1
vote
3answers
615 views

Why does obj.getBounds().height give a larger height than obj.height?

I'm new to Flash and ActionScript, but managing quite nicely. One thing that is continuously getting in my way are the width and height properties of DisplayObject(Container)s. I'm finally starting to ...
1
vote
2answers
2k 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 identify MovieClip as ...
1
vote
3answers
1k 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 content: Sprite = new ...
0
votes
0answers
52 views

AS3: Changing z order of DisplayObjectContainer children using setChildIndex causes duplication of MC

I have a similar problem to the question addressed here: Switching of depths causes duplication of MC Here is the relevant code: var widget:DisplayObjectContainer = ...
0
votes
2answers
63 views

replacing a display object with a new display object in Flash

I'm creating a Flash movie that loads some XML containing details of some text and a image URL, that needs to replace a existing MovieClip in a Flash movie. Is there a way in Flash to replace a ...
0
votes
1answer
131 views

Making Starling FrameWork to work with Classes that uses native DisplayObject

I'm trying to use Greensock LoaderMax on a Starling Framework project, but since Starling have a lots of its own class, how I can make it work with other classes that is using the native class? Exp: ...
0
votes
1answer
107 views

Am I able to hide children display object if the exceed the parent display object height?

Hey I building a plugin for a player, and I create a few sprites. The first spirte is a background, it's a black color alpha at .6. Then I add n children to it, depending on what video users are ...
0
votes
1answer
236 views

Capture Flash / Flex redraw DisplayObject event?

I'm trying to capture the redraw event for some MovieClip / Sprite objects that are in a Scroll area. Ideally, should be able to capture the event when Flash Player itself redraws the objects as can ...
0
votes
2answers
184 views

Is there a way to check if DisplayObject A is a descendant of DisplayObject B?

I would like to be able to quickly check if a given DisplayObject is a descendant (not in the inheritance sense - ie. child, grandchild, great-grandchild, great-great-grandchild, etc.) of another ...
0
votes
0answers
265 views

ActionScript 3 instance path issue

I'm using Flash CS4 and the following ActionScript 3 code: import fl.containers.ScrollPane; // var sp:ScrollPane = new ScrollPane(); sp.name="scroller"; // sp.setSize(320, 240); sp.move(10, 10); ...
0
votes
2answers
351 views

Any AS3 alternatives to Colin Moock's approach to visible width/height of DisplayObject?

Has anyone got any alternatives to what Colin Moock has coded to GET VISIBLE WIDTH/HEIGHT OF A DISPLAY OBJECT in ActionScript 3? That esp. in perspective of DisplayObjects that have 3D transforms ...
0
votes
2answers
140 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 sprite that sits on ...
0
votes
3answers
705 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); ...