The ImageView user interface has a number of user dialogs. This section desribes properties and objects of the dialogs.
Structure of section:
Properties of dialog object:
alertDlg
Description:
Displays various alert and error messages.
List of default values:
Property name | Default value |
---|---|
backgroundColor | [#efefef] |
borderColor | [#848284] |
captionText | The value is the same as an alert message. |
captionColor | [#e7ebe7, #cec3ce] |
captionFontName | "_sans" |
captionFontSize | 11 |
captionFontBold | true |
captionFontItalic | false |
captionFontUnderline | false |
captionFontColor | #000000 |
Description of appropriate property you can find here Common properties of dialogs.
Examples:
The property of the alertDlg is assigned via flashvars object of SWFObject on the html page:
The falert dialog has two button objects. Description of these objects you can find here button object. The default values are the same except the following:flashvars["view.alertDlg.backgroundColor"] = "#fdfdfe|#d7e0e7";
- okButton.label = "Ok"
- cancelButton.label = "Cancel"
The property of the alertDlg.okButton is assigned via flashvars object of SWFObject on the html page:
flashvars["view.alertDlg.okButton.label"] = "Ok";
retryDlg
Description:
Displays retry dialog when error occur during upload process.
List of default values:
Property name | Default value |
---|---|
backgroundColor | [#efefef] |
borderColor | [#848284] |
captionText | "Retry file upload?" |
captionColor | [#e7ebe7, #cec3ce] |
captionFontName | "_sans" |
captionFontSize | 11 |
captionFontBold | true |
captionFontItalic | false |
captionFontUnderline | false |
captionFontColor | #000000 |
Description of appropriate property you can find here Common properties of dialogs.
Examples:
The property of the retryDlg is assigned via flashvars object of SWFObject on the html page:
The retry dialog has three button objects. Description of these objects you can find here button object: retryButton, cancelButton, skipButton. The default values are the same except the following:flashvars["view.retryDlg.backgroundColor"] = "#fdfdfe|#d7e0e7";
- retryButton.label = "Retry"
- cancelButton.label = "Cancel"
- skipButton.label = "Skip"
The property of the retryDlg.okButton is assigned via flashvars object of SWFObject on the html page:
flashvars["view.retryDlg.retryButton.label"] = "Ok";