It seems that Rev's normal cursor handling doesn't switch between an arrow and a hand for hypertext. Here is a way I came up with.

--
-- mouseEnter/Leave
-- cursor changing for hypertext fields. does not conflict with other cursors like i-beam over
-- editable fields. put this in a card or stack to handle all hypertext fields.
--
on mouseEnter
if the textStyle of the target = "link" then
set the cursor to hand
lock cursor
end if
pass mouseEnter
end mouseEnter


on mouseLeave
   if the textStyle of the target = "link" then
    set the cursor to the defaultCursor
    unlock cursor
  end if
  pass mouseLeave
end mouseLeave


Alex Rice, Software Developer Architectural Research Consultants, Inc. http://ARCplanning.com

_______________________________________________
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to