Programmin Paradigms
b Michae Swaine

Listin One
on mouseEnter
  -- Keep the framing field in place behind this button.
  -- (Assumes button and field are both in background.)

  lock screen
  put the short name of me into myName
  put the rect of me into myRect
   -- Size and position the field to frame the button
  set the left of field myName to -2 + item 1 of myRect
  set the top of field myName to -2 + item 2 of myRect
  set the right of field myName to 2 + item 3 of myRect
  set the bottom of field myName to 2 + item 4 of myRect
   -- Make sure the field is behind the button
  repeat while the partnumber of field myName > the partnumber of me
    select field tool
    click at the loc of field myName
    doMenu "Send farther"
  end repeat
  colorme
  unlock screen

end mouseEnter


