Adobe Acrobat Pro - Fade in effect for spawned (previously hidden) pages
For Adobe Acrobat Pro, I am simply looking for a way on a button push action, maybe as a javascript code, add a fade in or maybe do a quick flash effect to a newly spawned (previously hidden) page (which also jumps to) that is produced via some Javascript actions (see reference below).
This project is a job application, so want to give the applicant a nice, very brief, visual que that they just added and in the new added page to the application.
My two Javascript actions for the transitions put in are:
To spawn the page:
var a = this.getTemplate("AccidentPage");
a.spawn(this.pageNum+1,true,false);
this.calculateNow();
and to jump to that page:
this.pageNum = this.pageNum + 1;
