Adobe Flex Interview Questions and Answers
Here you can find Adobe Flex Interview Questions and Answers.
Why Adobe Flex Interview Questions and Answers Required?
In this Adobe Flex Interview Questions and Answers section you can learn and practice Adobe Flex Interview Questions and Answers to improve your skills in order to face
technical inerview by IT companies. By Practicing these interview questions, you can easily crack any Adobe Flex interview.
Where can I get Adobe Flex Interview Questions and Answers?
AllIndiaExams provides you lots Adobe Flex Interview Questions and Answers with proper explanation. Fully solved examples with detailed answer description. All students,
freshers can download Adobe Flex Interview Questions and Answers as PDF files and eBooks.
How to solve these Adobe Flex Interview Questions and Answers?
You no need to worry, we have given lots of Adobe Flex Interview Questions and Answers and also we have provided lots of FAQ's to quickly answer the questions in the
Adobe Flex technical interview.
Adobe Flex Interview Questions and Answers
Life cycle of flex appln/component?
Pre initialize : The Appln has been initiated but has not yet created any child components.
Initialize :The Appln has created child components but has not yet laid out those components.
Creation Complete : The Appln has been completely initiated and has laid out all components
Adobe Flex Interview Questions and Answers
Types of binding?
using curly braces ({})
using Action script expressions in curly braces
using the tag in mxml
using bindings in Actionscript (Binding utils)
Adobe Flex Interview Questions and Answers
Event Bubbling?
The mechanism through which event objs are passed from the objs that generates an event up through the containership hierarchy.
Adobe Flex Interview Questions and Answers
Different ways of using style sheets?
using external style sheets
using local style definitions
using the style manager class
using the set style() getstyle() methods
using inline styles loading style sheets at runtime
Adobe Flex Interview Questions and Answers
How can u use 2 styles at the same time?
Using external style sheets and inline style commands.
Adobe Flex Interview Questions and Answers
How will u call java method from flex?
Using Remote object.
Adobe Flex Interview Questions and Answers
What are the config files used for connecting java and flex?
data- management-config.xml
messaging-config.xml
proxy-config.xml
remoting-config.xml
services-config.xml
Adobe Flex Interview Questions and Answers
How can u call Javascript from MXML?
IExternalInterface.call()
Adobe Flex Interview Questions and Answers
How can u access a variable defined in 1 MXML file to another?
Create 1 obj of mxml file into another mxml file.
Adobe Flex Interview Questions and Answers
How do u generate random numbers within a given limit with Action script?
randNum:Number = Math.random()*100;