Converting MovieClip into animated GIF image is very easy in Flash Professional IDE. Just follow below few steps to convert MovieClip into animated GIF image. Step 1: Import a movieclip (that is need to be converted) from your library into….. Read More >>>>
Continue Reading »Action Script 3
setRGB in Action script 3 Flash Professional or Flex Builder
The setRGB() method is used in action script 2 to set color properties to movie clips, but that method is no longer present action script 3. setRGB() functionality achieved in action script 3 using colorTransform class import flash.geom.ColorTransform Here is….. Read More >>>>
Continue Reading »Align Text in the TextField using ActionScript 3 in Flash Professional
Align Text in the TextField in ActionScript 3 little different than using ActionScript 2. Here is the list of samples to align text in the TextField using ActionScript 3. var txt:TextField= new TextField; txt.text=”happy morning”; txt.autoSize = TextFieldAutoSize.LEFT; addChild(txt);….. Read More >>>>
Continue Reading »TextFormatting in ActionScript 3 (setTextFormat)
The setTextFormat() method in actionScript 2 used to set the font properties to the text fields. example: var txt_format:TextFormat = new TextFormat();//TextFormat class creates new instances of it. this.createTextField(“txt_field”, this.getNextHighestDepth(), 0, 0, 180, 80);//creates new text field txt_format.color = 0x00FF00;….. Read More >>>>
Continue Reading »