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.
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to