ActionScript :: Flex - Difference Between These Two Bit.ly API Implementations?
Dec 16, 2009
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 Replies
Similar Posts:
Jun 10, 2010
Why is encryption algorithm may give different results in AS3 and PHP? In AS3 I use library from [URL].And in PHP I use RC4 Cipher.
View 3 Replies
Jun 7, 2010
what is a difference between in flex Builder and Flex SDK?
View 5 Replies
Dec 23, 2009
Just want to clear a very basic doubt am having for quite some time.
Is LCDS and FDS the same
View 1 Replies
Feb 5, 2010
What differences are there betwee Flash CS4 and Flex, besides the GUI of Flash?
View 3 Replies
Mar 12, 2010
what is the difference between skin and CSS??Why it is better to use skin over CSS in Flex.
View 2 Replies
Aug 10, 2009
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.
View 1 Replies
Dec 24, 2009
What is the Difference between ItemRenderer and ItemEditor?And When ItemRenderer is initializing and loading?
View 1 Replies
May 23, 2010
What is the difference between a UIComponent and a Sprite in Flex.
View 1 Replies
Sep 4, 2010
what's the difference between MXML and Actionscript3 when we need to use MXML ??
View 2 Replies
Feb 18, 2011
what is difference between swfLoader(load application) and ModuleLoader(load module)?
View 1 Replies
Jun 15, 2011
When 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 ?
View 1 Replies
Aug 16, 2011
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?
View 2 Replies
Aug 25, 2011
what is the Difference between validateProperties() and invalidateProperties() ?
View 2 Replies
Jan 18, 2012
Possible 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 Replies
Jul 21, 2009
In 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 Replies
Dec 9, 2009
What is the main difference Between ViewStack Container and Canvas?
View 1 Replies
Feb 24, 2010
Difference between the Array and ArrayCollection in Flex?
View 2 Replies
Feb 25, 2010
the difference between target and currenttarget in flex?
View 3 Replies
Sep 28, 2010
If 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.
View 2 Replies
May 3, 2011
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 Replies
May 16, 2011
I didn't get the difference between those two event.What is the difference between them ?
View 3 Replies
Jun 24, 2011
Need Detailed explanation on the difference between skinning, coloring and themes.
View 1 Replies
Jun 30, 2011
I 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 Replies
Jan 25, 2012
What is the difference between these three:
this.parent;
this.parentApplication;
this.parentDocument;
[code].....
View 2 Replies
Jun 11, 2010
what is difference between Flex Builder and Flash Builder 4?
-Flex Builder 4 is a latest version?
-Flex builder 3 is a older version?
View 1 Replies
May 14, 2010
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.
View 1 Replies
Jul 14, 2010
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.
View 1 Replies
Aug 16, 2011
To optimize my application dictionary is a better option or arraycollection where both satisfy my needs.
View 1 Replies
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