Carlos Ferreira Postado Novembro 26, 2008 Denunciar Share Postado Novembro 26, 2008 (editado) amigos me ajudem a fazer com que este script faça loop quando chegar na ultima imagem! square._alpha = 0; whichPic = 1; next.onPress = function() { if (whichPic<5 && !fadeIn && !fadeOut) { fadeOut = true; whichpic++; input = whichPic; } } ; setInterval(next.onPress, 5000); _root.onEnterFrame = function() { if (square._alpha>10 && fadeOut) { square._alpha -= 10; } if (square._alpha<10) { loadMovie("img_0"+whichPic+".jpg", "square"); fadeOut = false; fadeIn = true; } if (square._alpha<100 && fadeIn && !fadeOut) { square._alpha += 10; } else { fadeIn = false; }}; Editado Novembro 26, 2008 por Carlos Ferreira Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 Thelon Postado Novembro 26, 2008 Denunciar Share Postado Novembro 26, 2008 if (whichPic==5){whichPic = 1; }Adiciona isso e veja se resolve Citar Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
Carlos Ferreira
amigos me ajudem a fazer com que este script faça loop quando chegar na ultima imagem!
square._alpha = 0;
whichPic = 1;
next.onPress = function()
{
if (whichPic<5 && !fadeIn && !fadeOut)
{
fadeOut = true;
whichpic++;
input = whichPic;
}
}
;
setInterval(next.onPress, 5000);
_root.onEnterFrame = function()
{
if (square._alpha>10 && fadeOut)
{
square._alpha -= 10;
}
if (square._alpha<10)
{
loadMovie("img_0"+whichPic+".jpg", "square");
fadeOut = false;
fadeIn = true;
}
if (square._alpha<100 && fadeIn && !fadeOut)
{
square._alpha += 10;
}
else
{
fadeIn = false;
}};
Editado por Carlos FerreiraLink para o comentário
Compartilhar em outros sites
1 resposta a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.