|
|
|
|
Functions
Events
MioScript Reference
|
|
Syntax
| window.ID.movable(movable) |
Parameters
| KEYWORD | movable | true: The user can move the window by dragging it with the mouse. false: The window cannot be moved. XONLY: The user can move the window horizontally - vertical position is fixed. YONLY: The user can move the window vertically - horizontal position is fixed. |
Return value
No value is returned.
Description
Call this function to set how the window can be moved by the user.
When the mouse is over a web browser object (browser...), this setting is not used.
Instead, the window can be moved when the tag under the mouse has an attribute movable set to true, xonly or yonly as follow: .
true: The window can be moved.
xonly: The window can be moved on the horizontal axis.
yonly: The window can be moved on the vertical axis. |
MioScript Sample Code
window.main.movable(XOnly) |
|
|
|