Ver Mensaje Individual
  #1 (permalink)  
Antiguo 18/07/2011, 11:28
karencita
 
Fecha de Ingreso: julio-2006
Mensajes: 32
Antigüedad: 17 años, 9 meses
Puntos: 0
Pregunta Indicar posición a un swf externo

hola estoy trabajando con asp3
pues bien tengo mi pelicula carga y todo , mi swf externo carga correctamente, el problema es que aparece al medio de mi presentacion

como puedo lograr posicionarlo? eso de loadmovie me lanza error

les cologo el codigo de mi pelicula


import fl.transitions.*
import fl.transitions.easing.*

{

var animacion= new Tween(barra_mc, "y", Elastic.easeOut, 620, 645, 3, true);
var animacion2= new Tween(soy3, "x", Elastic.easeOut, 1038, 865, 3, true);
var animacion3= new Tween(hago3, "x", Elastic.easeOut, 1038, 865, 3, true);
var animacion4= new Tween(quiero2, "x", Elastic.easeOut, 1038, 865, 3, true);
var animacion5= new Tween(cv2, "x", Elastic.easeOut, 1038, 865, 3, true);
var animacion6= new Tween(encuentra2, "x", Elastic.easeOut, 1038, 865, 3, true);
var animacion7= new Tween(derecho, "y", Elastic.easeOut, 600, 620, 3, true);


}
{
var loader:Loader=new Loader ();
addChild (loader) ;

this[Math.round(Math.random()*10000)]= new Tween(soy, "alpha", None.easeOut, 0, 1, 2, true);
this[Math.round(Math.random()*10000)]= new Tween(hago, "alpha", None.easeOut, 0, 1, 2, true);
this[Math.round(Math.random()*10000)]= new Tween(quiero, "alpha", None.easeOut, 0, 1, 2, true);
this[Math.round(Math.random()*10000)]= new Tween(cv, "alpha", None.easeOut, 0, 1, 2, true);
this[Math.round(Math.random()*10000)]= new Tween(encuentra, "alpha", None.easeOut, 0, 1, 2, true);
this[Math.round(Math.random()*10000)]= new Tween(dise, "alpha", None.easeOut, 0, 1, 2, true);



}

var soy1:Loader=new Loader ();
addChild (soy1) ;

soy3.addEventListener(MouseEvent.CLICK,cargar_pres entacion);
function cargar_presentacion (e:MouseEvent):void {
soy1.load(new URLRequest("soy4.swf"));
this[Math.round(Math.random()*10000)]= new Tween(soy1, "alpha", None.easeOut, 0, 1, 2, true);

}

var hago1:Loader=new Loader ();
addChild (hago1) ;

hago3.addEventListener(MouseEvent.CLICK,cargar_gal eria);
function cargar_galeria (e:MouseEvent):void {
hago1.load(new URLRequest("GaleriaDeslizante.swf"));
this[Math.round(Math.random()*10000)]= new Tween(hago1, "alpha", None.easeOut, 0, 1, 2, true);

}

gracias !^^