for an image loaded as an object, there is the property "Icons & Borders" as, for example, an object button (Hover Icon, etc)?
I would like to change the image when the mouse is over it.
at the time I tried to add a drop shadow so:
Code: Select all
on mouseEnter -- visualizza l'ombra finchè il mouse è sopra l'oggetto
set the dropShadow of image "PeperoneVerde" to tDropshadowPropertiesArray
set the dropShadow ["color"] of me to "0,0,0"
set the dropShadow ["opacity"] of me to "255"
end mouseEnter
on mouseLeave -- se il testo non è visibile azzera l'ombra quando il mouse
-- esce dall'oggetto
if visible of field "fieldVerde" = false then
set the dropShadow of image "PeperoneVerde" to tDropshadowPropertiesArray
set the dropShadowdropShadow [opacity] of me to "0"
end if
end mouseLeave
franco