I played with this approach and came up with the script below for a print
button.
So far, it has printed any size card SCALED to the width of a Letter sized
page.
~Roger

> Try this:
>
>   print this card from 288,6 to 632,466 into 0,0,344,460
>
> --
> Jeanne A. E. DeVoto ~ [EMAIL PROTECTED]
> http://www.runrev.com/
> Runtime Revolution Limited - Power to the Developer!

# PRINT CARD TO FIT PAGE WIDTH
on mouseUp
  put the rectangle of this card into myRectangle
  set itemDelimiter to ","
  put item 1 of myRectangle & itemDelimiter into myXYstartpoint
  put item 2 of myRectangle after myXYstartpoint
  put item 3 of myRectangle & itemDelimiter into myXYendpoint
  put item 4 of myRectangle after myXYendpoint
  print this card from myXYstartpoint to myXYendpoint into 10,10,600,800
end mouseUp


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

Reply via email to