Edit in GitHubLog an issue

window.prompt()

Returns: string - message entered by the user in the prompt field or default value if nothing entered.

The following are additional simple alerts supported by UXP

  1. confirm()
  2. alert()
    Since: v7.0.0 Displays a Prompt message dialog putting the application in a modal state while not blocking the Javascript thread and still allowing processing of events in the main event loop.
ParamTypeDescription
message
string
A string of text to display to the user.
prompt
string
Default value for the field.

Example

Copied to your clipboard
// Below prompt function has 2 params
// "Enter your name: " - Message to display
// "Adobe" - Default value that will be present in the Prompt pop-up at launch
prompt("Enter your name: ","Adobe");
Was this helpful?
  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2023 Adobe. All rights reserved.