I'm really hoping someone can help & that it's possible to do. I need to be able, on a certain date, to have a trigger that goes to a page in the pdf or to a url location or launches a pop-up window with a link to a url. I'm thinking that JavaScript might be able to do this, but since I don't know JavaScript, I'm not sure how to find out. Or maybe a plug-in that I'm not aware of. Any assistance would be *greatly* appreciated!
Add a document level script:
var oDateTrigger = new Date("11/20/2010");
var oToday = new Date();
if(oToday > oDateTrigger)
{
... Do something ...
}
You can do any of the things you've mentioned. Which one do you want?
Thom Parker
The source for PDF Scripting Info
www.pdfscripting.com
Very Important - How to Debug Your Script