Page 1 of 1

Keeping track of how many prints were made....?

Posted: Tue Nov 04, 2008 12:02 am
by mankul
Hi,

I've got the print2flash pro version.

I've already got a P2F document displayed on my website.

Is there a way for me to keep track of how many times the 'print' button in the P2F document is pressed?

I need to know roughly how many people have printed the document.

thanks.

Re: Keeping track of how many prints were made....?

Posted: Mon Nov 10, 2008 9:47 am
by staff
Document API starting from version 2.7.3 supports an event named onPrinted. It is fired whenever user tries to print the document. By hooking to this event you'll get notifications when user tries to print the document and this way you may count this event firings.This event is described in this help page: http://print2flash.com/help/DocumentAPIEvents.php

Re: Keeping track of how many prints were made....?

Posted: Mon Nov 10, 2008 6:27 pm
by mankul
staff wrote:Document API starting from version 2.7.3 supports an event named onPrinted. It is fired whenever user tries to print the document. By hooking to this event you'll get notifications when user tries to print the document and this way you may count this event firings.This event is described in this help page: http://print2flash.com/help/DocumentAPIEvents.php
Hey thanks!