Dear friends, I’d use fuse from about 4 hour…
And I’ve try to do a simple effects on my “img1_mc” moivie clip:
this.img1_mc._alpha = 0;
this.img1_mc.alphaTo(“100”,1.5,“easeInQuad”);
this.img1_mc.scaleTo (120,2,“easeOutQuint”);
this.img1_mc.slideTo(-50, -50, 1, “easeInQuint”);
this.img1_mc.slideTo(-20, -50, 10, “easeOutQuint”);
Untill here all are ok… but now I need to add an effect (alpha out to 0) after “x” (about 15 seconds) delay seconds:
this.img1_mc.alphaTo(“0”,1.5,“easeOutQuad”);
I’ve try to use this but I see that the movie clip become soon alpha 0.
I know that I need to use a delay command… How I can do?
thanks