on 1/21/02 5:34 PM, "Michael J. Lew" <[EMAIL PROTECTED]> wrote:

> How can I get the other buttons to hilight without requiring the user
> to click each individually?

Michael, try this in the card script

on mouseDown
  repeat while the mouse is down
    get the mouseLoc
    repeat with n = 1 to the number of btns
      if it is within the rect of btn n then
        set the hilite of btn n to true
      else
        set the hilite of btn n to false
      end if
    end repeat
  end repeat
end mouseDown

Cheers,  Philip



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

Reply via email to