- Shuffle
Toggle OnToggle Off
- Alphabetize
Toggle OnToggle Off
- Front First
Toggle OnToggle Off
- Both Sides
Toggle OnToggle Off
Front
How to study your flashcards.
Right/Left arrow keys: Navigate between flashcards.right arrow keyleft arrow key
Up/Down arrow keys: Flip the card between the front and back.down keyup key
H key: Show hint (3rd side).h key
![]()
PLAY BUTTON
![]()
PLAY BUTTON
![]()
14 Cards in this Set
- Front
- Back
|
Using of StyleManager
|
StyleManager.getStyleDeclaration("Button").setStyle("fontSize",15);
|
|
Use the setStyle() and getStyle() methods
|
myButton.setStyle("fontSize",15);
|
|
Local style definitions
|
<mx:Style>
.myFontStyle { fontSize: 15; color: #9933FF; } </mx:Style> |
|
inline style
|
<mx:Button id="myButton" color="0x9933FF" fontSize="15" label="Click Me"/>
|
|
Setting global styles
|
StyleManager.getStyleDeclaration("global").setStyle("fontStyle","italic");
|
|
Creating style declarations with the StyleManager
|
myDynStyle = new CSSStyleDeclaration('myDynStyle');
StyleManager.setStyleDeclaration("Button", myDynStyle, true); |
|
Loading style sheets at run time
|
StyleManager.loadStyleDeclarations("../assets/BasicStyles.swf")
|
|
Unloading style sheets
|
StyleManager.unloadStyleDeclarations("../assets/LabelStyles.swf", true);
|
|
available filters
|
BlurFilter
GlowFilter Dropshadow Bevelfilter ColorMatrixFilter ConvolutionFilter DisplacementMapFilter EffectTargetFilter GradientBevelFilter GradientGlowFilter |
|
use filters
|
DisplayObject.filters.push(filter) or
<mx:Label text="DropShadowFilter" fontSize="20"> <mx:filters> <mx:DropShadowFilter distance="10" angle="45"/> </mx:filters> </mx:Label> |
|
available Blendmodes
|
NORMAL
LAYER MULTIPLY SCREEN LIGHTEN DARKEN DIFFERENCE ADD SUBTRACT INVERT ALPHA ERASE OVERLAY HARDLIGHT |
|
Use states
|
<mx:states>
<mx:State name="expanded"> <mx:AddChild> <mx:VBox width="100%" x="200"> </mx:VBox> </mx:AddChild> <mx:SetProperty target="{add}" name="visible" value="true" /> </mx:State> </mx:states> |
|
changes and overrides for states
|
<mx:SetProperty target="{button1}" name="enabled" value="false"/>
<mx:SetStyle target="{button1}" name="color" value="0xAAAAAA"/> <mx:AddChild relativeTo="{v1}"> <mx:Button label="New Button"/> </mx:AddChild> <mx:SetEventHandler target="{button1}" name="click" handler="newClickHandler()"/> |
|
available effects
|
Zoom
Blur Fade Glow Iris Shrink Rotate |