A | |
addEventListener, it. | |
addLocalComponent, it. | |
addNetworkComponent, it. | |
C | |
close | |
connectLocal, it. | |
connectNetwork, it. | |
D | |
disconnectLocal, it. | |
disconnectNetwork, it. | |
downloadFile, it. | |
F | |
Functions | |
G | |
getClass, it. | |
getInfo, it. | |
getLastPosition, it. | |
getMenu, it. | |
getMinimumSize, it. | |
getPosition, it. | |
getPreferredSize, it. | |
getSize, it. | |
getState, it. | |
getTitle, it. | |
getTrasparent, it. | |
getType, it. | |
getURI, it. | |
getWindowStyle, it. | |
H | |
hide, it. | |
hideContent, it. | |
I | |
isConnected, it. | |
isTrasparent, it. | |
it. | |
it. | |
it. | |
it. | |
it. | |
M | |
moveTo, it. | |
N | |
needToHideContentOnMove, it. | |
needToHideContentOnResize, it. | |
newError, it. | |
O | |
onConnect, it. | |
onDisconnect, it. | |
onStatus, it. | |
openLocal, it. | |
openNetwork, it. | |
P | |
popStatusBarMessage, it. | |
pushStatusBarMessage, it. | |
R | |
recordNetStream, it. | |
recordSharedObject, it. | |
removeLocalComponent, it. | |
removeNetworkComponent, it. |
Adds a listener for a given event.
function addEventListener( eventType: String, listener: Object ):Void
This method is usually called by a component that wants to be added to the list of local components (connected through LocalConnection).
function addLocalComponent ( component: IClientComponent ):Void
This method is usually called by a component that wants to be added to the list of network components.
function addNetworkComponent ( component: IClientComponent ):Void
This method is called when the window is asked to be closed.
function close ( ):Void
Closes the window.
function close():Void
This method fully connects all already added local components and the Connector itself.
function connectLocal ():Void
This method fully connects all already added network components and the Connector itself.
function connectNetwork ():Void
This method fully disconnects all local components and the Connector itself.
function disconnectLocal ():Void
This method fully disconnects all network components and the Connector itself.
function disconnectNetwork ():Void
This method downloads a file of name name from the address specified by URL, after having set the callbacks.
function downloadFile( url: String, callback: Object, name: String ):Void
This method must return the class name implemented on the server.
function getClass():String
This method returns all the messages generated by the connection.
function getInfo ():Array
Returns the last window position.
function getLastPosition():Position
Returns the window menu in the standard format used by the Menu class.
function getMenu():XML
This method is called when the minimum window size is requested.
function getMinimumSize():Size
Returns the current window position.
function getPosition():Position
This method is called when the default window size is requested.
function getPreferredSize():Size
Returns the window size.
function getSize():Size
Returns the current window state.
function getState():String
Returns the window title.
function getTitle():String
Returns True if the window is transparent.
function getTrasparent():Boolean
NOT YET IMPLEMENTED
function getType():String
This method must return the unique id of the server side class instance the component wants to ask for.
function getURI():String
Returns the window style.
function getWindowStyle():Object
Hides the window and its content.
function hide():Void
Hides only the window content.
function hideContent():Void
This method returns a boolean value that says if the Connector is connected.
function isConnected():Boolean
Returns True if the window is transparent.
function isTrasparent():Boolean
Moves the window to the specified coordinates.
function moveTo( x: Number, y: Number ):Void
Says if the content is hidden while moving the window.
function needToHideContentOnMove():Boolean
Says if the content is hidden while resizing the window.
function needToHideContentOnResize():Boolean
Generates an error message and shows it in the popup area if the popup argument is True.
function newError( err, popup, level, id ):Void
This event is generated by the Core on component connection.
function onConnect( con: IConnector ):Void
This event is generated on component disconnection, for any reason.
function onDisconnect():Void
This event is generated on every notification by the Connector object.
function onStatus ( info: Object ):Void
not fully implemented
function openLocal ( uri: String ):Void
This method opens a network connection.
function openNetwork ( uri: String, params: Object ):IConnector
Removes the last message from the window status bar.
function popStatusBarMessage():Void
Adds a message in the window status bar.
function pushStatusBarMessage( msg: String ):Void
This method allows a component to register a NetStream.
function recordNetStream ( name: String, component: IClientComponent, listener: Object, object: Object, callbacks: Object ):NetStream
This method allows a component to register a SharedObject.
function recordSharedObject ( name: String, component: IClientComponent, listener: Object, object: Object, persistence: Boolean, callbacks: Object ):SharedObject
This method is usually called by a component that wants to be removed from the list of local components (connected through LocalConnection).
function removeLocalComponent ( component: IClientComponent ):Void
This method is usually called by a component that wants to be removed from the list of network components.
function removeNetworkComponent ( component: IClientComponent ) :Void