Mioplanet Documentation Center
Resources and Help
HomeProductsMioScriptJavaScriptTechNotesPHP
   Home | MioScript | window_resizable.k SEARCH    

window_resizable.k

  Functions
window.resizable.init

  Libraries
alertEngineEx.js
channels.js
gui.k
mioEngine.js
optionsMenu.js
popupAlert.kLIB
popupAlertEx.js
scrollingTicker.js
stats.js
window_resizable.k
xmlFeed.js
xmlSettings.js

  TechNotes
Adding a Login feature
Get the real size of a web page
How to create a Business Card
How to create a Desktop Alert
How to create a Desktop Ticker
How to create a Scrolling Alert Software
How to create a Scrolling Ticker
How to create a simple RSS Reader
How to debug
LCD Monitor Chart: Screen Resolution, Size, Pitch, Display Area
Managing read marks
Measuring Elements in JavaScript
Media center remote control
Statistics: How to track users and actions
XML Configuration File Format

Library
window_resizable.k

Language: MioScript
Product: MioFactory


With this library, you can easily create a resizable window.

The size, position, and state of the window are saved in the registry database and restored when the application is restarted.

How to use this library

 
In the event event.load, call the function window.resizable.init.

In the event event.terminate, call the function window.resizable.terminate to save the size, position and state of the window.

It is recommended to call this function as soon as the event event.terminate is raised so the window is hidden immediately.
 




MioScript Sample Code

event.load
    app.init()
    window.resizable.init()
event.end

event.terminate()
     window.resizable.terminate()
event.end