scrollable-like navigation of images in a group-object

BNig niggemann at uni-wh.de
Tue Jan 19 11:46:07 EST 2010


Nicolas,
if you are using Rev 4.0 or greater you could use the graphics effects to
"hilite"

---------
-- code to set outerglow
on mouseUp
   put "normal" into tArray["blendmode"]
   put "218,41,24" into tArray["color"]
   put "gaussian" into tArray["filter"]
   put "255" into tArray["opacity"]
   put "255" into tArray["range"]
   put "8" into tArray["size"]
   put "255" into tArray["spread"]
   set the outerglow of image 1 to tArray
end mouseUp
--------------

--------------
-- code to remove outerglow
on mouseUp
   set the outerglow of image 1 to empty
end mouseUp
----------------

-----------------
-- code to get the outerglow parameters if changed by hand
on mouseUp
   put the outerglow of image 1 into temp
   combine temp using return and tab
   put temp into field 1
end mouseUp
-----------------

regards
Bernd
-- 
View this message in context: http://n4.nabble.com/scrollable-like-navigation-of-images-in-a-group-object-tp1017157p1017730.html
Sent from the Revolution - User mailing list archive at Nabble.com.



More information about the use-livecode mailing list