Ir para conteúdo

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

Juliana Nakaharada

Galeria em Flash não abre no IE

Recommended Posts

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...

 

O arquivo foi desenvolvido no Flash CS5.5 em AS 2.0.

 

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);

Compartilhar este post


Link para o post
Compartilhar em outros sites

Oi Juliana

 

Experimente salvar seu fla para a versão 9.0 do Flash Player. Certamente seu cliente usa uma versão mais antiga do navegador ou não atualiza o plugin.

 

Visualizei sua galeria pelo IE 9 perfeitamente.

 

Abraços

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.