Visualizzazione dei risultati da 1 a 9 su 9
  1. #1

    pop up su internet explorer

    ho questo script:

    on (release) {
    nameWin = "Leonardo Puccini - Mostre";
    uUrl = "http://www.nomesito.com/popup.html";
    wdth = "850";
    hdth = "620";
    scrollbars = "no";
    toolbar = "no";
    menubar = "no";
    resizable = "no";
    status = "no";
    location = "no";
    left = "((screen.availWidth/2)-(" add wdth/2 add "))";
    top = "((screen.availHeight/2)-(" add hdth/2 add "))";
    getURL("javascript:window.open('" add uUrl add "','" add nameWin add "','height =" add hdth add ",width=" add wdth add ",top='+" add top add "+',left='+" add left add "+',toolbar=" add toolbar add ",scrollbars=" add scrollbars add ",resizable=" add resizable add ",status=" add status add ",menubar=" add menubar add ",location=" add location add "'); void(0);");
    }

    funziona ovunque ma no su internet explorer.
    yah man...
    MY SITE
    MY SITE

  2. #2
    Utente di HTML.it L'avatar di and80
    Registrato dal
    Mar 2003
    Messaggi
    15,182
    l'hai provato su più sistemi o sempre sullo stesso? nel secondo caso, hai abilitate le funzioni di Norton Security?

  3. #3
    ho provato su diversi browser e su diversi computer ma con tutti i sistemi e solo internet explore da questi problemi
    yah man...
    MY SITE
    MY SITE

  4. #4
    Utente di HTML.it L'avatar di and80
    Registrato dal
    Mar 2003
    Messaggi
    15,182
    forse è la feature "location" che crea "conflitto" con le vars "left" e "top", prova a mettere location= yes

  5. #5
    con location yes non funziona, ho notato, io ho 5 link cosi, che alcuni funzionano e altri no, quelli che funzionano rispettano la larghezza ma non l'altezza assegnata, come altezza me lo fa lunghissima a piena pagina (solo per la lunghezza).

    secondo te c'e' un rimedio per far vedere agli utenti di internet explorer.....
    yah man...
    MY SITE
    MY SITE

  6. #6
    Utente di HTML.it L'avatar di and80
    Registrato dal
    Mar 2003
    Messaggi
    15,182
    ho un codice a portata di mano, ma così com'è impostato fà il fullscreen, bisognerebbe modificare un paio di cose e ora non riesco, se vuoi te lo passo

  7. #7
    si grazie, vediamo di modificarlo a mio favore
    yah man...
    MY SITE
    MY SITE

  8. #8
    Utente di HTML.it L'avatar di and80
    Registrato dal
    Mar 2003
    Messaggi
    15,182
    codice:
    on(release){
    	var features;
    	features += 'toolbar=no,';
    	features += 'location=no,';
    	features += 'status=no,';
    	features += 'menubar=no,';
    	features += 'scrollbars=no,';
    	features += 'resizable=no,';
    	getURL("javascript:window.open('"+'tuapagina.html'+"','"+'fullscreen'+"','"+features+"width="+System.capabilities.screenResolutionX+", height="+System.capabilities.screenResolutionY+"');void(0);");
    }

  9. #9
    ti faccio sapere, grazie
    yah man...
    MY SITE
    MY SITE

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.