--
-- Ken Loge - http://diginoodles.com
-- Change the cursor for visual feedback.
-- Attach this to a sprite where a rollover effect
-- is desired.
--

on mouseEnter me
  cursor 280 -- switch to finger cursor
end

on mouseLeave me
  cursor -1 -- switch to normal arrow cursor
end