EasyManua.ls Logo

MACROMEDIA FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE - Highlightalpha (Bevelfilter.highlightalpha Property)

MACROMEDIA FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE
1378 pages
Print Icon
To Next Page IconTo Next Page
To Next Page IconTo Next Page
To Previous Page IconTo Previous Page
To Previous Page IconTo Previous Page
Loading...
BevelFilter (flash.filters.BevelFilter) 283
highlightAlpha (BevelFilter.highlightAlpha property)
public highlightAlpha : Number
The alpha transparency value of the highlight color. The value is specified as a normalized
value from 0 to 1. For example, .25 sets a transparency value of 25%. The default value is 1.
Availability: ActionScript 1.0; Flash Player 8
Example
The following example changes the
highlightAlpha property on the existing MovieClip
instance (
rect) when a user clicks it:
import flash.filters.BevelFilter;
var rect:MovieClip = createBevelRectangle("BevelHighlightAlpha");
rect.onRelease = function() {
var filter:BevelFilter = this.filters[0];
filter.highlightAlpha = .2;
this.filters = new Array(filter);
}
function createBevelRectangle(name:String):MovieClip {
var w:Number = 100;
var h:Number = 100;
var bgColor:Number = 0x00CC00;
var rect:MovieClip = this.createEmptyMovieClip(name,
this.getNextHighestDepth());
rect.beginFill(bgColor);
rect.lineTo(w, 0);
rect.lineTo(w, h);
rect.lineTo(0, h);
rect.lineTo(0, 0);
rect._x = 20;
rect._y = 20;
var filter:BevelFilter = new BevelFilter(5, 45, 0xFFFF00, .8, 0x0000FF,
.8, 20, 20, 1, 3, "inner", false);
rect.filters = new Array(filter);
return rect;
}

Table of Contents

Related product manuals