I have a video at http://www.shmuelkatz.com/expt14.htm. I specified that 'allowfullscreen' is true, which I assume means that the user can click on some button and the video expands to fill most of the browser. However, I find two problems - first there are no control buttons at all (though there is a right click menu) and the right- click menu has no option to expand to full screen (though it does allow zooming in). So is there a way to make a small window (source code below) expandable by the user? Thanks, Gid
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http:// www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <script type="text/javascript" src="swfobject.js"></script> <script type="text/javascript"> swfobject.registerObject("fourteen", "9.0.0", "expressInstall.swf"); </script> </head> <body> <div> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="400" height="600" id="fourteen" align="middle"> <param name="movie" value="/videos/fourteen.swf" /> <param name="play" value="false" /> <param name="loop" value="false" /> <param name="menu" value="true" /> <param name="quality" value="best" /> <param name="allowfullscreen" value="true" /> <!--[if !IE]>--> <object type="application/x-shockwave-flash" data="/videos/ fourteen.swf" width="400" height="600" align="middle"> <param name="play" value="true" /> <param name="loop" value="false" /> <param name="menu" value="true" /> <param name="quality" value="best" /> <param name="allowfullscreen" value="true" /> <!--<![endif]--> <a href="http://www.adobe.com/go/getflashplayer"> <img src="http://www.adobe.com/images/shared/download_buttons/ get_flash_player.gif" alt="Get Adobe Flash player" /> </a> <!--[if !IE]>--> </object> <!--<![endif]--> </object> </div> </body> </html> -- You received this message because you are subscribed to the Google Groups "SWFObject" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/swfobject?hl=en.
