Previous | Next | (P-PDF) General
Topic: Re: PDF Document Title
Conf: (P-PDF) General, Msg: 26207
From: dug
Date: 8/23/2001 11:39 AM
On 8/22/2001 2:22:08 PM, prodok wrote:
>In Acrobat 5, you could make a
>Batch process JavaScript which
>would
>do that. No big problem...
Mine looks like this:
//BEGIN CODE
cURL=this.URL;
strString=new String(cURL);
cTitle=strString.substring((strString.length-12),(strString.length-4));
cTitle=cTitle.toUpperCase();
this.info.Title=cTitle;
//END CODE
Good luck.
--Doug