I finally had time to try out all the suggestions i got to shrink text 
automatically
so that it fits into a field of a fixed with.

Saharas method (which is the same as Andre G. suggested) works
best for my purpose. I like the repeat loop which makes the font smaller
but only to a certain size :-)

I am very happy with this solution thanks Sarah and oll the others
for your help.

Cheers
Rolf


Here is the script again:

on mouseUp
  -- shrink font until it fits, down to a minimum of (original size minus 5 <- 
see at the repeat loop)
  set the textSize of fld "fldMailAddress" to 14
  put 14 into tStartSize
  repeat 5 times
     if the formattedWidth of fld "fldMailAddress" > the width of fld 
"fldMailAddress" then
        subtract 1 from tStartSize
        set the textSize of fld "fldMailAddress" to tStartSize
     else
        exit repeat
     end if
  end repeat
  show fld "fldMailAddress"
end mouseUp_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to