Olá Pessoal, sou nova aqui, ainda não tenho muito a noção de como funciona um fórum, mas preciso muito de ajuda... ainda sou iniciante em Flash e AS e consegui fazer uma galeria de fotos para um cliente, como eu estava fazendo os testes no chrome não tive problemas algum, quando passei para o cliente ele acessou pelo Internet Explorer, ai veio a bomba, não funcionou... Preciso muito fazer com que funcione no IE já que meu cliente e a maioria dos clientes dele usam o IE e não vai adiantar muito eu falar para ele instalar outro browser... Busquei por ajuda mas não consegui encontrar nada que me ajudasse, então resolvi abrir o tópico. Por favor, peço por SOCORRO!! me ajudem!!! O código que to usando e o link onde subi o teste são esses abaixo: http://www.testesakuradesign.xpg.com.br/ stop(); var speed:Number = 15; avancar.onPress = function() { _root.onEnterFrame = function() { if(scroll_img._x > 517) { scroll_img._x -= speed; } } } avancar.onRelease = function() { delete _root.onEnterFrame; } voltar.onPress = function() { _root.onEnterFrame = function() { if(scroll_img._x < 2931) { scroll_img._x += speed; } } } voltar.onRelease = function() { delete _root.onEnterFrame; } //Don't scale the movie when the stage size changes Stage.scaleMode="noScale"; //Align the stage to the top left //Stage.align = "TL"; //Function to toggle between fullscreen and normal size //the toggle fullscreen button calls this function when pressed function toggleFullScreen(){ //if normal size, go to fullscreen, else go to normal size if(Stage["displayState"]==normal"){ Stage["displayState]="fullScreen"; }else{ Stage["displayState"]="normal"; } } //Create a listener for each time the Stage is resized var resizeListener:Object = new Object(); //Called each time the stage is resized resizeListener.onResize = function () { //Move the button to the center of the screen //bt1._x=Stage.width/2; //bt1._y=Stage.height/2; } //Add the listener to Stage Stage.addListener(resizeListener);