mfstuart wrote:
> 
> SparkOut,
> The 'focusedObject' is the key script element for this to work.
> Thanx for the scripts. It works exactly how I want it to. 
> 
> ---------
> on mouseLeave
>    if the focusedObject is the long id of me then
>       set the borderColor of me to "#000000"
>    else
>       set the borderColor of me to "#ffffff"
>    end if
> end mouseLeave
> ---------
> 
> Regards,
> Mark stuart
> 
Glad it worked. Of course there is redundancy in the mouseLeave handler
above - you could always reduce it to:

on mouseLeave
  if the focusedObject is not the long id of me then
    set the borderColor of me to "#ffffff"
  end if
end mouseLeave

as in theory the borderColor should already be set to black anyway.
-- 
View this message in context: 
http://www.nabble.com/conditionally-formatting-a-field-tp21067108p21083662.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