Jump to content


fnando

Member Since 19/03/2004
Offline Last Active 07/09/2007, 00:10
-----

Posts I've Made

In Topic: Múltiplas Versões Do Internet Explorer

28/07/2004, 10:23

Legal, vou coloca na seção de Tutoriais desta seção, blza? Vlw ae pela ajuda

Flw! Essa vai ser ótima pra galera! :P

In Topic: Alguem Me Ajude Akee

19/05/2004, 13:37

Eu criei esse script pra vc. Não testei, mas deve funcionar!

d = new Date();
ds = ["Domingo", "Segunda-feira", "Terça-feira", "Quarta-feira", "Quinta-feira", "Sexta-feira", "Sábado"]
ms = ["Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"]
dd = ds[d.getDay()];
dn = d.getDate();
m = ms[d.getMonth()];
a = d.getFullYear();
cd = dd + ', ' + dn + ' de ' + m + ' de ' + a;
trace( cd )

Espero ter ajudado!

In Topic: Flash X Aparelho De Dvd

18/05/2004, 16:37

Você pode exportar em MPEG e depois gravar um DVD.

In Topic: Se Nao Existir Imagem

07/04/2004, 20:10

Eu criei um prototype. O primeiro parâmetro é o arquivo principal e o segundo é o alternativo.

MovieClip.prototype.loadFile = function( path, alternative ){
	this.loadMovie( path );
	this.tid = setInterval( function( self ){ if( self.getBytesTotal() == -1 && alternative != undefined ){ self.loadMovie( alternative ); clearInterval( this.tid ) } if( self.getBytesTotal() == self.getBytesLoaded() ){ clearInterval( this.tid ); } }, 100, this );
}

this.createEmptyMovieClip("img", 0);
img.loadFile( "asdf.gif", "http://www.antz.com.br/logo.swf" );

Espero ter ajudado!

In Topic: Janela?

20/03/2004, 12:56

Tenta isso:

<table width="100%" height="100%" align="center">
<tr>
<td width="100%" height="100%" align="center">
{SEU CONTEÚDO AQUI}
</td>
</tr>
</table>

IPB Skin By Virteq