2012年11月23日金曜日

JavaScript in PDF to HTML5 Conversion: The Event Object

Previously I mentioned that a key component in understanding JavaScript in PDFs was understanding how events work, in this blog article I will go into a little more depth on that subject.

Within the JavaScript for Acrobat API Reference there is a section describing the event object (it's actually one of the smaller objects if you have a look at the others) that explains briefly how events work within a PDF. This is one of the most vital objects used within PDFs containing JavaScript as it controls the output and results of each user driven event.

For instance, if the event in question is a Keystroke it runs the code for the Keystroke event, making use of an event object to store information on the event and ultimately, decide what output occurs.

After or during the Keystroke event a call can be made to the Validate events which in turn can follow down to other events including the Calculate and Format events.

If the event is not a Keystroke event we start at the Validate event. This is actually a gross simplification of how events work since there are also many other possible events and the Calculate event can generate additional Validate, Blur and Focus events. But it for now I will focus on Keystroke events since they are, from what I can tell the simplest event that can occur to a form field.

In our latest version of the converter we map the keystroke actions onto the onKeyPress attributes of input objects, taking into account how the events work within PDF files. Which for the most part works correctly as they seem to have a one to one relationship with each other. Originally we tried mapping onto the onKeyDown attribute because of how the browsers implemented key presses differently but eventually we wrote a work around for this issue as onKeyDown had some undesirable properties.

One major thing to consider about the conversion is that Calculate events also occur for all Field objects (that have them) whenever you leave a Field (on a blur) which in turn can generate more Validate and Format events. So we move the code from each Calculate event to a global function within our JavaScript that is then run on each field items onBlur attribute, resulting in similar behaviour to the PDF.

It's quite a hard subject to explain in writing, so here is an example:

This is the PDF

And this is the HTML

As you can see we have yet to fully implement the formatting for the calculated values but it's well on it's way!

http://blog.idrsolutions.com/2012/11/javascript-in-pdf-to-html5-conversion-the-event-object/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+JavaPdfBlog+%28Java+PDF+Blog%29

0 件のコメント:

コメントを投稿