Why Full Screen button does not work?

staff
Posts:267
Joined:Sat Dec 15, 2007 4:48 pm
Why Full Screen button does not work?

Post by staff » Mon Jul 23, 2012 1:11 pm

In order to allow Flash Player to enter full screen mode, you should enable this mode. To achieve this, you need to embed a Print2Flash document in an HTML page and pass the Flash Player allowFullScreen=true and allowFullScreenInteractive=true parameters:

Code: Select all

<object ...>
<param name="allowFullScreen" value="true"/>
<param name="allowFullScreenInteractive" value="true"/>
...
<embed allowFullScreen="true" allowFullScreenInteractive="true" .../>
</object>
To obtain such an HTML page, you need to convert any document with Print2Flash manually and click Save HTML button. The HTML page obtained in this way may be used on your web site for publishing of any other Print2Flash documents. See this help topic for more information: http://print2flash.com/help/HowtoPublis ... theWeb.php

Post Reply