Se volessi da un filmato di flash aprire una finestra indipendente da quel filmato e che contiene pagine in HTML, tramite un bottone tipo "apri finestra del browser", posso farlo?![]()
Se volessi da un filmato di flash aprire una finestra indipendente da quel filmato e che contiene pagine in HTML, tramite un bottone tipo "apri finestra del browser", posso farlo?![]()
non so se ho capito bene... cmq:
on (release) {
getURL("http://www.tuosito.it", "_blank");
}
Chi vola vale chi non vola è un vile.. (Icaro)
intendi una popup? Se è così associa a un tasto questo:
on (release) {
numpop++;
if (numpop>=10) {
numpop = 1;
}
thepop = "pop"+numpop;
thex = 400-(50*numpop);
they = 5+(40*numpop);
trace(thepop);
// apertura popup da flash
getURL("javascript:window.open('popuptaldeitali.ht ml','"+thepop+"','width=500,height=253,scrollbars= no,left="+thex+",top="+they+"');void(0);");
}
on (rollOver) {
_root.pop_over = true;
}
on (rollOut) {
_root.pop_over = false;
}
:quote: basta mettere questo, per una pop-up:
on (press) {
getURL("java script:window.open('pagina.htm','titolo','width=80 0 ,height=600,top=0,left=0'); void(0);");
}
... azz.
grazie capo!