User Guide
214 Objects
filter.hideObject
Availability
Flash 8.
Usage
filter.hideObject
Description
Property; a Boolean value that specifies whether the source image is hidden (true) or
displayed (
false). This property is defined for Filter objects with a value of
"dropShadowFilter" for the filter.name property.
Example
The following example sets the hideObject value to true 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].hideObject = true;
}
}
fl.getDocumentDOM().setFilters(myFilters);
filter.highlightColor
Availability
Flash 8.
Usage
filter.highlightColor
Description
Property; the color of the highlight, in one of the following formats:
■ A string in the format "#RRGGBB" or "#RRGGBBAA"
■ A hexadecimal number in the format 0xRRGGBB
■ An integer that represents the decimal equivalent of a hexadecimal number
This property is defined for Filter objects with a value of "bevelFilter" for the
filter.name property.