Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

mcdg

chromless

Recommended Posts

estou usando a janela chromless

 

mas em alguns computadores, ela abre em tela inteira, e não em 493 por 200 como eu quero, só que em outros computadores, ela abre corretamente, estou postando o código...

 

<script>function openIT() {	theURL="news.asp"	wname ="CHROMELESSWIN"	W=493;	H=200;	windowCERRARa 	 = "img/close_a.gif"	windowCERRARd 	 = "img/close_d.gif"	windowCERRARo 	 = "img/close_o.gif"	windowNONEgrf 	 = "img/none.gif"	windowCLOCK  = "img/clock.gif"	windowREALtit  = "Novidades"	windowTIT     	 = "<font face=verdana size=1>Novidades</font>"	windowBORDERCOLOR    = "#FF9933"	windowBORDERCOLORsel	= "#FF9933"	windowTITBGCOLOR   	 = "#FF9933"	windowTITBGCOLORsel  = "#FF9933"	openchromeless(theURL, wname, W, H, windowCERRARa, windowCERRARd, windowCERRARo, windowNONEgrf, windowCLOCK, windowTIT, windowREALtit , windowBORDERCOLOR, windowBORDERCOLORsel, windowTITBGCOLOR, windowTITBGCOLORsel)}</script>

e nos links eu uso

 

href="javascript:openIT();

 

alguém sabe se tem erro???

 

agradeço

Compartilhar este post


Link para o post
Compartilhar em outros sites

Coloque esse código:

 

function openchromeless(theURL, wname, W, H, posx, posy, windowTIT, windowREALtit ,

         windowBORDERCOLOR, windowBORDERCOLORsel, windowTITBGCOLOR, windowTITBGCOLORsel,

          bCenter, sFontFamily, sFontSize, sFontColor) {

 

var windowCERRARa = "imagens/close_a.gif";

var windowCERRARd = "imagens/close_d.gif";

var windowCERRARo = "imagens/close_o.gif";

var windowNONEgrf = "imagens/none.gif";

var windowCLOCK = "imagens/clock.gif";

var windowW = W;

var windowH = H;

var windowX = -1;

var windowY = -1;

 

if(bCenter){

 windowX = Math.ceil( (window.screen.width  - windowW) / 2 );

 windowY = Math.ceil( (window.screen.height - windowH) / 2 );

} else {

 windowX = posx;

 windowY = posy;

}

 

if (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion)>=4) isie=true

else                isie=false

 

if (isie) { H=H+20+2; W=W+2; }

 

s = ",width="+W+",height="+H;

 

if (isie && (navigator.userAgent.toLowerCase().indexOf("win")!=-1) ) {

 

var dowin = theURL != "" ? true : false;

 

var chromeTIThtml = '\n' +

'<html>                       '+ '\n'+

'<head>                                                                                                                                                                          '+ '\n'+

'<title> CHROMELESS WINDOWS / TITLEBAR</title>                                                                                                                        '+ '\n'+

'<style type="text/css">                                                                                                                                                         '+ '\n'+

'#mywindowTITLE  { position: absolute; left:   0px; top:   0px; width: 100%; height: 22px; z-index: 1; background-color: '+windowTITBGCOLOR+'; clip:rect(0,100%,22,0); }         '+ '\n'+

'#mywindow   { position: absolute; left:   0px; top:   0px; width: 100%; height: 22px; z-index: 2;                                   clip:rect(0,100%;22,0); }         '+ '\n'+

'#mywindowCLOSE  { position: absolute; left: -22px; top: -22px; width: 11px; height: 11px; z-index: 3;                                   clip:rect(0,11,11,0);   }         '+ '\n'+

'#mywindowCLOCK  { position: absolute; left: -22px; top: -22px; width: 11px; height: 11px; z-index: 3;                                   clip:rect(0,11,11,0);   }         '+ '\n'+

'</style>                                                                                                                                                                        '+ '\n'+

'<script language="javascript">                    '+ '\n'

 

if ( theURL != "" ) {

 

chromeTIThtml = chromeTIThtml +

' theURL           = "'+theURL   +'"                                                                                                                             '+ '\n'+

' windowCERRARa      = "'+windowCERRARa  +'"                                                                                                                             '+ '\n'+

' windowCERRARd      = "'+windowCERRARd  +'"                                                                                                                             '+ '\n'+

' windowCERRARo      = "'+windowCERRARo  +'"                                                                                                                             '+ '\n'+

' windowCLOCK         = "'+windowCLOCK            +'"                                                                                                                             '+ '\n'+

' windowBORDERCOLOR   = "'+windowBORDERCOLOR +'"                                                                                                                             '+ '\n'+

' windowBORDERCOLORsel= "'+windowBORDERCOLORsel +'"                                                                                                                             '+ '\n'+

' windowTITBGCOLOR    = "'+windowTITBGCOLOR +'"                                                                                                                             '+ '\n'+

' windowTITBGCOLORsel = "'+windowTITBGCOLORsel +'"                                                                                                                             '+ '\n'

 

} else {

 

chromeTIThtml = chromeTIThtml +

' theURL="about:blank"                                                                                                                                                            '+ '\n'+

' windowCERRARa   = "imagens/close_a.gif"                                                                                                                                     '+ '\n'+

' windowCERRARd   = "imagens/close_d.gif"                                                                                                                                     '+ '\n'+

' windowCERRARo   = "imagens/close_o.gif"                                                                                                                                     '+ '\n'+

' windowCLOCK          = "imagens/clock.gif"                                                                                                                               '+ '\n'+

' windowTIT       = "<font face=verdana size=1>  window title</font>"                                                                                               '+ '\n'+

' windowBORDERCOLOR    = "#000000"                                                                                                                                             '+ '\n'+

' windowBORDERCOLORsel = "#FF8A00"                                                                                                                                             '+ '\n'+

' windowTITBGCOLOR     = "#d7dcd9"                                                                                                                                             '+ '\n'+

' windowTITBGCOLORsel  = "#ffffff"                                                                                                                                             '+ '\n'

 

}

 

chromeTIThtml = chromeTIThtml +

'var windowCERRARImg_a = new Image(); windowCERRARImg_a.src = windowCERRARa;                                                                                                            '+ '\n'+

'var windowCERRARImg_d = new Image(); windowCERRARImg_d.src = windowCERRARd;                                                                                                            '+ '\n'+

'var windowCERRARImg_o = new Image(); windowCERRARImg_o.src = windowCERRARo;                                                                                                            '+ '\n'+

'var windowCLOCKImg    = new Image();    windowCLOCKImg.src = windowCLOCK;                                                                                                              '+ '\n'+

'                                                                                                                                                                                       '+ '\n'+

'function mouseSTATUS() {                                                                                                                                                               '+ '\n'+

' this.x       = null;                                                                                                                                                            '+ '\n'+

' this.y       = null;                                                                                                                                                            '+ '\n'+

' this.bt      = "up";                                                                                                                                                            '+ '\n'+

' this.oldx    = null;                                                                                                                                                            '+ '\n'+

' this.oldy    = null;                                                                                                                                                            '+ '\n'+

' this.dx      = null;                                                                                                                                                            '+ '\n'+

' this.dy      = null;                                                                                                                                                            '+ '\n'+

' this.screeny = null;                                                                                                                                                            '+ '\n'+

' this.screenx = null;                                                                                                                                                            '+ '\n'+

'                                                                                                                                                                                       '+ '\n'+

' this.element = null;                                                                                                                                                            '+ '\n'+

' this.event   = null;                                                                                                                                                            '+ '\n'+

'}                                                                                                                                                                                      '+ '\n'+

'                                                                                                                                                                                       '+ '\n'+

'var mouse = new mouseSTATUS();                                                                                                                                                         '+ '\n'+

'                                                                                                                                                                                       '+ '\n'+

'function actualizateMouseSTATUS(e) {                                                                                                                                                   '+ '\n'+

' if (!e) var e = event                                                                                                                                                           '+ '\n'+

' if ( (e.type=="mousedown" || e.type=="mouseup") && e.button!=1) return true                                                                                                     '+ '\n'+

'                                                                                                                                                                                       '+ '\n'+

' var x=e.x+document.body.scrollLeft                                                                                                                                              '+ '\n'+

' var y=e.y+document.body.scrollTop                                                                                                                                               '+ '\n'+

'                                                                                                                                                                                       '+ '\n'+

' mouse.x   = x;                                                                                                                                                                  '+ '\n'+

' mouse.y   = y;                                                                                                                                                                  '+ '\n'+

'                                                                                                                                                                                       '+ '\n'+

'      if ( e.type == "mousedown" ) mouse.bt = "down";                                                                                                                            '+ '\n'+

' else if ( e.type == "mouseup" )   mouse.bt = "up";                                                                                                                              '+ '\n'+

'                                                                                                                                                                                       '+ '\n'+

' if (window.event) {                                                                                                                                                             '+ '\n'+

'  mouse.screenx=window.event.screenX;                                                                                                                                     '+ '\n'+

'  mouse.screeny=window.event.screenY;                                                                                                                                     '+ '\n'+

' } else {                                                                                                                                                                        '+ '\n'+

'  mouse.screenx=-1;                                                                                                                                                       '+ '\n'+

'  mouse.screeny=-1;                                                                                                                                                       '+ '\n'+

' }                                                                                                                                                                               '+ '\n'+

'                                                                                                                                                                                       '+ '\n'+

'}                                                                                                                                                                                      '+ '\n'+

'                                                                                                                                                                                       '+ '\n'+

'                                                                                                                                                                                       '+ '\n'+

'function initMouseEvents() {                                                                                                                                                           '+ '\n'+

' document.onmousedown = actualizateMouseSTATUS                                                                                                                                   '+ '\n'+

' document.onmousemove = actualizateMouseSTATUS                                                                                                                                   '+ '\n'+

' document.onmouseup   = actualizateMouseSTATUS                                                                                                                                   '+ '\n'+

' document.onselectstart = selectstart                                                                                                                                            '+ '\n'+

' document.ondragstart   = new Function("actualizateMouseSTATUS(event); return false;")                                                                                           '+ '\n'+

'}                                                                                                                                                                                      '+ '\n'+

'                                                                                                                                                                                       '+ '\n'+

'function selectstart(){                                                                                                                                                                '+ '\n'+

' if ( event.srcElement.tagName != "INPUT" && event.srcElement.tagName != "TEXTAREA") { return false; }                                                                           '+ '\n'+

' else { mouse.bt="up"; return true; }                                                                                                                                            '+ '\n'+

'}                                                                                                                                                                                      '+ '\n'+

'                       '+ '\n'+

'initMouseEvents()                                                                                                                                                                      '+ '\n'+

'                       '+ '\n'+

'var mywindowbt    ="up";                                                                                                                                                               '+ '\n'+

'var wincloseSTATUS="up";                                                                                                                                                               '+ '\n'+

'                       '+ '\n'+

'var ofx=0;                                                                                                                                                                             '+ '\n'+

'var ofy=0;                                                                                                                                                                             '+ '\n'+

'var opx=0;                                                                                                                                                                             '+ '\n'+

'var opy=0;                                                                                                                                                                             '+ '\n'+

'var px=0;                                                                                                                                                                              '+ '\n'+

'var py=0;                                                                                                                                                                              '+ '\n'+

'                       '+ '\n'+

'var wcpx1=-1, wcpy1=-1;                                                                                                                                                                '+ '\n'+

'var wcpx2=-1, wcpy2=-1;                                                                                                                                                                '+ '\n'+

'                       '+ '\n'+

'var wclosechanged = false;                                                                                                                                                             '+ '\n'+

'                       '+ '\n'+

'function initToMoveWin() {                                                                                                                                                             '+ '\n'+

'  if (wincloseSTATUS=="up" && ( mywindowbt=="up" || mywindowbt=="over") ) {                                                                                               '+ '\n'+

'                                                                  '+ '\n'+

'    if ( parent.mainloaded ) document.all["mywindowCLOCK"].style.visibility = "hidden";                                                    '+ '\n'+

'                                                                  '+ '\n'+

'    document.all["mywindowCLOCK"].style.pixelLeft=document.body.clientWidth-36           '+ '\n'+

'    document.all["mywindowCLOCK"].style.pixelTop =4                                                                             '+ '\n'+

'                                                                  '+ '\n'+

'    wcpx1 = document.all["mywindowCLOSE"].style.pixelLeft=document.body.clientWidth-18                                                                      '+ '\n'+

'    wcpy1 = document.all["mywindowCLOSE"].style.pixelTop =4                                                                                                 '+ '\n'+

'    wcpx2 = wcpx1 + 11 - 1                                                                                                                                  '+ '\n'+

'    wcpy2 = wcpy1 + 11 - 1                                                                                                                                  '+ '\n'+

'    if ( mouse.x >= wcpx1 && mouse.x <= wcpx2 && mouse.y >= wcpy1 && mouse.y <= wcpy2) {                                                                    '+ '\n'+

'     if (wclosechanged == false) {                                                                                                                   '+ '\n'+

'      document.all["mywindowCLOSE"].document.images["closewin"].src=windowCERRARImg_o.src                                        

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.