越瞭解你在做什麼,你就會做得越好。越來越深入靈活
我想深入Flex。我做了一些簡單的事件處理,並且你越瞭解你在做什麼,你就會做得越好。
但我有我的大問題:
什麼是編譯器做什麼?! MXML文件會發生什麼?
可以說,我們有一個簡單的代碼(代碼blogflexexamples):
<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2007/12/27/changing-the-flex-colorpicker-controls-swatch-panel-background-color/ -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="vertical"
verticalAlign="top"
backgroundColor="white">
<mx:Style>
.myColorPicker {
swatchPanelStyleName: myCustomSwatchPanelStyleName;
}
.myCustomSwatchPanelStyleName {
backgroundColor: haloBlue;
}
</mx:Style>
<mx:Script>
<![CDATA[
import mx.events.ColorPickerEvent;
private function backgroundColor_change(evt:ColorPickerEvent):void {
var cssObj:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".myCustomSwatchPanelStyleName");
cssObj.setStyle("backgroundColor", evt.color);
colorPicker.open();
}
]]>
</mx:Script>
<mx:ApplicationControlBar dock="true">
<mx:Form styleName="plain">
<mx:FormItem label="backgroundColor:">
<mx:ColorPicker change="backgroundColor_change(event);" />
</mx:FormItem>
</mx:Form>
</mx:ApplicationControlBar>
<mx:ColorPicker id="colorPicker"
styleName="myColorPicker"
editable="false" />
</mx:Application>
這並生成一個ActionScript文件? ,如果它:我可以看到.as文件(如C++中的預處理器)?
你從哪裏得到這些信息? 任何預訂建議? – 2010-01-01 22:58:42
查看Adobe Developer Connection - http://www.adobe.com/devnet/flex/quickstart/coding_with_mxml_and_actionscript/ – mkurek 2010-01-01 23:11:54