-
1. Re: 100 inch long pdf?
zeeebee Aug 8, 2014 9:16 AM (in response to zeeebee)I have access to Illustrator (haven't used it much) and will try to create a long pdf with that.
-
2. Re: 100 inch long pdf?
Steve Cordero Aug 8, 2014 9:53 AM (in response to zeeebee)You can do this with a JavaScript documented in the Acrobat SDK
The basic syntax
app.newDoc(nWidth: , nHeight: );
This code below is from the Acrobat SDK link above creates a cool menu item that allows for custom size pages. Note you need to give the size in points.
trustedNewDoc = app.trustedFunction( function (nWidth, nHeight)
{
app.beginPriv();
switch( arguments.length ) {
case 2:
app.newDoc( nWidth, nHeight );
break;
case 1:
app.newDoc( nWidth );
break;
default:
app.newDoc();
}
app.endPriv();
})
app.addSubMenu({ cName: "New", cParent: "File", nPos: 0 })
app.addMenuItem({ cName: "Letter", cParent: "New", cExec:
"trustedNewDoc();"});
app.addMenuItem({ cName: "A4", cParent: "New", cExec:
"trustedNewDoc(420,595)"});
app.addMenuItem({ cName: "Custom...", cParent: "New", cExec:
"var nWidth = app.response({ cQuestion:'Enter Width in Points',\
cTitle: 'Custom Page Size'});"
+"if (nWidth == null) nWidth = 612;"
+"var nHeight = app.response({ cQuestion:'Enter Height in Points',\
cTitle: 'Custom Page Size'});"
+"if (nHeight == null) nHeight = 792;"
+"trustedNewDoc(nWidth, nHeight) "});



