Visualizzazione dei risultati da 1 a 4 su 4

Discussione: apertura popup

  1. #1

    flash 7

    ragazzi come mai una semplice funzione per aprire una pop up da un pulsante flash, se salvo lo stesso movie per player 7 non funziona più?

    in timeline:

    codice:
    Movieclip.prototype.centra = function(nome, titolo, lar, alt, feat) {
    	getURL("javascript:var x = Math.round((screen.width/2)-("+lar+"/2));var y=((screen.height/2)-("+alt+"/2));window.open('"+nome+"','"+titolo+"','width="+lar+",height="+alt+",screenX=' + x + ',left=' + x + ',screenY=' + y + ',top=' + y + ',"+feat+"');void(0);");
    };
    sul pulsante:

    codice:
    centra('www.pagina.html', 'Forum', 700, 420, 'status=yes');
    che devo fare? ho bisogno di salvare per player 7 perchè devo usare i css...

  2. #2
    prova così..

    //pulsante
    on (release) {
    getURL("javascriptopUp()");
    }

    //html
    <script language="javascript" type="text/javascript">
    function popUp() {

    /* begin configuration */
    var url = "newpage.html";
    var w = "500";
    var h = "300";
    var menu = "no";
    var scroll = "no";
    var tool = "no";
    var location = "no";
    var resize = "no";
    /* end configuration */

    var winl = (screen.width - w) / 2;
    var wint = (screen.height - h) / 2;
    winprops = 'width='+w+', height='+h+', top='+wint+', left='+winl+', menubar='+menu+', scrollbars='+scroll+', toolbar='+tool+', location='+location+', resizable='+resize+''
    window.open(url, 'popup', winprops);
    }
    </script>
    Interactive Html/CSS/JS Playground | @webbeloz ( cip..cip! )
    Mechanics & Expert Tuning Fix Z3 Roadster Community

  3. #3
    danke socio..
    sei nascosto eh

  4. #4
    Originariamente inviato da claire
    danke socio..
    sei nascosto eh
    l'ho visto di sfuggita..
    stò uscendo
    Interactive Html/CSS/JS Playground | @webbeloz ( cip..cip! )
    Mechanics & Expert Tuning Fix Z3 Roadster Community

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.