Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

:: fade in on rollover action ::

Status
Not open for further replies.

MaTs4d

Technical User
Feb 13, 2002
48
US
hey there
is there any way to , say, I have two icons.. released and rollover, I would like to have the rollover icon FADE IN when its being rolled over..

is there any way to do this? maybe scripting??
thanks a million


Matt
 
Yes, you can use the blendlevel sprite property:

on mouseWithin
sprite(x).blendLevel=sprite(x).blendLevel+1
end

Something like this should do
or make a film loop of the sprite animating the opacity up to 100% then use:

on mouseWithin
sprite(x).member="FadedupIcon"
end

on mouseLeave
sprite(x).member="NormalIcon"
end
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top