Action

Select Prompt

Last update about 5 years ago - Unlisted

Displays prompt with several types of date picker.

Steps

  • script

    // Prompt example
    // Using Select 
    
    var p = Prompt.create();
    p.title = "Select Prompt Example";
    p.message = "Demonstrates options for single and multi-option select in prompts.";
    
    var options = ["Practice", "Game"];
    var selectedOptions = ["Second"];
    
    // single selection
    p.addSelect("s1", "Select one...", options, selectedOptions, false);
    
    p.addButton("OK");
    
    if (p.show()) {
    	var s = "Selected: " + p.fieldValues["s1"] + "\n\n";
    	s += "Multi-Select: " + p.fieldValues["s2"] + "\n";
    	alert(s);
    }
  • insertText

    template
    [[Prompt_Button]]

Options

  • After Success Default
    Notification Info
    Log Level Info
Items available in the Drafts Directory are uploaded by community members. Use appropriate caution reviewing downloaded items before use.