Tag Archives: ActionScript

  • Designer Effects for Flex

    Posted on January 15, 2010 by in ActionScript, Blog, Flex, Flex Note

    Efflex is a good site providing a number of custom effects for Flex. http://www.efflex.org/orgefflexmxviewstackeffects/ Here is the Effect Explorer by Efflex. You can preview all the effects and try to customize the effect options. http://www.efflex.org/EfflexExplorer.html

    2 Comments. Continue Reading...
  • Flex MultiLine FormItem

    Posted on June 18, 2009 by in ActionScript, Blog, Flex, Flex Note

    This is a very good control to break the form item label into multiple lines. I found it from Google by Nick bilyk. http://www.nbilyk.com/multiline-formitem-label http://www.nbilyk.com/examples/betterFormItemExample/index.html

    3 Comments. Continue Reading...
  • Multiline TabNavigator #2

    Posted on April 20, 2009 by in ActionScript, Blog, Flex, Flex Note

    MultiLineTab.as package controls { import flash.display.DisplayObject; import flash.text.TextLineMetrics; import mx.controls.tabBarClasses.Tab; import mx.core.IFlexDisplayObject; import mx.core.UITextField; import mx.core.mx_internal; use namespace mx_internal; public class MultiLineTab extends Tab { public function MultiLineTab() { super(); } override protected function createChildren():void { if (!textField) { textField = new UITextField(); textField.styleName = this; addChild(DisplayObject(textField)); } super.createChildren(); textField.multiline = true; textField.wordWrap = true; [...]

    6 Comments. Continue Reading...
  • Corelib

    Posted on April 16, 2009 by in ActionScript, Blog, Flex, Flex Note

    CORELIB有一堆UTILITIES … 有陣時都幾好用~~ http://code.google.com/p/as3corelib/ http://weblogs.macromedia.com/as_libraries/docs/corelib/com/adobe/utils/package-detail.html

    No Comments. Continue Reading...
  • ActionScript 2 External Interface

    Posted on April 8, 2009 by in ActionScript, Blog, Flash

    前幾日打算寫個flash button 點知office得flash 8, 要用actionscript 2 … 真係幾挑戰..因為自己未用過8 + as 2 當初諗住好似好簡單既野.. 用external interface call js 點知攪左好耐都唔得.. 最後搵到個site 先幫到我.. 要將 ExternalInterface.call(); 改做 flash.external.ExternalInterface.call(); 先用到.. 但係我真係唔明 =.=  唔通佢有兩個api 都係叫 ExternalInterface ?!  算啦…應該都唔會點用as 2 架啦.. Reference: http://www.psyked.co.uk/actionscript/externalinterface-not-working-in-firefox.htm

    No Comments. Continue Reading...