MACROMEDIA FLASH 8-EXTENDING FLASH Manual page 213

Extending flash
Table of Contents

Advertisement

Example
The following example sets the contrast value to -15.5 for the Adjust Color filters on the
selected object(s):
var myFilters = fl.getDocumentDOM().getFilters();
for(i=0; i < myFilters.length; i++){
if(myFilters[i].name == 'adjustColorFilter'){
myFilters[i].contrast = -15.5;
}
}
fl.getDocumentDOM().setFilters(myFilters);
filter.distance
Availability
Flash 8.
Usage
filter.distance
Description
Property; a float value that specifies the distance between the filter's effect and an object, in
pixels. Acceptable values are from -255 to 255. This property is defined for Filter objects with
a value of
"bevelFilter"
"gradientGlowFilter"
Example
The following example sets the distance to 10 pixels for the Drop Shadow filters on the
selected object(s):
var myFilters = fl.getDocumentDOM().getFilters();
for(i=0; i < myFilters.length; i++){
if(myFilters[i].name == 'dropShadowFilter'){
myFilters[i].distance = 10;
}
}
fl.getDocumentDOM().setFilters(myFilters);
See also
document.setFilterProperty()
,
"dropShadowFilter"
for the
filter.name
,
"gradientBevelFilter"
property.
, or
Filter object
213

Advertisement

Table of Contents
loading

This manual is also suitable for:

Flash 8

Table of Contents