Skip to main content
vigneshs53970460
Known Participant
November 30, 2016
Question

Adobe reader

  • November 30, 2016
  • 2 replies
  • 698 views

Hi

I am currently using Adobe Acrobat XI. So, which version of Adobe reader, I have to use.

In my accounting form, I have included many javascripts functions and which is working fine in adobe acrobat but in reader, it's not working and my end client is going to use that form in adobe reader and they do not have acrobat application.

I think the reader version will be the problem.

Can anyone suggest me?

This topic has been closed for replies.

2 replies

vigneshs53970460
Known Participant
November 30, 2016

Inserting a new page and deleting the current page using "Overlay" function and the scripts are given below.

var oField = this.getField("Checkbox1);

if(oField.value =="Check") {

var a = this.getTemplate("PageOne");

a.spawn({

nPage: this.pageNum+1,

bRename: false,

bOverlay: false

})

this.deletePages(this.pageNum);

} else {

var b = this.getTemplate("PageZero");

b.spawn ({

nPage: this.pageNum+1,

bRename: false,

bOverlay: false

});

this.deletePages(this.pageNum)

}

pageNum = this.pageNum+1;

try67
Community Expert
Community Expert
November 30, 2016

What version of Reader do you have?

try67
Community Expert
Community Expert
November 30, 2016

What kind of scripts did you add? What do they do, exactly?