Carcleo 4 Denunciar post Postado Fevereiro 26, 2012 Pessoal. Bo noite. Em AS3, como faço para abrir uma popup html sem bordas e com tamanho personalizado. Só pode ter barra de rolagem. Já vi alguns exemplos mas assim, especifico para essa situaçao ainda não achei. Grato a quem puder ajudar. Compartilhar este post Link para o post Compartilhar em outros sites
hinom 5 Denunciar post Postado Fevereiro 26, 2012 pesquise "javascript modal popup" Compartilhar este post Link para o post Compartilhar em outros sites
Carcleo 4 Denunciar post Postado Fevereiro 27, 2012 Bom. Consegui. Porem, quando a página(popup) abre, gostaria que ela abrisse centralizada no Browser mas não estou conseguindo fazer isso à partir do Flash . Segue os códigos: No flash: ...... case (bat): if (currentFrame!=80) { var myURL = "javascript:window.open('treina.html', 'Treinamento', 'width=1000, height=600, left=0, right=0, top=0, toolbar=no, status=no, scrollbars=yes'); void(0);"; var request:URLRequest = new URLRequest(myURL); navigateToURL(request, "_self"); gotoAndPlay(80); // aqui é apresentado um aviso ao cliente. } break; ...... No Html: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Baterias Advance - Treinamento Técnico em Baterias Automotivas</title> <style type="text/css"> body { margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; background-color: #000; } </style> <body style="alignment-adjust:central"> <table width="1001" align="center"> <tr> <td align="center"> <img src="img/treinamento/treinamento_Page_01.png" width="1000"/> <img src="img/treinamento/treinamento_Page_02.png" width="1000"/> <img src="img/treinamento/treinamento_Page_03.png" width="1000"/> <img src="img/treinamento/treinamento_Page_04.png" width="1000"/> <img src="img/treinamento/treinamento_Page_05.png" width="1000"/> <img src="img/treinamento/treinamento_Page_06.png" width="1000"/> <img src="img/treinamento/treinamento_Page_07.png" width="1000"/> <img src="img/treinamento/treinamento_Page_08.png" width="1000"/> <img src="img/treinamento/treinamento_Page_09.png" width="1000"/> <img src="img/treinamento/treinamento_Page_10.png" width="1000"/> <img src="img/treinamento/treinamento_Page_11.png" width="1000"/> <img src="img/treinamento/treinamento_Page_12.png" width="1000"/> <img src="img/treinamento/treinamento_Page_13.png" width="1000"/> <img src="img/treinamento/treinamento_Page_14.png" width="1000"/> <img src="img/treinamento/treinamento_Page_15.png" width="1000"/> <img src="img/treinamento/treinamento_Page_16.png" width="1000"/> <img src="img/treinamento/treinamento_Page_17.png" width="1000"/> <img src="img/treinamento/treinamento_Page_18.png" width="1000"/> <img src="img/treinamento/treinamento_Page_19.png" width="1000"/> <img src="img/treinamento/treinamento_Page_20.png" width="1000"/> <img src="img/treinamento/treinamento_Page_21.png" width="1000"/> <img src="img/treinamento/treinamento_Page_22.png" width="1000"/> <img src="img/treinamento/treinamento_Page_23.png" width="1000"/> <img src="img/treinamento/treinamento_Page_24.png" width="1000"/> <img src="img/treinamento/treinamento_Page_25.png" width="1000"/> <img src="img/treinamento/treinamento_Page_26.png" width="1000"/> <img src="img/treinamento/treinamento_Page_27.png" width="1000"/> <img src="img/treinamento/treinamento_Page_28.png" width="1000"/> <img src="img/treinamento/treinamento_Page_29.png" width="1000"/> <img src="img/treinamento/treinamento_Page_30.png" width="1000"/> <img src="img/treinamento/treinamento_Page_31.png" width="1000"/> <img src="img/treinamento/treinamento_Page_32.png" width="1000"/> </td> </tr> </table> </body> </html> Compartilhar este post Link para o post Compartilhar em outros sites