A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  
capture(captureOptions:fin.desktop:CaptureOptions, callback:Function, errorCallback:Function) — method, class fin.desktop.CapturingWindow
Embeds an Air window into OpenFin window
CaptureOptions — class, package fin.desktop
CaptureOptions() — Constructor, class fin.desktop.CaptureOptions
CapturingWindow — class, package fin.desktop
A object that support embedding of an Air window into an OpenFin window To embed an Air window into an existing OpenFin window: var captureOptions:CaptureOptions = new CaptureOptions(); captureOptions.applicationUuid = existingAppUuid; captureOptions.windowName = existingWindowName; captureOptions.borderTop = captureOptions.borderRight = captureOptions.borderBottom = captureOptions.borderLeft = 30; captureWindow = new CapturingWindow(stage.nativeWindow); captureWindow.capture(captureOptions); To embed an Air window into a new OpenFin window of an existing OpenFin app: var captureOptions:CaptureOptions = new CaptureOptions(); captureOptions.applicationUuid = existingAppUuid; var windowOptions:WindowOptions = new WindowOptions(); windowOptions.autoShow = true; windowOptions.frame = false; windowOptions.name = "myAirWindowParent"; windowOptions.url = "http://localhost:8080/AirParent.html"; // populate other attributes of windowOptions captureOptions.windowOptions = windowOptions; captureOptions.borderTop = captureOptions.borderRight = captureOptions.borderBottom = captureOptions.borderLeft = 30; captureWindow = new CapturingWindow(stage.nativeWindow); captureWindow.capture(captureOptions); To embed an Air window into a new OpenFin window of a new OpenFin app: var captureOptions:CaptureOptions = new CaptureOptions(); var appOptions = new ApplicationOptions(newAppUuid, "http://localhost:8080/AirParent.html"); var windowOptions:WindowOptions = new WindowOptions(); windowOptions.autoShow = true; windowOptions.frame = false; // populate other attributes of windowOptions appOptions.mainWindowOptions = windowOptions; captureOptions.applicationOptions = appOptions; captureOptions.borderTop = captureOptions.borderRight = captureOptions.borderBottom = captureOptions.borderLeft = 30; captureWindow = new CapturingWindow(stage.nativeWindow); captureWindow.capture(captureOptions);
CapturingWindow(nativeWindow:flash.display:NativeWindow) — Constructor, class fin.desktop.CapturingWindow
Constructor
clearCache(cashe:Boolean, cookies:Boolean, localStorage:Boolean, appCache:Boolean, userData:Boolean, callback:Function, errorCallback:Function) — method, class fin.desktop.System
Clears cached data containing window state/positions, application resource files (images, HTML, JavaScript files) cookies, and items stored in the Local Storage.
CLICK — Constant Static Property, class fin.desktop.events.NotificationEvent
close(force:Boolean, callback:Function, errorCallback:Function) — method, class fin.desktop.Application
Closes the application and any child windows created by the application
close(callback:Function, errorCallback:Function) — method, class fin.desktop.Notification
Closes the notification
close(callback:Function, errorCallback:Function) — method, class fin.desktop.Window
Closes the window
CLOSED — Constant Static Property, class fin.desktop.events.ApplicationEvent
CLOSED — Constant Static Property, class fin.desktop.events.NotificationEvent
CLOSED — Constant Static Property, class fin.desktop.events.WindowEvent
CLOSE_REQUESTED — Constant Static Property, class fin.desktop.events.WindowEvent
_connection — Property, class fin.desktop.events.DesktopEventManager
connectionTimeout — Property, class fin.desktop.RuntimeConfiguration
Get timeout in milli-seconds
connectionUuid — Property, class fin.desktop.RuntimeConfiguration
ConsoleTarget — class, package fin.desktop.logging
ConsoleTarget() — Constructor, class fin.desktop.logging.ConsoleTarget
contextMenu — Property, class fin.desktop.WindowOptions
cornerRounding — Property, class fin.desktop.WindowOptions
CRASHED — Constant Static Property, class fin.desktop.events.ApplicationEvent
createChildWindow(windowOptions:fin.desktop:WindowOptions, callback:Function, errorCallback:Function) — method, class fin.desktop.Application
Create a child window of this application
createPayload(object:Object) — method, class fin.desktop.events.DesktopEventManager
createProxySocket(options:Object, callback:Function, errorCallback:Function) — method, class fin.desktop.System
Create a Chromium proxy socket options object takes the form: { url: (string) destination of the proxy socket } The returned object takes the form: { localPort: (integer) port number the proxy socket is listening to }
createRVMConfig(cfg:fin.desktop:RuntimeConfiguration) — Static Method , class fin.desktop.RuntimeLauncher
createWindowUsingApplication(application:fin.desktop:Application) — Static Method , class fin.desktop.Window
A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z