I'm trying to convert a stack to a PDF, in a standalone application. Unfortunately standAlone application use different (and ugly) fonts. I use:
Code: Select all
on printCards
put "./ProvvigioniAgenti.pdf" into tFile
open printing to pdf tFile
go to card 1
print this stack
close printing
end printCards
on OpenStack
crearereport #this delete all cards and recreate new ones
#printer settings
set the printMargins to "0,0,0,0"
set the printPaperSize to "700,930"
set the formatForPrinting of this stack to true #it's already true, however I put this too
printCards
close this stack
end OpenStack

I develop on WinXp, but StandAlone application will work on Win7, can be this the problem?