home *** CD-ROM | disk | FTP | other *** search
- !!Script
-
- // Turn on conditional compiliation support
- @cc_on;
-
- @set @fullscreen = true;
-
- var gOutput = getOutput();
-
- function DoCommand()
- {
- var path = File.getToolsPath;
- path += "\\Experimental\\SampleModelessDialog.html";
-
- var size = Application.getScreenSize();
- var windowRect = Application.getWindowRect();
- var windowRectRestored = Application.getWindowRect();
- Host.setGlobal("oldRect",windowRectRestored);
-
- @if (@fullscreen)
-
- var rect = newRect();
- rect.top = 0;
- rect.bottom = size.y;
- rect.left = 0;
- rect.right = size.x/3;
-
- windowRect.left = rect.right;
- windowRect.right = size.x;
- windowRect.top = 0;
- windowRect.bottom = size.y;
-
- Application.setWindowRect(windowRect);
-
- @else
-
- var rect = newRect();
- rect.top = windowRect.top;
- rect.bottom = windowRect.bottom;
- rect.left = 0;
- rect.right = windowRect.left;
-
- @end
-
- showHtmlPopup(path, "Title", rect);
- }
-
- !!/Script
-
-