Ver Mensaje Individual
  #4 (permalink)  
Antiguo 01/03/2007, 08:41
Avatar de SAPINTO
SAPINTO
 
Fecha de Ingreso: junio-2005
Ubicación: just another fucked up pl
Mensajes: 777
Antigüedad: 18 años, 10 meses
Puntos: 0
Re: Pagina Flash en buscadores

si puedes, con algo de actionscript y css para eliminar el borde.

en as por ejemplo:

Código:
//con esto, le dammos un relleno a la pagina
import flash.display.BitmapData;

//situas el mc al centro de la pagina
principal_mc._x=Stage.width / 2;
principal_mc._y=Stage.height / 2;

// en  linkage, "tile" es un pattern, se llama tile.gif
var tile:BitmapData = BitmapData.loadBitmap("tile");

//establecemos la funcion que rellenara nuestra peli
function fillBg(){
	this.beginBitmapFill(tile);
	this.moveTo(0,0);
	this.lineTo(Stage.width,0);
	this.lineTo(Stage.width,Stage.height);
	this.lineTo(0,Stage.height);
	this.lineTo(0,0);
	this.endFill();
}

//y la ejecutamos
fillBg();

//una variable para el listener
var stageL:Object = new Object();

//un evento para que al redimensionar, siga al centro
stageL.onResize = function(){
	fillBg();
	principal_mc._x=Stage.width / 2;
	principal_mc._y=Stage.height / 2;
}

//y agregamos el listener
Stage.addListener(stageL);
en publish settings, le damos al html el 100x100 % y sin escala, luego en css quitamos el relleno y listo, un flash operacional ocupando el 100% de nuestro navegador y con su html para poder usar los tags ;)
__________________
if(user=="female" && user>="hot"){
user.gotoAndStop("sapinto's bed");
}
mi portafolio