Clears cached data containing window state/positions,
application resource files (images, HTML, JavaScript files)
cookies, and items stored in the Local Storage.
Clears cached data containing window state/positions,
application resource files (images, HTML, JavaScript files)
cookies, and items stored in the Local Storage.
Retrieves an array of data (uuid, running/active state) for all application windows
The object passed to callback takes the form:
[
{
uuid: (string) uuid of the application,
isRunning: (bool) true when the application is running/active
},
...
The object passed to callback takes the form:
[
{
uuid: (string) uuid of the application,
mainWindow: {
name: (string) name of the main window,
top: (integer) top-most coordinate of the main window,
right: (integer) right-most coordinate of the main window,
bottom: (integer) bottom-most coordinate of the main window,
left: (integer) left-most coordinate of the main window
},
childWindows: [{
name: (string) name of the child window,
top: (integer) top-most coordinate of the child window,
right: (integer) right-most coordinate of the child window,
bottom: (integer) bottom-most coordinate of the child window,
left: (integer) left-most coordinate of the child window
},
...
The DefaultCentered property specifies that the window will be positioned in the
center of the primary monitor when loaded for the first time on a machine.
Gets value of interrupt
The Interrupt property represents a flag which determines if a call to Window.animate
will interrupt all pending transitions, or add itself to the queue.
Retrieves an array of data objects for all available logs
Each object in the returned array takes the form:
{
name: (string) the filename of the log,
size: (integer) the size of the log in bytes,
date: (integer) the unix time at which the log was created
}
Returns the mouse in virtual screen coordinates (left, top)
The returned object takes the form:
{
top: (integer) the top position of the mouse in virtual screen
coordinates,
left: (integer) the left position of the mouse in virtual screen
coordinates
}
Retrieves an array of all App Desktop processes that are currently running
Each element in the array is an object containing the uuid
and the name of the application to which the process belongs.
Retrieves the proxy settings object
The proxy object the callback receives takes the following form:
{
type: (string) "system" or "named",
proxyAddress: (string) the address of the proxy server,
proxyPort: (integer) the port of proxy server
}
Joins the same window group as the specified window
When windows are joined, if the user moves one of the windows,
all other windows in the same group move too.
Removes a previously registered event listener from the specified event
Supported system event types are:
deskband-icon-clicked
desktop-icon-clicked
monitor-info-changed
The DefaultCentered property specifies that the window will be positioned in the
center of the primary monitor when loaded for the first time on a machine.