Poetawd 0 Denunciar post Postado Julho 28, 2007 Olá pessoal, Estou fazendo um site dedicado a minha irmazinha que morreu semana passada... Estou tentando colocar um mural de recados feito em FLASH nele... Aqui está ele funcionando pefeitamente... FLASH GUESTBOOK Porém, ele no website não funciona... ele não carrega as mensagens... SITE THERESA.com.br --> clike em recados Eu usei o loadmovienum assim: on (release){ if (_root.link != num && _root.animation == 1) { _root.animation = 0; _root.link_prev = _root.link; _parent["item" + _root.link].gotoAndPlay("s2"); _root.menu2["item" + _root.link].gotoAndPlay("s2"); _root.link = num; _root.play(); loadMovieNum("guest.swf", 2); _level2.play(); _level2._x = 300; _level2._y = 300; } // end if A definição da posição do guest.swf tb não tá funcionando... :( Aqui está a parte q o guest.swf carrega as entradas: //Change the value of "high_num" to declare how many entries you prefer to load per pages.low_num = 0;high_num = 10;total_entries//This creates a varialble to show the current numbers of entriesnums=low_num+" - "+high_num;// Creating a unique id to prevent chaching. This has been done here by getting time.ui=new Date().getTime();//Loads the PHP script.loadVariablesNum ("dguestbook.php?low_num="+low_num+"&high_num="+high_num+"&dscripts="+ui, 3); Por favor... alguém sabe como arrumar? é para o site da minha falecida irmã.. Obrigado Compartilhar este post Link para o post Compartilhar em outros sites
Eder Fortunato 15 Denunciar post Postado Julho 29, 2007 fiz algumas alterações on (release){ if (_root.link != num && _root.animation == 1) { _root.animation = 0; _root.link_prev = _root.link; _parent["item" + _root.link].gotoAndPlay("s2"); _root.menu2["item" + _root.link].gotoAndPlay("s2"); _root.link = num; _root.play(); _root.createEmptyMovieClip("guest",10); loadMovie("guest.swf", _root.guest) _root.guest.play(); _root.guest._x = 300; _root.guest._y = 300; } // end if} sobre não carregar as mensagens, esta faltando o resto do seu código(tem mais coisa não tem?), mas tente colocar o caminho completo aqui do aquivo php //Loads the PHP script.loadVariablesNum ("http://www.theresa.com.br/dguestbook.php?low_num="+low_num+"&high_num="+high_num+"&dscripts="+ui, 3); só uma recomendação, esse código usa alguns comandos ultrapassados, como loadVariablesNum , o tutorial que você usou deve ser antigo tente fazer esse aqui, esta bem detalhado Compartilhar este post Link para o post Compartilhar em outros sites