User manual MACROMEDIA FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE REFERENCE

Lastmanuals offers a socially driven service of sharing, storing and searching manuals related to use of hardware and software : user guide, owner's manual, quick start guide, technical datasheets... DON'T FORGET : ALWAYS READ THE USER GUIDE BEFORE BUYING !!!

If this document matches the user guide, instructions manual or user manual, feature sets, schematics you are looking for, download it now. Lastmanuals provides you a fast and easy access to the user manual MACROMEDIA FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE REFERENCE. We hope that this MACROMEDIA FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE REFERENCE user guide will be useful to you.

Lastmanuals help download the user guide MACROMEDIA FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE REFERENCE.


Mode d'emploi MACROMEDIA FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE REFERENCE
Download
Manual abstract: user guide MACROMEDIA FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE REFERENCE

Detailed instructions for use are in the User's Guide.

[. . . ] ActionScript 2. 0 Language Reference Trademarks 1 Step RoboPDF, ActiveEdit, ActiveTest, Authorware, Blue Sky Software, Blue Sky, Breeze, Breezo, Captivate, Central, ColdFusion, Contribute, Database Explorer, Director, Dreamweaver, Fireworks, Flash, FlashCast, FlashHelp, Flash Lite, FlashPaper, Flash Video Encoder, Flex, Flex Builder, Fontographer, FreeHand, Generator, HomeSite, JRun, MacRecorder, Macromedia, MXML, RoboEngine, RoboHelp, RoboInfo, RoboPDF, Roundtrip, Roundtrip HTML, Shockwave, SoundEdit, Studio MX, UltraDev, and WebHelp are either registered trademarks or trademarks of Macromedia, Inc. and may be registered in the United States or in other jurisdictions including internationally. Other product names, logos, designs, titles, words, or phrases mentioned within this publication may be trademarks, service marks, or trade names of Macromedia, Inc. or other entities and may be registered in certain jurisdictions including internationally. [. . . ] The first element in the colors array corresponds to the first element in the alphas array and in the ratios array, and so on. Think of the gradient glow filter as a glow that emanates from the center of the object (if the distance value is set to 0), with gradients that are stripes of color blending into each other. The first color in the colors array is the outermost color of the glow. The last color is the innermost color of the glow. Each value in the ratios array sets the position of the color on the radius of the gradient, where 0 represents the outermost point of the gradient and 255 represents the innermost point of the gradient. The ratio values can range from 0 to 255 pixels, in increasing value; for example [0, 64, 128, 200, 255]. Values from 0 to 128 appear on the outer edges of the glow. Values from 129 to 255 appear in the inner area of the glow. Depending on the ratio values of the colors and the type value of the filter, the filter colors might be obscured by the object to which the filter is applied. GradientGlowFilter (flash. filters. GradientGlowFilter) 647 In the following code and image, a filter is applied to a black circle movie clip, with the type set to "full". For instructional purposes, the first color in the colors array, pink, has an alpha value of 1, so it shows against the white document background. (In practice, you probably would not want the first color showing in this way. ) Note the last color in the array, yellow, obscures the black circle to which the filter is applied: var colors = [0xFFCCFF, 0x0000FF, 0x9900FF, 0xFF0000, 0xFFFF00]; var alphas = [1, 1, 1, 1, 1]; var ratios = [0, 32, 64, 128, 225]; var myGGF = new GradientGlowFilter(0, 0, colors, alphas, ratios, 50, 50, 1, 2, "full", false); To achieve a seamless effect with your document background when you set the type value to "outer" or "full", set the first color in the array to the same color as the document background, or set the alpha value of the first color to 0; either technique makes the filter blend in with the background. 648 ActionScript classes If you make two small changes in the code, the effect of the glow can be very different, even with the same ratios and colors arrays. Set the alpha value of the first color in the array to 0, to make the filter blend in with the document's white background; and set the type property to "outer" or "inner". Observe the results, as shown in the following images. Keep in mind that the spread of the colors in the gradient varies based on the values of the blurX, blurY, strength, and quality properties, as well as the ratios values. Availability: ActionScript 1. 0; Flash Player 8 Example The following example changes the ratios property on an existing movie clip when a user clicks it. import flash. filters. GradientGlowFilter; var mc:MovieClip = createGradientGlowRectangle("GlowRatios"); mc. onRelease = function() { var filter:GradientGlowFilter = this. filters[0]; var ratios:Array = filter. ratios; ratios. shift(); ratios. unshift(40); filter. ratios = ratios; this. filters = new Array(filter); } GradientGlowFilter (flash. filters. GradientGlowFilter) 649 function createGradientGlowRectangle(name:String):MovieClip { var art:MovieClip = this. createEmptyMovieClip(name, this. getNextHighestDepth()); var w:Number = 100; var h:Number = 100; art. beginFill(0x003366); art. lineTo(w, 0); art. lineTo(w, h); art. lineTo(0, h); art. lineTo(0, 0); art. _x = 20; art. _y = 20; var colors:Array = [0xFFFFFF, 0xFF0000, 0xFFFF00, 0x00CCFF]; var alphas:Array = [0, 1, 1, 1]; var ratios:Array = [0, 63, 126, 255]; var filter:GradientGlowFilter = new GradientGlowFilter(0, 45, colors, alphas, ratios, 55, 55, 2. 5, 2, "outer", false); var filterArray:Array = new Array(); filterArray. push(filter); art. filters = filterArray; return art; } See also colors (GradientGlowFilter. colors property), alphas (GradientGlowFilter. alphas property), beginGradientFill (MovieClip. beginGradientFill method) strength (GradientGlowFilter. strength property) public strength : Number The strength of the imprint or spread. The higher the value, the more color is imprinted and the stronger the contrast between the glow and the background. A value of 0 means that the filter is not applied. Availability: ActionScript 1. 0; Flash Player 8 650 ActionScript classes Example The following example changes the strength property on an existing movie clip when a user clicks it. import flash. filters. GradientGlowFilter; var mc:MovieClip = createGradientGlowRectangle("GlowStrength"); mc. onRelease = function() { var filter:GradientGlowFilter = this. filters[0]; filter. strength = 1; this. filters = new Array(filter); } function createGradientGlowRectangle(name:String):MovieClip { var art:MovieClip = this. createEmptyMovieClip(name, this. getNextHighestDepth()); var w:Number = 100; var h:Number = 100; art. beginFill(0x003366); art. lineTo(w, 0); art. lineTo(w, h); art. lineTo(0, h); art. lineTo(0, 0); art. _x = 20; art. _y = 20; var colors:Array = [0xFFFFFF, 0xFF0000, 0xFFFF00, 0x00CCFF]; var alphas:Array = [0, 1, 1, 1]; var ratios:Array = [0, 63, 126, 255]; var filter:GradientGlowFilter = new GradientGlowFilter(0, 45, colors, alphas, ratios, 55, 55, 2. 5, 2, "outer", false); var filterArray:Array = new Array(); filterArray. push(filter); art. filters = filterArray; return art; } type (GradientGlowFilter. type property) public type : String The placement of the filter effect. Possible values are: "outer": "inner": "full": Glow on the outer edge of the object Glow on the inner edge of the object; the default Glow on top of the object The default value is "inner". Availability: ActionScript 1. 0; Flash Player 8 GradientGlowFilter (flash. filters. GradientGlowFilter) 651 Example The following example changes the type property on an existing movie clip when a user clicks it. import flash. filters. GradientGlowFilter; var mc:MovieClip = createGradientGlowRectangle("GlowType"); mc. onRelease = function() { var filter:GradientGlowFilter = this. filters[0]; filter. type = "inner"; filter. strength = 1; this. filters = new Array(filter); } function createGradientGlowRectangle(name:String):MovieClip { var art:MovieClip = this. createEmptyMovieClip(name, this. getNextHighestDepth()); var w:Number = 100; var h:Number = 100; art. beginFill(0x003366); art. lineTo(w, 0); art. lineTo(w, h); art. lineTo(0, h); art. lineTo(0, 0); art. _x = 20; art. _y = 20; var colors:Array = [0xFFFFFF, 0xFF0000, 0xFFFF00, 0x00CCFF]; var alphas:Array = [0, 1, 1, 1]; var ratios:Array = [0, 63, 126, 255]; var filter:GradientGlowFilter = new GradientGlowFilter(0, 45, colors, alphas, ratios, 55, 55, 2. 5, 2, "outer", false); var filterArray:Array = new Array(); filterArray. push(filter); art. filters = filterArray; return art; } 652 ActionScript classes IME (System. IME) Object | +-System. IME public class IME extends Object The IME class lets you directly manipulate the operating system's input method editor (IME) in the Flash Player application that is running on a client computer. You can determine whether an IME is installed, whether or not the IME is enabled, and which IME is enabled. You can disable or enable the IME in the Flash Player application, and you can perform other limited functions, depending on the operating system. Input method editors let users type non-ASCII text characters in Asian languages such as Chinese, Japanese, and Korean. [. . . ] This function was deprecated in favor of _quality. 1354 Deprecated ActionScript Deprecated Property summary Modifiers Property Name Button. _highquality Description Deprecated since Flash Player 7. This property was deprecated in favor of Button. _quality. MovieClip. _highqualit Deprecated since Flash Player 7. This property was y deprecated in favor of MovieClip. _quality. TextField. _highquality Deprecated since Flash Player 7. [. . . ]

DISCLAIMER TO DOWNLOAD THE USER GUIDE MACROMEDIA FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE REFERENCE

Lastmanuals offers a socially driven service of sharing, storing and searching manuals related to use of hardware and software : user guide, owner's manual, quick start guide, technical datasheets...
In any way can't Lastmanuals be held responsible if the document you are looking for is not available, incomplete, in a different language than yours, or if the model or language do not match the description. Lastmanuals, for instance, does not offer a translation service.

Click on "Download the user manual" at the end of this Contract if you accept its terms, the downloading of the manual MACROMEDIA FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE REFERENCE will begin.

Search for a user manual

 

Copyright © 2015 - LastManuals - All Rights Reserved.
Designated trademarks and brands are the property of their respective owners.

flag