Visualizzazione dei risultati da 1 a 4 su 4
  1. #1
    Utente di HTML.it
    Registrato dal
    Feb 2006
    Messaggi
    2

    [MX]Importare correttamente un Flash paper

    Salve,

    Non riesco a visualizzare correttamente un flah paper. Dopo aver importato il documento flash paper(in formato.swf)con Flash Paper 2 nella libreria di un documento flash,e dopo aver trascinato l’oggetto.swf dalla libreria nello stage,quando provo il filmato il documento flash paper viene visualizzato ad intermittenza e completamente illeggibile.Grazie in anticipo per l’aiuto che potete prestarmi.

  2. #2
    Utente di HTML.it L'avatar di koln
    Registrato dal
    Sep 2004
    Messaggi
    388
    Invece di importare il file swf, prova a caricarlo con loadMovieNum
    codice:
    loadMovienNum("tuofile.swf", 1);

  3. #3
    Nel file in cui farai il loadMovie sul frame incolli il codice

    codice:
    //nome="prova";
    // function: loadFlashPaper
    // ------------------------
    // Load FlashPaper document, size it, 
    // Parameters:
    //   path_s: Path of SWF to load
    //  dest_mc: Movie clip to hold the imported SWF
    //  width_i: New size of the dest MC
    // height_i: New size of the dest MC
    // loaded_o: (optional) Object to be notified that loading is complete
    function loadFlashPaper(path_s, dest_mc, width_i, height_i, loaded_o) {
    	var intervalID = 0;
    	var loadFunc = function(){		
    		dest_mc._visible = false;		
    		var fp = dest_mc.getIFlashPaper();
    		if (!fp) { 
    			return; 
    		} else if (fp.setSize(width_i, height_i) == false)	{ 
    			return; 
    		} else {
    			clearInterval(intervalID);		
    			var pages_i = fp.getNumberOfPages();
    			ctrlHolder_mc.swapDepths(_root.control_mc);
    			dest_mc._visible = true;			// Now show the document
    			_root.control_mc._visible = true;	// Now show the controller
    			loaded_o.onLoaded(fp);
    		}
    	}
    	intervalID = setInterval(loadFunc, 100);
    	dest_mc.loadMovie(path_s);
    }
    
    
    // function: onLoaded()
    // ------------------------
    // Called once loading is complete
    // Parameters:
    //   fp: FlashPaper interface (returned by getIFlashPaper())
    function onLoaded(fp) {
    	// We can now call the FlashPaper API functions.
    	// Remove the standard user interface features:
    	fp.showUIElement("PrevNext", true);
    	fp.showUIElement("Print", false);
    	fp.showUIElement("Find", true);
    	fp.showUIElement("Tool", true);
    	fp.showUIElement("Pop", true);
    	fp.showUIElement("Zoom", true);
    	fp.showUIElement("Page", true);
    	fp.showUIElement("Overflow", true);
    	fp.enableScrolling(true);
    	// Some additional API features (here commented out):
    	// Go to page:
    	 fp.setCurrentPage(1);
    	// Change the magnification to 50%:
    	 fp.setCurrentZoom(65);
    }
    
    // Hide the navigation controller until after the document is loaded:
    _root.control_mc._visible = false;  
    
    // Create movie clip to hold the document:
    var theDocMC_mc = this.createEmptyMovieClip("theDocMC",100);
    // Create movie clip to exchange the depth with the navigation controller clip:
    var ctrlHolder_mc = this.createEmptyMovieClip("ctrlHolder",200);
    
    // Position the document clip on the stage:
    theDocMC_mc._x = 0;
    theDocMC_mc._y = 0;
    
    // Load the FlashPaper document:
    loadFlashPaper("NomeFlashPaper.swf ", theDocMC_mc, 1000, 500 , this);
    devi cambiare i valori in rosso che corrispondono al nome del file e alle misure che vuoi assegnargli.

    ciao
    Consulenza aziendale a 360° http://www.gruppodg.it http://www.gruppodg.it/3d
    Realizzazione siti internet, Siti Flash, Ricerca Location per bar negozi , esercizi commerciali, sviluppo pratiche e allestimento

  4. #4
    Utente di HTML.it
    Registrato dal
    Feb 2006
    Messaggi
    2
    Grazie,

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.