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.
...
0
votes
2answers
79 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
2answers
55 views
Which would you prefer for function's input? Flex's DisplayObject or Flex's BitmapData?
I am in this situation where i need to select a Flex's type(image placeholder/image type/image container) for passing parameters in/out of different functions in an image editor. And, those ...
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
1answer
242 views
Flex: DisplayObject Singleton
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 think of making the Component ...
0
votes
3answers
707 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);
...