Cosegui arrumar.........mas agora p problrma é q enquanto carrega a imagem não aparece nada......e se coloko alguma coisa dizendo q estah carregando não consigo faze com q suma......eu queira um scrip onde apareca o carregando sem interferir no codigo q já fiz ou uma mensagem de carregando e quando abrisse a imgem ela sumisse......vou coloka os codigos q puz: //initialize variables and properties square._alpha = 0; whichPic = 1; //initiate change to new image when buttons are clicked next.onPress = function() { if (whichPic<3 && !fadeIn && !fadeOut) { fadeOut = true; whichpic++; input = whichPic; } }; back.onPress = function() { if (whichPic>1 && !fadeIn && !fadeOut) { fadeOut = true; whichpic--; input = whichPic; } }; _root.onEnterFrame = function() { // when a new Photo is selected, fade out, load new image, and fade in if (square._alpha>10 && fadeOut) { square._alpha -= 10; } if (square._alpha<10) { loadMovie("http://www.martelinhoartesanal.hpg.ig.com.br/fotos/audi%20"+whichPic+".jpg", "square"); fadeOut = false; fadeIn = true; } if (square._alpha<100 && fadeIn && !fadeOut) { square._alpha += 10; } else { fadeIn = false; } // limit input field if (input>3) { input = 3; } // initiate change to new image when Enter key is pressed if (Key.isDown(Key.ENTER)) { fadeOut = true; whichpic = input; } }; // if a number is entered in the input field but Enter is not pressed, change // back to current Photo number when clicking anywhere else inputField.onKillFocus = function() { input = whichPic; }; espero q alguém me ajude.....valeu