21/02/2010, 15:22
|
| | Fecha de Ingreso: noviembre-2005
Mensajes: 186
Antigüedad: 19 años Puntos: 1 | |
Respuesta: Añadir un botón flash con un vínculo dinamico Cita:
Iniciado por Dav1d Algo me falla, yo utilizo as3, y creo un boton con Flash cs4, creo una capa y pongo este código:
Código:
miboton.addEventListener(MouseEvent.CLICK,buscarURL);
var url = '';
function buscarURL(Event:MouseEvent):void{
var request:URLRequest = new URLRequest(url);
try {
navigateToURL(request, '_blank');
} catch (e:Error) {
trace("Error occurred!");
}
}
voy a dreamweaver CS3, import -> Flash, inserto el botón, y me genera este código al que retoco con FlashVarsr: Código HTML: <script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','57','height','31','src','images/boletines/botonmas','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','images/miboton' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="57" height="31">
<param name="movie" value="images/miboton.swf">
<param name="quality" value="high">
[COLOR="Red"]<param name="FlashVars" value="url=http://www.google.es"> [/COLOR]
<embed src="images/miboton.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="57" height="31" [COLOR="Red"]FlashVars="url=http://www.google.es"[/COLOR]></embed>
</object>
</noscript> Si pongo FlashVars="url='http://www.google.es'" , tampoco funciona.
Saludos |