Skip to main content
A newer version of this page is available. .

Flash Dialogs

  • 2 minutes to read

Flash dialogs include the Insert Flash and Change Flash dialogs that allow end users to insert flash content to the editor and change it, respectively.

A dialog can be invoked in the design view in the following ways.

Dialog Structure

InsertFlashDialog

A flash dialog contains the three tabs listed below.

Tab caption Tab visibility Description
From your computer HtmlEditorInsertMediaDialogSettings.ShowFileUploadSection Allows end-users to upload their local files.
From the gallery HtmlEditorFileManagerSettingsBase.Enabled Allows end-users to add to editor content flash files from a predefined gallery. You can customize the gallery settings using the HtmlEditorInsertFlashDialogSettings.SettingsFlashSelector and HtmlEditorInsertFlashDialogSettings.SettingsFlashUpload properties.
From the web (URL) HtmlEditorInsertMediaDialogSettings.ShowInsertFromWebSection Allows end-users to upload files from the web.

When the More options check box is selected, the dialog displays the settings section, which allows end-users to customize flash element settings (size, position, description and style settings such as margins, border and CSS class). You can hide the check box by setting the HtmlEditorInsertMediaDialogSettingsBase.ShowMoreOptionsButton property to false.

Dialog Customization

You can customize dialog settings programmatically by using the HtmlEditorDefaultDialogSettings.InsertFlashDialog property; or using the design-time ASPxHtmlEditor Designer.

Designer_InsertFlash

Online Demo

Insert Media Content

ASPxHtmlEditor provides a comprehensive API, allowing you to operate with the opened dialog programmatically on the client side.

Dialog UI elements

Client method

Common Dialog UI elements

ASPxClientHtmlEditorMediaDialogBase.GetMoreOptionsCheckBox

ASPxClientHtmlEditorDialogBase.GetOkButton

ASPxClientHtmlEditorDialogBase.GetCancelButton

“From the web (URL)” Tab UI elements

ASPxClientHtmlEditorLinkDialog.GetUrlTextBox

“Common Settings” Tab UI elements

ASPxClientHtmlEditorMediaDialogBase.GetWidthSpinEdit

ASPxClientHtmlEditorMediaDialogBase.GetHeightSpinEdit

ASPxClientHtmlEditorMediaDialogBase.GetPositionComboBox

ASPxClientHtmlEditorFlashDialog.GetQualityComboBox

ASPxClientHtmlEditorFlashDialog.GetAutoPlayCheckBox

ASPxClientHtmlEditorFlashDialog.GetEnableFlashMenuCheckBox

ASPxClientHtmlEditorFlashDialog.GetLoopCheckBox

ASPxClientHtmlEditorFlashDialog.GetAllowFullscreenCheckBox

“Style Settings” Tab UI elements

ASPxClientHtmlEditorEditElementDialog.GetTopMarginTextBox

ASPxClientHtmlEditorEditElementDialog.GetRightMarginTextBox

ASPxClientHtmlEditorEditElementDialog.GetBottomMarginTextBox

ASPxClientHtmlEditorEditElementDialog.GetLeftMarginTextBox

ASPxClientHtmlEditorEditElementDialog.GetBorderWidthSpinEdit

ASPxClientHtmlEditorEditElementDialog.GetBorderColorColorEdit

ASPxClientHtmlEditorEditElementDialog.GetBorderStyleComboBox

ASPxHtmlEditor-ClientAPI-InsertFlash-1