| Namespace | tinymce | 
| Class | WindowManager | 
| Method | Defined By | 
|---|---|
| 
WindowManager(ed:Editor) Constructs a new window manager instance. | WindowManager | 
| 
alert(t:String, cb:function, s:Object):void Creates a alert dialog. | WindowManager | 
| 
close(w:Window):void Closes the specified window. | WindowManager | 
| 
confirm(t:String, cb:function, s:Object):void Creates a confirm dialog. | WindowManager | 
| 
createInstance(cl:String):Object Creates a instance of a class. | WindowManager | 
| 
open(s:Object, p:Object):void Opens a new window. | WindowManager | 
public 
						function WindowManager(ed:Editor)
| ed:Editor | Editor instance that the windows are bound to. | 
public 
						function alert(t:String, cb:function, s:Object):void
| t:String | Title for the new alert dialog. | 
| cb:function | Callback function to be executed after the user has selected ok. | 
| s:Object | Optional scope to execute the callback in. | 
public 
						function close(w:Window):void
| w:Window | Native window object to close. | 
public 
						function confirm(t:String, cb:function, s:Object):void
| t:String | Title for the new confirm dialog. | 
| cb:function | Callback function to be executed after the user has selected ok or cancel. | 
| s:Object | Optional scope to execute the callback in. | 
public 
						function createInstance(cl:String):Object
| cl:String | Class name to create an instance of. | 
public 
						function open(s:Object, p:Object):void
| s:Object | Optional name/value settings collection contains things like width/height/url etc. | 
| p:Object | Optional parameters/arguments collection can be used by the dialogs to retrive custom parameters. |