Flex :: What Is The Difference Between Height And MeasuredHeight
Aug 10, 2009what the difference between height and measuredHeight is in flex?
After reading a few articles on the adobe site, I'm still non the wiser as to when to use which.
what the difference between height and measuredHeight is in flex?
After reading a few articles on the adobe site, I'm still non the wiser as to when to use which.
i want to know what is difference between width and scaleX or height and ScaleY ..? i search that in internet but i cudnt found good explanation
View 2 RepliesI want to constrain the height of a flex component to the height of the browser viewport.
The component's children are populated from a database table using a repeater, and are basic checkboxes. There are enough of them that the flex app ends up being about twice the height of the screen, which means some of the rest of the layout goes crappy on me. How can I force the component that contains these to limit itself to the size of the viewport?
How to set a Spark List height to the height of its content?Tried this:
var lastRow:IVisualElement =
myList.dataGroup.getElementAt(myList.dataGroup.numElements - 1);
myList.height = lastRow.y + lastRow.height;
It works in case of a single item, but lastRow is null in case of more items.
By default the height of an Flex Accordion container is the height of the initially selected child. I'd like to be able to set the height to the tallest child so that no resizing or scrolling is necessary when other children are selected. I do not want to use the resizeToContent property. I want the size of the container to stay constant no matter what child is selected.
My current thought is to extend the accordion class setting the creation policy to "all" and then override the measure function to loop through all the children and find the tallest one and use that for the height. This seems a little kludgy though, so I'd like to know if there is a better approach. Ultimately my question is: is there a way to set the size of an accordion container such that the container never resizes and scoll bars are never necessary to display any of the children?
I am going to embed a Flex app on an html page. The html page is already going to have a scroll bar to scroll up and down. The contents of the flex app are very dynamic, and I don't want to have an extra scroll bar when there is already one. So is there a way to make the height of the swf match the height of the contents of the swf?
View 2 RepliesI have a VBox with fixed width and height, and I add image objects with fixed width and height. I find that if my objects' height exceed the VBox's height, it doesn't show the object. I tried validateNow(), but it doesn't work. The object is added, but VBox just doesn't display it, so it leaves a blank with a same height as my other object.
[Code]...
what is a difference between in flex Builder and Flex SDK?
View 5 RepliesJust want to clear a very basic doubt am having for quite some time.
Is LCDS and FDS the same
What differences are there betwee Flash CS4 and Flex, besides the GUI of Flash?
View 3 Replieswhat is the difference between skin and CSS??Why it is better to use skin over CSS in Flex.
View 2 RepliesI'm new to Flex and wondering what the difference is between these two ActionScript implementations of the bit.ly API: [URL] One thing I noticed is that one comes in .as files and the other's an .swc file. Is one better than the other for learning Flex?
View 1 RepliesWhat is the Difference between ItemRenderer and ItemEditor?And When ItemRenderer is initializing and loading?
View 1 RepliesWhat is the difference between a UIComponent and a Sprite in Flex.
View 1 Replieswhat's the difference between MXML and Actionscript3 when we need to use MXML ??
View 2 Replieswhat is difference between swfLoader(load application) and ModuleLoader(load module)?
View 1 RepliesWhen state is changed, we can define the new properties for the new state overidding the properties of the base state.
But, I had a doubt. What is the difference between using setProperty() and removeChild() in Flex ?
Take the following case.
Suppose there are 2 Vbox inside the application container. When the state is changed by some event, I need only 1 VBox in the appln container.
(a) Should I set setProperty for that particular VBox of width and height to 0 ? or (b) Should I remove the VBox from the new state by using removeChild() property ?
In flex what is the difference between rollover and mouseover?
it occurs first rollover, then mouseover,then mouseout, then rollout. when these events most suitable?
what is the Difference between validateProperties() and invalidateProperties() ?
View 2 RepliesPossible Duplicate: What is Adobe Flex? Is it just Flash II?tell me in layman's term as to whats the difference between flex and flash objects. i know that programmatically there are differences and there are difference in the extension but then why do some flex programs have a .swf extension since the extension for flex is swc ?
View 1 RepliesIn my flex project i used one option like Link button . If i like it will be open new page contain more information and components . Which container is suitable one ? Where is used viewstack and stages ?
View 2 RepliesWhat is the main difference Between ViewStack Container and Canvas?
View 1 RepliesDifference between the Array and ArrayCollection in Flex?
View 2 Repliesthe difference between target and currenttarget in flex?
View 3 RepliesIf I skin a button and use the AS3 graphice.clear() and graphics.lineTo and beginFill to create a shape, the button overlaps other items in the container.
When I use the and mxml to create the same shape, the button is neatly positioned inside the container.
I am trying to find a way to compare two text files through Flex and show that diff in the UI. Is there a util or a way to do that?
View 1 RepliesI didn't get the difference between those two event.What is the difference between them ?
View 3 RepliesNeed Detailed explanation on the difference between skinning, coloring and themes.
View 1 RepliesI need to use multiple fonts in my Flex 4 application, so I compile them into swf and load at runtime. I have single .ttf file for each font. When I dont load font's swf file at runtime, flex uses copy of this font installed on my system, and it works fine - I can switch between regular, bold and italic faces of the font correctly.However,when I load fonts from swfs, setting their style to bold or italic makes no effect. I tried different ways of compiling swfs (css using mxmlc compiler, fontswf utility,.as files with [embed] tags), but nothing worked. When compiling using css it sometimes throw errors that font face is not supported, and it seems that some fonts are available only in bold-italic style only or bold style only.I use cff fonts, load them using etcs.ru.utils.FontLoader utility. Fonts are loaded correctly, I check this with Font.enumerate fonts.So is there any way to embed these .ttf files with all styles available?
View 1 RepliesWhat is the difference between these three:
this.parent;
this.parentApplication;
this.parentDocument;
[code].....