Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

green_paper
green_paper
Offline

Badges

Badges
1

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
2

Discussions

Discussions
0

Questions

Questions
0

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by green_paper
Customize the badges you want to showcase on your profile
Re: Disable Print - Adobe LiveCycle 20-07-2010
I managed to actually prevent the print window from appearing using the xfa.event.cancelAction feature that Jono Moore mentions. However, it only seems to work consistently in versions 9 or better; anything older and I had inconsistent results. More details in this post:http://forums.adobe.com/message/2986124I'm going to combine your method with mine: using an informational message and leaving it up to the user for older versions of Acrobat/Reader, and the xfa.event.cancelAction feature for newe...

Views

367

Likes

0

Replies

0
Re: Restrict Printing Until fields are full - Adobe LiveCycle 19-07-2010
I'm trying to do what the topic starter is doing as well (restrict printing until required fields are completed). I've used something similar to what pguerett suggested in his first post. I've called a function in the prePrint event of my main form as follows:form1.Mysubform::prePrint - (JavaScript, client){ if (!ValidationScript.checkForm()) { xfa.event.cancelAction = 1; }}And the function looks something like this:form1.Mysubform.#variables[0].ValidationScript - (JavaScript, client)function ch...

Views

537

Likes

0

Replies

0