Difference Between Flex And Flash CS4?
Feb 5, 2010What differences are there betwee Flash CS4 and Flex, besides the GUI of Flash?
View 3 RepliesWhat differences are there betwee Flash CS4 and Flex, besides the GUI of Flash?
View 3 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 difference between Flex Builder and Flash Builder 4?
-Flex Builder 4 is a latest version?
-Flex builder 3 is a older version?
1- why we need skins for every elements if we can style our application using CSS file. for example in theme Graphite in SDK's Sample consists of both CSS+.fla and skins---.mxml files.
2- How we can create a whole theme with out coding CSS.
what's the difference between using Flex or Flash CS3 to develop AS3 projects?
View 8 RepliesWhat's the difference between Flash and Flex? I know Flash is more of an animation tool and Flex is used to build web applications but after visiting many Flex built sites, I can't really tell the difference. It seems like whatever you could do in one, you could do in the other. There are many school for flash and flex training Online schools.
View 1 RepliesDoes MXML get compiled down to as3 and then converted to flash bytecode? Also, is there a significant performance penalty to compiling mxml vs compiling as3?
View 3 Replieswhat 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 is the difference between skin and CSS??Why it is better to use skin over CSS in Flex.
View 2 Replieswhat 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'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 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].....
We use 3 types of services in Flex; HTTP, Remoting and WebServices and would like to increase my understanding about their use cases. As far as I understand,
Remoting can be used only in homogeneous environment like Flex-RubyOnRails (through RubyAMF) while Webservices can be used in Heterogenous environment using SOAP protocol. Remoting has advantage of native object support that web services don't have. That also means no parsing/extraction will be required in former. Now, talking of HTTP services, they dont support complex operations or parameter passing and can be used for only basic operations.