// // [1] Using ApplicationUpdaterUI as a popup window using ActionScript var updater: ApplicationUpdaterUI = new ApplicationUpdaterUI( new File ( 'pathToYourUpdaterXML' ), true, true ); // Optional: setting skin updater.setStyle('skinClass', de.websector.utils.updater.ui.skins.silver.AppUpdaterUISilverSkin); // Optional: change the height and width of the window updater.windowHeight = 300; updater.windowWidth = 500; // check for updates updater.checkNow(); // // [2] Using ApplicationUpdaterUI as an embedded view within your application // Important: Avoid using popup window: useWindow=false (default is true) // Optional: setting skin class via "skinClass" // Optional: If the view should be visible only if an update available set invisibleCheck="true" (default is false)