Visualizzazione dei risultati da 1 a 7 su 7

Discussione: Help...Full screen

  1. #1

    Help...Full screen

    :quipy:
    Ciao A tutti vorrei un'aiuto
    Ho creato la mia animazione in flash ed ho generato sia swf che l' HTML
    Adesso vorrei portarlo in full screen ma non utilizzando l'action di flash.
    Non so proprio come fare.
    Il link qui sotto vi fa vedere come lo vorrei .

    http://www.magnificauno.it/

    In Attesa di un Vostro aiuto vi Ringrazio anticipatamente

  2. #2
    Ciao.

    Devi far generare ad una pagina html una popup (col nome della tua pagina contenente l'swf) che si apra in fullscreen.

  3. #3
    Ciao, nella pagina che lancia quella contenente il file flash devi inserire all'interno del tag <head>,modifica il percorso della variabile url // set the page to go to...
    url = "intro.asp":

    <script>

    // (C) 2001 www.CodeLifter.com
    // http://www.codelifter.com
    // Free for all users, but leave in this header

    // set the page to go to...
    url = "intro.asp";

    // set how fast to expand horizontally
    // lower is slower
    var speedX = 7;

    // set how fast to expand vertically
    // lower is slower
    var speedY = 5;

    // set background color of "Loading..." screen
    var bgColor = "#000000";

    // set text color of "Loading..." screen
    var txtColor = "#FF80000";


    // do not edit below this line
    // ---------------------------

    if (document.all){
    var wide = window.screen.availWidth;
    var high = window.screen.availHeight;
    }

    function fullscreen(){
    if (document.all){
    var Boomer = window.open("","BoomWindow","fullscreen");
    Boomer.document.write('<HTML><BODY BGCOLOR='+bgColor+' SCROLL=NO><FONT FACE=ARIAL COLOR='+txtColor+'>Loading...</FONT></BODY></HTML>');
    Boomer.focus();
    for (H=1; H<high; H+= speedY){
    Boomer.resizeTo(1,H);
    }
    for (W=1; W<wide; W+= speedX){
    Boomer.resizeTo(W,H);
    }
    Boomer.location = url;
    }
    else {
    window.open(url,"BoomWindow","");
    }
    }

    </script>


    nel link effettivo metti :

    [img]flash.jpg[/img]

    per verificare se e' questo che cerchi clicca qui e visualizza il sito in flash.

    bye.
    -Nextart.it Graphic Solutions

  4. #4
    mica hai qualche esempio in html da farmi vedere

    grazie

  5. #5
    COPIA QUESTO CODICE (DA <HTML> A </HTML> IN IN FILE VUOTO DEL NOTEPAD,MODIFICALO NELLE PARTI EVIDENZIATE IN ROSSO E POI SALVA IL FILE COME INDEX.HTM E PROVA

    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@
    <HTML>
    <HEAD>

    <META HTTP-EQUIV="Content-Language" CONTENT="it_IT">
    <title>TUOSITO.COM</title>
    <script>

    // (C) 2001 www.CodeLifter.com
    // http://www.codelifter.com
    // Free for all users, but leave in this header

    // set the page to go to... IMPOSTA QUI LA PAGINA CHE VUOI APRIRE
    // IN FULLSCREEN

    url = "flash/intro.asp";

    // set how fast to expand horizontally
    // lower is slower
    var speedX = 7;

    // set how fast to expand vertically
    // lower is slower
    var speedY = 5;

    // set background color of "Loading..." screen
    var bgColor = "#000000";

    // set text color of "Loading..." screen
    var txtColor = "#FF80000";


    // do not edit below this line
    // ---------------------------

    if (document.all){
    var wide = window.screen.availWidth;
    var high = window.screen.availHeight;
    }

    function fullscreen(){
    if (document.all){
    var Boomer = window.open("","BoomWindow","fullscreen");
    Boomer.document.write('<HTML><BODY BGCOLOR='+bgColor+' SCROLL=NO><FONT FACE=ARIAL COLOR='+txtColor+'>Loading...</FONT></BODY></HTML>');
    Boomer.focus();
    for (H=1; H<high; H+= speedY){
    Boomer.resizeTo(1,H);
    }
    for (W=1; W<wide; W+= speedX){
    Boomer.resizeTo(W,H);
    }
    Boomer.location = url;
    }
    else {
    window.open(url,"BoomWindow","");
    }
    }

    </script>

    </head>

    <body bgcolor="#000000" text="#000000" leftmargin="0" topmargin="0">
    <font color="#FFFFFF">





    // QUESTO E' IL LINK CHE TI LANCIA LA PAGINA CHE CONTIENE IL FILE .SWF

    CLICCA QUI
    </BODY>
    </HTML>
    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@


    FAMMI SAPERE.

    BYE
    -Nextart.it Graphic Solutions

  6. #6
    Mi visualizza solo la pagina html che ho incollato nel blocnote ma quando clicco sull collegamento non mi carica la pagina.
    il mio file si chiama intro.swf
    puoi modificarla tu
    Grazie mille

  7. #7
    il codice della pagina e' questo (l'ho provato adesso e funziona la scritta in basso java script va messa unita,forse era per questo che non succedeva nulla) , il file .swf da aprire lo devi inserire in una pagina html il cui nome e' da inserire al posto di index.asp nel campo url:


    <HTML>
    <HEAD>

    <META HTTP-EQUIV="Content-Language" CONTENT="it_IT">
    <title>TUOSITO.COM</title>
    <script>

    // (C) 2001 www.CodeLifter.com
    // http://www.codelifter.com
    // Free for all users, but leave in this header

    // set the page to go to... IMPOSTA QUI LA PAGINA CHE VUOI APRIRE
    // IN FULLSCREEN

    url = "index.asp";

    // set how fast to expand horizontally
    // lower is slower
    var speedX = 7;

    // set how fast to expand vertically
    // lower is slower
    var speedY = 5;

    // set background color of "Loading..." screen
    var bgColor = "#000000";

    // set text color of "Loading..." screen
    var txtColor = "#FF80000";


    // do not edit below this line
    // ---------------------------

    if (document.all){
    var wide = window.screen.availWidth;
    var high = window.screen.availHeight;
    }

    function fullscreen(){
    if (document.all){
    var Boomer = window.open("","BoomWindow","fullscreen");
    Boomer.document.write('<HTML><BODY BGCOLOR='+bgColor+' SCROLL=NO><FONT FACE=ARIAL COLOR='+txtColor+'>Loading...</FONT></BODY></HTML>');
    Boomer.focus();
    for (H=1; H<high; H+= speedY){
    Boomer.resizeTo(1,H);
    }
    for (W=1; W<wide; W+= speedX){
    Boomer.resizeTo(W,H);
    }
    Boomer.location = url;
    }
    else {
    window.open(url,"BoomWindow","");
    }
    }

    </script>

    </head>

    <body bgcolor="#000000" text="#000000" leftmargin="0" topmargin="0">
    <font color="#FFFFFF">





    // QUESTO E' IL LINK CHE TI LANCIA LA PAGINA CHE CONTIENE IL FILE .SWF

    CLICCA QUI
    </BODY>
    </HTML>


    Non so perche' ma inviando la risposta non mi mantiene attacata
    la scritta ,
    "javascript:fullscreen" qua sopra, copia il testo e poi correggila tu.
    spero di essere stato chiaro.

    bye
    -Nextart.it Graphic Solutions

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.