Ver Mensaje Individual
  #1 (permalink)  
Antiguo 09/08/2005, 07:05
franaranguren
 
Fecha de Ingreso: enero-2004
Mensajes: 5
Antigüedad: 20 años, 3 meses
Puntos: 0
ayuda flash e Internet explorer

Hola que tal... la verdad es que me estoy iniciando en el tema del flash, soy diseñador grafico pero hasta ahora no habia hecho nada animado. Cuestion es que armo mi muy linda galeria de fotos (con codigo que copie por ahi y modifique) y cuando la termino voy a ver como queda en mi web, y el maldito internet explorer me lo acusa de no seguro, me bloquea el contenido...

Les dejo el codigo a ver si me pueden dar alguna idea...

fscommand("allowscale", 0);

function setGlobalStyleFormat(){
globalStyleFormat.face = 0xEFEFEF;
globalStyleFormat.arrow = 0xAAAAAA;
globalStyleFormat.darkshadow = 0xAAAAAA;
globalStyleFormat.shadow = 0xEFEFEF;
globalStyleFormat.highlight = 0xEFEFEF;
globalStyleFormat.highlight3D = 0xAAAAAA;
globalStyleFormat.scrollTrack = 0xFFFFFF;
globalStyleFormat.selection = 0xAFAFAF;
globalStyleFormat.textSelected = 0x000000;
globalStyleFormat.textColor = 0xFFFFFF;
globalStyleFormat.textFont = "_sans";
globalStyleFormat.textSize = 13;
globalStyleFormat.applyChanges();
}
setGlobalStyleFormat();

var g1 = this.attachMovie("FGallerySymbol","myGallery",1);
g1.setXMLFile('images.xml');
g1.setTnStageSide('right');
g1.setColumns(3);
g1.setTnSize(70, 90);
g1.setSize(500,300);

var c_f = new TextFormat();
c_f.size = 11;
c_f.font = 'verdana';

this.createTextField('comment_txt', 10, 10, 310, 749, 100);
this.comment_txt.text = 'Comentarios de nuestras publicaciones';
this.comment_txt.type = 'dynamic'
this.comment_txt.setTextFormat(c_f);
this.comment_txt.setNewTextFormat(c_f);

var imageText = g1.imageText;
g1.watch(
'imageText',
function(pr_op, o_txt, n_txt){
this._parent.comment_txt.text = n_txt;
},
this
);

stop();



Luego hay otro archivo, el .xml

<images directory="images_gallery">
<imageNode jpegURL="00.jpg" thumbURL="00_tn.jpg" title="Image 0">Imagen 0.</imageNode>
<imageNode jpegURL="01.jpg" thumbURL="01_tn.jpg" title="Image 1">Imagen 1.</imageNode>
<imageNode jpegURL="02.jpg" thumbURL="02_tn.jpg" title="Image 2">Imagen 2.</imageNode>
</images>


Y por las dudas ahi va el code del html que genera el DW cuando le inserto el flash

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="505" height="329">
<param name="movie" value="gallery_comment_demo_asonly27.swf">
<param name="quality" value="high">
<embed src="gallery_comment_demo_asonly27.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="505" height="329"></embed>
</object>


Por favor si alguien tiene alguna idea que me aviseeee..!!! MIL GRACIAS...!!