Tagged Questions

7
votes
1answer
4k views

Draw text on shape in ActionScript 3

Is there any way to draw text in a DisplayObject or Shape using only ActionScript? The only way I can find on the web is by creating a TextField, but I can't add a TF to a DisplayObject or Shape. ...
4
votes
2answers
3k views

as3 mouseEnabled still a problem for me

A couple years in now, there's still something about mouseEnabled I'm not getting. I have a Sprite (for example here "Sky", that contains many objects, one of them is a Cloud, which I do not want to ...
4
votes
1answer
2k views

AS3 using a Matrix to “scale” an object from its “center”

Here's something I'm trying to figure out concerning display objects in ActionScript3 / Flex. Let's say you have a display object who's registration point is in the top left and you want to scale it ...
3
votes
1answer
64 views

How to Cast the DisplayObject into MediaElement in as3?

Is it possible to Cast the DisplayObject into MediaElement.Am trying to add the DisplayObject into the MediaContainer, but I got the following error: -1067: Implicit coercion of a value of type ...
3
votes
3answers
238 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
4answers
180 views

Prevent height change of a DisplayObject

Is there a way to prevent the automatic change of the height property of a DisplayObject? It automatically resizes to match content, though my swf file is 32 pixels height. The code below can show ...
2
votes
3answers
935 views

Removing Parent in AS3: Does this free the memory used by all the children?

I'm making a rather large flash project and so I'm concerned about memory usage. At the end of each section of the application I remove the overarching parent element that holds the content. Although ...
2
votes
5answers
848 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
81 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
1answer
75 views

what's the most resources efficient way to take a screenshot of display object in as3

What's the most resources efficient way to take a screenshot of display object in as3? This is the code I am currently using: public static function ...
1
vote
3answers
223 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
1answer
303 views

Moving movieclips across the stage on FrameEnter

I'm making an image gallery and I want to have a bunch of thumbnails on the bottom of the screen that smoothly slide from side to side when the mouse moves. I'm working with a custom class for the ...
1
vote
3answers
386 views

How do I access all of the children of a DisplayObject programatically?

How do access all of the children of a DisplayObject using code? (I'm looking for something like movieclip.children) I'm using this in two cases: 1) To loop through and reposition all of the ...
1
vote
1answer
211 views

Actionscript rotation on 2 axis different from 1 axis

I have 2 DisplayObject, one containing the other like the code below: var sprite1:Sprite = new Sprite(); sprite1.addChild(loader1); // assume that I have load picture on to loader1 ...
1
vote
1answer
848 views

AS3: Point for display object x, y?

Right now I have a point that I have to update with the x and y of a display object to use with the hitTestPoint object; is there any way I can get a point from a display object without having to make ...
1
vote
3answers
662 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
1answer
19 views

How to deal with Error #2025: The supplied DisplayObject must be a child of the caller

private var _hud:HUDc = new HUDc(); private function someMethod():void { if(stage.contains(_hud)) { stage.removeChild(_hud); ...
0
votes
0answers
93 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
71 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
167 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
4answers
154 views

Is there a function or property like css-zIndex in actionscript?

I want to control which DisplayObject is displayed on the front or on the back. I can control that with zIndex style in css. How can I do that in as?
0
votes
2answers
84 views

How to manage positions of DisplayObjects in actionscript?

I use the following code to set position of a DisplayObject to center. obj.x = (screen_width - obj.width) / 2; or obj.x = (parentObj.width - obj.width) / 2; And I use the following code to show ...
0
votes
4answers
464 views

AS3 stage.addChild / stage.removeChild << Must be child of caller

If im usin function to add a mc to the stage like so: var myChild:MC= new MC(); function somefunc() { stage.addChild(myMC) } but when I try to remove the mc by: stage.removeChild(myMC) I get ...
0
votes
2answers
88 views

Easy way to get list of ancestor Classes for the object in Action Script 3?

I would like to check if object has a DisplayObject as one of it's ancestors and perform some operations on it if it has. Any quick and easy way to do this?
0
votes
2answers
177 views

Removing array-objects from DisplayList

I'm working on a game for the iPhone using flash, and since memory is crucial i want to clean up displayObjects not needed. All the objects i need to delete is MovieClips taken from some array to ...
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
2answers
421 views

Actionscript 3 remove child at point

hi i'm new to AS3 and i was wondering what is the best way to remove a child at a point. i tried Holder.removeChild(Holder.getObjectsUnderPoint(new Point(exampleX, exampleY))[0]); however that ...
0
votes
3answers
278 views

Joining Sprites together in AS3?

So created a Sprite to which I add other Sprites which are game tiles. Each tile is 60 x 60 px big. In result I've the Sprite with about 200 childs (those tiles). When I try to startDrag() the ...
0
votes
2answers
195 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
1answer
131 views

Looping DisplayObject animation

I have multiple object doing random movement with random speed. i wanted to repeat the animation. I tried to use onComplete to restart each object once the animation end, but how could I specifically ...
0
votes
1answer
764 views

Limit display object's drag coordinates in AS3

how can i reference a display object's coordinates according to it's parent object or stage from within the class that creates the object? essentially when i create a new sprite object from a custom ...
0
votes
2answers
5k views

ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller error - AS

I have this code snippet inside a function that checks if an object exists on stage and removes it: public function closeContent(e:MouseEvent):void { removeChild(txt); ...
0
votes
1answer
472 views

Facebook data to DisplayObject in AS3

Is it possible to convert facebook data (ex. user_pic) into a DisplayObject so I can be easier to manipulate? What I m trying to do is when users do FacebookConnect in my site to let them have the ...
0
votes
1answer
604 views

AS3: Why does datatype automatically change from TextField to DisplayObject on its own?

What's happening in this simple piece of AS3 code? Why does my object change from TextField to the more generic DisplayObject? public class Menu extends MovieClip { private var ...
0
votes
2answers
368 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
1k views

Getting a Specific Object from a Loader in Actionscript 3.0

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.display.Loader; import ...
0
votes
2answers
142 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
720 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); ...