| | Class | Description |
|---|
| | Application |
An object representing the Application. |
| | ApplicationOptions | |
| | CaptureOptions | |
| | CapturingWindow |
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);
|
| | ExternalWindow | |
| | InterApplicationBus | |
| | Notification |
A Notification represents a window which is shown briefly
to the user on the bottom-right corner of the primary monitor. |
| | NotificationOptions | |
| | RuntimeConfiguration |
Configuration for launching OpenFin Runtime
|
| | RuntimeLauncher | |
| | System |
|
| | Window |
A basic window that wraps a native HTML window. |
| | WindowController | |
| | WindowHandle | |
| | WindowOptions | |