Hi,we have a pay-in slip on each page of an invoice. The amounts on that
pay-in slip should be stars (like *********) and only on the last page
of the invoice the pay-in amount should be printed.I tried the following
already:Formcalc on event initilize:var curpage = $layout.page ( ref ( $
) )var totpages = $layout.pageCount()if ( curpage ne totpages )
then$.rawValue = "*******"EndifResult: The stars were printed on both
pages of the invoice.Then I tried the following coding:Javascript on
event r...