-
1. Re: AS 2 for infinite slide show loop
kglad Apr 1, 2011 2:25 PM (in response to ruthgordy)why do you want to change to as2?
-
2. Re: AS 2 for infinite slide show loop
ruthgordy Apr 1, 2011 2:37 PM (in response to kglad)I've got a AS 2 animation that I want to drop the movie clip into. This animation has pause loop scripting that works great with AS2 but I can't seem to make work with AS 3 pause loop coding that I've found online.
-
3. Re: AS 2 for infinite slide show loop
kglad Apr 1, 2011 4:18 PM (in response to ruthgordy)use a main as3 swf to load your as2 and your as3 swfs.
-
4. Re: AS 2 for infinite slide show loop
ruthgordy Apr 4, 2011 3:35 PM (in response to kglad)kglad
thanks for the info - but I did find coding that worked for pausing multiple instances on the timeline in AS3
I imported my infinite slide show loop as a movie clip at a pause on the timeline and it works great
Only issue is that the infinite slide show loop pops into the scene instead of fading into the animation
I found a snippet that fades it out great at this pause - but can't make it fade in this section of my animation
here is AS 3 coding that fades it out
any thoughts on the code or what I might do to this code that will make movie clip fade in?
Do I need to put this fade in code on a different timeline?
any info will help
infiniteGallery.addEventListener(Event.ENTER_FRAME, fadeOut);
function fadeOut(e:Event){
infiniteGallery.alpha -= 0.01;
}
thanks
-
5. Re: AS 2 for infinite slide show loop
kglad Apr 4, 2011 4:25 PM (in response to ruthgordy)use similar code to fade-in your loader. and you should terminate your loops when they complete.



