December 16, 200718 yr SITE: http://www.nicolaibrix.dk QUESTION: I have a simple HTML site, a text navigation and a slideshow (slideshowpro.net). I want to play my multiple movies (.swf) inside of a simple HTML index page using the text navigation, instead of opening a different page for each of my movies (.swf). That's what I have now. Is that possible? DETAILS: This is what I have now: // in the first frame dados = function (valorMenu) { enviandoDados = new LocalConnection(); enviandoDados.send("conexao", "valor", valorMenu); trace(valorMenu); }; I need to do something similar with my text navigation. If the navigation buttons were in flash: //btn1 on (release) { _root.dados("slideshow/slideshow.swf"); } //btn2 on (release) { _root.dados("slideshow2/slideshow2.swf"); } //btn3 on (release) { _root.dados("slideshow3/slideshow3.swf"); } //btn4 on (release) { _root.dados("slideshow4/slideshow4.swf"); } //btn5 on (release) { _root.dados("slideshow5/slideshow5.swf"); } // inside of the SlideShow, I just use that in the first frame apenas coloque no primeiro frame: recebendoDados = new LocalConnection(); recebendoDados.connect("conexao"); recebendoDados.valor = function(menuArquivo) { loadMovieNum (menuArquivo,0); };
Create an account or sign in to comment