Script to find bottom of lowest field

hh hh at hyperhh.de
Mon Apr 3 17:58:05 EDT 2017


on mouseUp
  put 20+maxbottom()
end mouseUp

-- note: invisible or hidden fields are included
function maxbottom
  repeat with i=1 to the num of fields of this card
    put the bottom of fld i of this card into b[i]
  end repeat
  return max(b)
end maxbottom





More information about the use-livecode mailing list