*Prompt() - MDL

Specifies the prompt for the user-defined form.

Syntax

*Prompt("form_prompt")

Arguments

form_prompt
The prompt to be displayed for the user-defined form.
Data type: string

Example

*BeginCustomWizard(test1, "Translator")
*Prompt("This is a test prompt for the custom wizard")
 *Form(frm_type, "Select Translator Type", frm_type, dset)
 *Form(frm_fea_trans, "Select FEA Results Translator", frm_fea_trans, dset)
 *Form(frm_gen_trans, "Select General Translator", frm_gen_trans, dset)
 *Form(frm_data_input, "Select Files", frm_data_input, dset)
 *Form(frm_abtrans_input, "Select Files", frm_abtrans_input, dset)
 *Form(frm_mvg_input, "Select Files", frm_mvg_input, dset)
 *Dataset( dset, "Input dataset", dset1_def)

 *BeginFlowControl()
   *ShowForm(frm_type, SHOW_NEXT, HIDE_BACK, HIDE_FINISH)
     *if(dset.type_name.value == "Abtrans")
       *ShowForm(frm_abtrans_input, HIDE_NEXT, SHOW_BACK, SHOW_FINISH)
     *elseif(dset.type_name.value == "FEA Results")
       *ShowForm(frm_fea_trans, SHOW_NEXT, SHOW_BACK, HIDE_FINISH)
       *ShowForm(frm_data_input, HIDE_NEXT, SHOW_BACK, SHOW_FINISH)
     *elseif(dset.type_name.value == "General")
       *ShowForm(frm_gen_trans, SHOW_NEXT, SHOW_BACK, HIDE_FINISH)
       *ShowForm(frm_data_input, HIDE_NEXT, SHOW_BACK, SHOW_FINISH)
     *else()
      *ShowForm(frm_mvg_input, HIDE_NEXT, SHOW_BACK, SHOW_FINISH)
     *endif()
 *EndFlowControl()
 ...
*EndCustomWizard()

Context

*DefineForm()