Flex :: What's The Difference Manipulating Display Object Position
Oct 26, 2011
I have 2 possiblities. It looks like these are the same (or I'm wrong). Which is better and why?
var quest1:DisplayObject = FrameCanvas.baseCanvas.addChild(app.questionmark1); //
quest1.x = posX; //
quest1.y = posY; //
or
app.questionmark1.x = posX;
app.questionmark1.y = posY;
View 1 Replies
Similar Posts:
Apr 19, 2009
hey guys i have 6 moveable objects, what i want is to be able to click a button and a text field appears that displays the x and y co-oridinates off each object, is this possible and if so is there a way also i could have another button where the user inputs the numbers he wants from x and y and the objects will go to that posisition
View 1 Replies
Apr 27, 2010
I think i am lost with basics itself. What is the difference between these two. String object is an instance of String Class.
[Code]...
View 3 Replies
Feb 15, 2012
A display object container on the stage has some bitmap images of sizes 50x50 arranged in a order one by one. Now if i click on any of the thumbnail image (bitmap) the entire container should move and position itself so that, the bitmap image clicked is placed in the center of the stage.
View 1 Replies
Oct 2, 2009
Okay, so I am filling a TileList component with custom "ChordUnit" MovieClip objects, each of which is associate to a ChordUnit ClassI've established a way of determining if any of these objects are being moused over or clicked:
public function setChordBinSong(song:int, extend:Boolean):void {
dpChords = new DataProvider();
for (var i=0; i < activeChords.length; i++) {
[code].....
View 10 Replies
Oct 14, 2009
I have a task: I need to place about 100 sprites on one canvas (with prepared grid on it). I need to place them as invisible (circles) stones, on the board, and make visible only on mouseover. The problem I come across is following, I can't place those objects accurately into the nodes on the grid.
[Code]...
View 2 Replies
Feb 13, 2012
I understand that the spark framework has a video player and a video display. The difference being that video display doesn't have the video controls.I know that stage video is new in AIR3 and uses hardware acceleration to play videos.My question is, does videodisplay and videoplayer take advantage of stage video out of the box? Do I need to implement it another way?
View 2 Replies
Jun 17, 2010
I want to display checkbox or button at the same position based on user role. How can I do this. I cannot give x and y position same for both radio button and button as I will not know the location in my application. Is there any other way by which I can display only one component based on boolean value.
Sample code:
<mx:HBox x="272" y="93" width="300" borderThickness="2" borderColor="0x000000" borderStyle="solid">
<mx:CheckBox label="CheckBox" visible="{role}"/>
<mx:Button label="Button" visible="{!role}"/>
[Code].....
View 1 Replies
Sep 3, 2011
I want to know the difference between [object main timeline], [object Stage] and root in as3? I have read from the topic How stage, root, and MainTimeline Fit Together. But I didn't get clearly.
View 3 Replies
Jan 31, 2010
If I create a rectangle with 100px width and 100px height and then rotate it, the size of the element's "box" will have increased.With 45 rotation, the size becomes about 143x143 (from 100x100).Doing sometimes like cos(angleRad) * currentWidth seems to work for 45 rotation, but for other bigger angles it doesn't.At the moment I am doing this:
var currentRotation = object.rotation;
object.rotation = 0;
var normalizedWidth = object.width;
[code].....
View 4 Replies
Apr 15, 2010
On GridItem object there's a colIndex and on GridRow a rowIndex. But both are declared internal so I do not have acces on that information.
Is there another way to get the position of an object in a grid.
View 1 Replies
Dec 5, 2010
When I hover the mouse above the chart elements, it can show some standard hints. How can I show the tooltips without hovering?
View 1 Replies
Jul 14, 2011
how to make one object move to a specific point with animation in Actionscript ( not MXML code ) ? ( Flex 4.5 )
View 4 Replies
Oct 13, 2009
I am having problems accessing sub-children of my displayObject. Here is my code:private [code]but it's not working.
View 1 Replies
Jul 20, 2010
I'm currently transforming some objects to make them appear far away using a PerspectiveTransform. This works well, but I have no way of knowing where on the screen the object is displayed. The x and y coordinates are the coordinates of the object if it were at z=0. How can I compute the display coordinates of my component?
View 1 Replies
Apr 1, 2011
I am trying to save a component as a JPG file and I can't seem to get the BitmapData.draw() to give me the pixels I'm expecting and instead I am seeing a plain white rectangle when I open the resulting JPG file. I am first creating an object which contains an image and a caption (the MultigraphCanvas below) and when I display the object as a pop up it looks perfect -- however when I try to draw it as a bitmap and then encode and save it as a JPG I don't end up with the same image I can display on the screen. [code]...
View 3 Replies
May 3, 2010
For e.g.
function showIt():void {
something.visible = true;
}
function init():void {
[Code]...
In the above code, I want to measure the time taken to display st on screen.Is it enough to compute time2 - time1? Or should I put an event handler on render? Or some other way?
View 4 Replies
Jul 1, 2010
I have some MXML elements which i would like to remove and add to a parent element. Unfortunately I am constrained to removing the MXML object as this is handled by the custom component. So is there any way to reinstate a removed MXML element back into the display list?
View 1 Replies
Aug 5, 2010
I am basically trying to create a display object transformation manager which will allow me to scale/rotate objects. I am currently trying to figure out how to rotate an object so its corner follows the current x and y of the mouse. I always get confused on the math of things like this. I know how to listen for the events and everything, I just am unsure of how to calculate the amount of rotation to apply. I will probably be rotating via a Matrix so I can rotate the object around its center, rather than the upper-left corner of it. My question here is: how do I get values when I don't want them constrained, like scaleX and scaleY?
View 1 Replies
Nov 10, 2010
I am using swfLoader to load external flash movies in my flex/actionscript code. If the loaded swf was made for the newer flash player versions (I believe 9.0 or more) it loads as a flash.display.MovieClip object which has methods for play/pause and go to frame. However if the loaded swf was made for older flash player (I believe 6.0) then it loads as flash.display.av1movie which doesn't have methods for play/pause. Is there a way I can play / pause the av1movie from my flex code.
View 2 Replies
Oct 1, 2011
i have made a list control. i want to display the name of the objects in it in a text control box
the code i am using here is
public function add(event:MouseEvent):void
{
var str:String;
str = mylistcontrol.dataProvider.getItemAt(0).toString();
[Code]....
The problem with this code is i am using index value of 0. however i want to display the name of object on which i have clicked or which is highlighted.
View 1 Replies
Oct 20, 2011
Is it possible to create a display object in AS and take a screenshot of it as ByteArray or whatever without adding it to stage?
View 1 Replies
Dec 11, 2009
1) Is it true that every data type within as3 is a subtype of Object?
2) Is there any (ANY) difference between typing a variable or function argument or function return as Object versus *?
View 4 Replies
Jun 26, 2011
I am trying to build an MXML application with Flash Builder 4.5, and I am integrating an API that requires the root of a display object to be a MovieClip. Personally I think this is bad design but I have to go with it. The root object always seems to end up as the stage, because of course I have to add the object to the stage for it to be added to the display list. Is there some way that I can either change the stage type in an MXML application to a MovieClip or is there some way to force a MovieClip wrapper to become the root of a display object?
View 1 Replies
Aug 2, 2010
Is there any difference between those three declarations?
var x;
var y:Object;
var z:*;
Is there anything in AS that's not an Object?
View 4 Replies
Jan 22, 2011
What exactly is the difference between an object and a dictionary in Actionscript?
var obj:Object = new Object();
obj.something = "something";
var dict:Dictionary = new Dictionary();
dict.something = "something";
trace(obj.something, dict.something);
The trace statement seems identical...
View 3 Replies
Nov 4, 2010
What is exactly difference between casting with np: DisplayObject(myObj) or
myObj as DisplayObject
View 9 Replies
Dec 3, 2005
What the difference between an object and an array is?
View 14 Replies
Jan 9, 2010
I don't understand what is structurally different between a Value Object and a Class in ActionScript3. Can any Class be a VO if you decide to call it one?
View 1 Replies
Sep 20, 2010
When declaring a variable to have an open datatype, is there any difference, especially a performance difference, between typing a variable as a "wildcard" (I'm not sure of the official name for this) and typing a variable as an Object?
var myVar:*;
var myVar:Object;
View 2 Replies