• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/5

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

5 Cards in this Set

  • Front
  • Back
What is the Spark namespace that's declared at the top of all new Flex 4 applications?
xmlns:s="library://ns.adobe.com/flex/spark"
Which property of the RichText component is intended to get or set rich text content at runtime?

a) content
b) textFlow
b) textFlow

content: This property is intended for use in MXML at compile time; to get or set rich text content at runtime, please use the textFlow property instead. (content property is an instance of a textFlow object)

textFlow: The TextFlow representing the rich text displayed by this component. A TextFlow is the most important class in the Text Layout Framework (TLF). It is the root of a tree of FlowElements representing rich text content.
True or False: Flex applications are stateful
True: Flex apps are stateful; that is, they have the capability to remember data persistently for the duration of the user’s session in a way that classic Web applications usually don’t.
What are the 2 data collection classes in Flex?
ArrayCollection and ArrayList
What are the events of the spark Application component?
applicationComplete - Dispatched after the Application has been initialized, processed by the LayoutManager, and attached to the display list.

error - Dispatched when an HTTPService call fails.

uncaughtError - Dispatched when an uncaught error is caught by the Global Exception Handler