The PDF list is a service provided by PDFzone.com | http://www.pdfzone.com
__________________________________________________________________

Hi Mark, try this javascript. It will put a field on the bottom centre of
the page with the page number in it.

Cheers Dave.

================================================

var aMedia = this.getPageBox("Media");
var width = (aMedia[2] - aMedia[0]);
var height = (aMedia[1] - aMedia[3]);

var x = width/2-20;
var x2 = width/2+20;

for (var p = 0; p < this.numPages; p++) {


var r = this.addField(p, "text", p, [x,20,x2,40]);

r.delay = true;
r.strokeColor = color.white;
r.fillColor = color.white;
r.readonly = true;
r.delay = false;
this.getField(p).value = p+1;

}

======================================================
----- Original Message -----
From: "Mark Clute" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, August 12, 2003 9:57 AM
Subject: [PDF] Printable page numbering


>
> The PDF list is a service provided by PDFzone.com | http://www.pdfzone.com
> __________________________________________________________________
>
> Help-
>
> I have a 302 page PDF assembled and now want to insert page numbers at the
> bottom middle of each page.  Can I do it?  A javascript maybe?
>
> Thanks All
>
> Mark Clute
>
>
> To change your subscription:
> http://www.pdfzone.com/discussions/lists-pdf.html
>


To change your subscription:
http://www.pdfzone.com/discussions/lists-pdf.html

Reply via email to