Ir para conteúdo
Fórum Script Brasil

OSJunior

Veteranos
  • Total de itens

    2.901
  • Registro em

  • Última visita

Posts postados por OSJunior

  1. Olá, eu tentei instalar varias vezes o kurumin, mas o bendito não funciona, mas a minha pergunta pergunta é se é possivel salvar algum arquivo no kurumin sem ele estar instalado?

    Curiosidade(s):

    O Richard Stallman teve alguma participação na criação do linux?

    O primeiro linux foi o Debian?

    Será lançado no Brasil o filme "Revolution OS"?

    quanto ocupa de hd e mem. os linux: Kurumin, mandrake e slackware?

    Grato.

  2. Ae manow, você pode fazer isso, se você mandar abrir uma nova página e mandar fechar a atual, isso pode funcionar:

    <script language="javascript">
     function AbreJanela( ) {
    
     if (screen.width==800||screen.height==600) 
       window.open('index2.html','janela','menubar=no, toolbar=no, location=no, height = 300, width = 300');
      }
     function fecha() {
       parent.window.opener=self;
       parent.window.close();
     }
    
    </script>
    <body onLoad="AbreJanela( ), fecha()">
    

  3. Olá, faça assim:

    <script language="JavaScript">
    
       var width = 20;
       var height = 10;
    
       var left = 99;
       var top = 99;
    
    URL = "publicidade.html";
    
       window.open(URL,'publicidade', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=no, status=yes, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');
    
    </script>
    
    

  4. Vlw, não consertou as horas, mas acabei de descobrir que ta dando problema de horas em todo lugar, ateh nas horas daki do fórum do post.

    Hora do pc: 00:47

    Hora nas pag: 11:47

    Grato.

  5. Ae povo, esse meu problema é bem engraçado mesmo, auhauahuha.

    Nesse código abaixo, a data retorna: MM/DD/AAAA e as horas retorna com o horário de Londres.

    Como conserto pra DD/MM/AAAA e horário de Brasília???

    <b>Hoje é dia:</b> <%= Date%><b>, e agora são:</b> <%= Time%>
    

  6. Use esse código:

    <HTML>
     <HEAD>
      <TITLE></TITLE>
    <STYLE type=text/css>
     #divLoadCont{position:absolute; width:100%; height:100%; top:0; left:0; background-color:white; layer-background-color:white; font-family:arial,helvetica; z-index:100}
    </STYLE>
    <script type="text/javascript" language="JavaScript">
     function checkBrowser(){
      this.ver=navigator.appVersion
      this.dom=document.getElementById?1:0
      this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom)?1:0;
      this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;
      this.ie4=(document.all && !this.dom)?1:0;
      this.ns5=(this.dom && parseInt(this.ver) >= 5) ?1:0;
      this.ns4=(document.layers && !this.dom)?1:0;
      this.bw=(this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns5)
      return this
     }
     bw=new checkBrowser()
     function hideIt(div){
      if(bw.bw){
       div="divLoadCont"
       obj=bw.dom?document.getElementById(div).style:bw.ie4?document.all[div].style:bw.ns4?document[div]:0; 
       obj.visibility='hidden'
      }
     }
     onload=hideIt;
    </script>
     </HEAD>
     <BODY TOPMARGIN="0" LEFTMARGIN="0" SCROLL="NO">
     <script>
      if(bw.bw) document.write('<div id="divLoadCont"><table width="100%" height="100%" align="center" valign="middle"><tr><td width="100%" height="100%" align="center" valign="middle"><FONT FACE="Verdana" SIZE="2" COLOR="#000000"><B>Carregando...</B></FONT></td></tr></table></div>')
     </script>
     <P><B>Loading Simples</B></P>
     </BODY>
    </HTML>
    

×
×
  • Criar Novo...