All functions Mac OS X Windows Crossplatform Components New in version: 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 2.0
Component: Window
Mac OS X: Works
Windows: Works
MBS( "Window.Show" ; WindowRef )
Parameter | Description | Example value |
---|---|---|
WindowRef | Window Reference is the Unique OS level window ID. You can obtain this by using the Window.FindByTitle or the Window.FindByindex Function | "" |
Shows the window Specified by the Window Reference. This can be used to show a window without bringing the window to the front.
Show a Window without bringing it the front
Let(
[
/*-----------------PARAMETERS--------------------*/
WindowRef = MBS( "Window.FindByTitle" ; "My Window" )
];
/*-------------------FUNCTION----------------------*/
MBS(
"Window.Show";
WindowRef
)
)
Feedback: Report problem or ask question.