Chooser dialog to customize application Look and Feel.
Dialog is open in modal mode to avoid user interactions during customisation process.
Modifications can be process at runtime or at application restart
Using a SharedLocal object saved object.
Use enabledRuntimeSwapping property to define if runtime is enabled or not.
Take a look at Theme class to know how to register AsWing Look'nFeel.
Register some themes :
var at : ThemeLocator = ThemeLocator.getInstance(); at.register( "Office 2003", new Office2003LAF() ); at.register( "WinXP 2003", new WinXPLAF() ); at.addEventListener( FvThemeLocator.onChangeEVENT, this, _onUIUpdate ); at.load( "WinXP 2003" );
Opens chooser
FvThemeChooser.open();