Interface fever.app.context.abstract.IDialog

Description

Defines available methods for Dialog context.

Some context still with Asynchronous command system.
All methods have a optional arguments named handler to allow callback definition.

See Also

Method Index

alert(), confirm(), message(), showBrowseFolderDialog(), showFileOpenDialog(), showFileSaveDialog()

Method Detail

showFileOpenDialog

public function showFileOpenDialog(caption:String, filter:FileFilterCollection, multipleSelect:Boolean, handler:Delegate):String

Opens a File open chooser dialog.

showFileSaveDialog

public function showFileSaveDialog(caption:String, filterList:FileFilterCollection, fileName:String, handler:Delegate):String

Opens a File save chooser dialog.

showBrowseFolderDialog

public function showBrowseFolderDialog(caption:String, handler:Delegate):String

Opens a Browse folder dialog.

confirm

public function confirm(caption:String, handler:Delegate):Boolean

Opens a confirm dialog.

alert

public function alert(caption:String, handler:Delegate):Void

Opens a alert dialog.

message

public function message(text:String, handler:Delegate):Void

Opens a message dialog.