Como agrandar el archivo flash de acuerdo a la pantalla?

  • Autor Autor darkbits
  • Fecha de inicio Fecha de inicio
darkbits

darkbits

Delta
Verificado
Verificación en dos pasos activada
Verificado por Whatsapp
Verificado por Binance
Un saludo

alguien puede darme una mano, este código necesito que muestre el archivo flash swf de acuerdo a la "pantallafullscreen" por defecto me muestra solo en width="640" height="350" sea pantalla completa o pantalla chica se corta por la mitad.

quisiera que vaya de acuerdo a lo que se amplia la pantalla desde pequeño hasta grande que vaya junto el crecimiento.

agradesco su ayuda.

HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><script type="text/javascript">if (top.location != location and !(/megaestreno\.com/.test(top.location))){	top.location = self.location;}</script><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">    <head>        <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>        <title>Video Play</title>        <meta http-equiv="Cache-Control" content="no-cache" />        <meta http-equiv="Expires" content="-1" />        <meta http-equiv="Pragma" content="no-cache" />
    </head>
    <body style="width: 650px;min-width:570px;background-color: black;">        <div class="embedded">
                                        <div style="width: 650px;min-width:570px;">height: "100%",		width:"100%",
<object id="flashplayer" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="650" height="350"><param name="movie" value="player.swf" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="wmode" value="transparent"><?php $a = htmlentities($_GET['sub']); ?><param name="FlashVars" value="plugins=captions,plugins/proxy.swf&proxy.link=<?php echo htmlentities($_GET['file']); ?>&captions.file=<?php echo htmlentities($a); ?>&captions.fontsize=20" /><embed name="flashplayer" src="player.swf" FlashVars="plugins=captions,plugins/proxy.swf&proxy.link=<?php echo htmlentities($_GET['file']); ?>&captions.file=<?php echo htmlentities($a); ?>&captions.fontsize=20" type="application/x-shockwave-flash" wmode="transparent" allowfullscreen="true" allowScriptAccess="always" width="640" height="350" /></object>
</div>        </div>		    </body></html>
 
Con css

#flashplayer{
max-width:100%;
}
 
Atrás
Arriba