Forum Webscript.Ru

Программирование => JavaScript & JScript => Тема начата: commander от 05 Октября 2004, 18:32:56

Название: window.open features
Отправлено: commander от 05 Октября 2004, 18:32:56
Вопросик такой:
Как открыть полпап без строки заголовка (title) перерыл кучу документации... но видимо либо не там искал, либо не то искал...

--------------------------------
window.open("/cgi-bin/test.cgi",null,"height=500,width=600,status=no,toolbar=no,menubar=no,location=no, scrollbars=no, screenTop=no");
Название: window.open features
Отправлено: alm от 06 Октября 2004, 07:38:01
никак. Как ты себе вообще это представляешь, окошко без заголовка?
Название: window.open features
Отправлено: commander от 06 Октября 2004, 09:36:23
alm
то что это можно сделать сомнений у меня нету... вопрос в том как?
Название: window.open features
Отправлено: ThE0ReTiC от 06 Октября 2004, 21:50:57
self.menubar.visible=false;
self.toolbar.visible=false;
self.locationbar.visible=false;
self.personalbar.visible=false;
self.scrollbars.visible=false;
self.statusbar.visible=false;
http://devedge.netscape.com/library/manuals/2000/javascript/1.3/reference/window.html
Название: window.open features
Отправлено: alm от 07 Октября 2004, 05:26:40
:)

to ThE0ReTiC ты вопрос читал?
мне показалось вопрос был о title
Название: window.open features
Отправлено: ThE0ReTiC от 07 Октября 2004, 11:17:46
commander
FullScreen Property

--------------------------------------------------------------------------------

Sets or retrieves a Boolean value that indicates whether Microsoft® Internet Explorer is in full-screen or normal window mode.

Syntax

InternetExplorer.FullScreen(bFullScreen) [ = bFullScreen ]
Possible Values

bFullScreen Boolean that specifies or receives one of the following values:True Internet Explorer is in full-screen mode.
False Default. Internet Explorer is in normal window mode.
 

The property is read/write. The property has a default value of False.

Remarks

In full-screen mode, the Internet Explorer main window is maximized and the status bar, toolbar, menu bar, and title bar are hidden.

The WebBrowser object ignores this property.

Applies To

[ Object Name ]
Platform Version
Win32:  
Windows CE:  
Version data is listed when the mouse hovers over a link, or the link has focus.
 InternetExplorer
Move the mouse pointer over an element in the Applies To list to display availability information for the listed platforms. Internet Explorer does not expose this member on platforms that are not listed.

это если надо только IE ориентированное решение
Название: window.open features
Отправлено: commander от 07 Октября 2004, 11:55:55
hi! full screen я уже пробовал... не подходит... а по поводу titlebar навел справки... в IE убрать его можно только и с применением ActiveX, а в Netscape можно сделать так:

netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserWrite");
self.window.toolbar.visible = true;