Jump to content
Fórum Script Brasil
  • 0

Problemas Com "onrelease" Em Movieclip's


Guest Julio Romano

Question

Guest Julio Romano

Pessoal, meu problema é:

Meu flash, busca alguns dados em uma página php. Estes dados são caminhos para algumas imagens, as quais precisam ser carregadas no flash. Até aqui, deu tudo certo. Vejam meu código:

carrega = new LoadVars();

carrega.load("http://localhost/infohelp/portfolio/carrega_imagens.php");
carrega.onLoad = function(){

imagens_array = carrega.imagens.split(",");

for(i=0;i<imagens_array.length;i++){

 posicaoX = i * 100;

 dados = imagens_array[i];

 _root.createEmptyMovieClip("imagem"+i,i);
 _root["imagem"+i]._x = posicaoX;
 _root["imagem"+i]._y = 0;

 _root["imagem"+i].loadMovie(dados.substring(dados.indexOf("-")+1,dados.length));

}

}

Porém, agora preciso fazer o seguinte. Ao clicar no movieclip, ele deve chamar outra pagina php, porém, não estou conseguindo fazer o "onRelease" destes movieclip's. Como posso fazer isto?

Grato

Julio Romano

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.9k
×
×
  • Create New...