|
You can use the item function to retrieve an effect either by
name or by number. This function is the default function of the FX
object. For example:
Set theFX = Server.CreateObject("ImageEffects.FX")
Set theEffect1 = theFX.Item( 1 )
Set theEffect2 = theFX.Item( "Median" )
Set theEffect3 = theFX( 2 )
Set theEffect4 = theFX( "Despeckle" )
|