Skip to main content
j.khakase
Inspiring
March 29, 2024
Answered

How to get the Dialog at starting without Holding ALT KEY

  • March 29, 2024
  • 1 reply
  • 343 views

Hello,

Where to change in this script to get the Dialog at Starting while run it, without Holding ALT Key.

This topic has been closed for replies.
Correct answer RobOctopus

line 20.

if (ScriptUI.environment.keyboardState.altKey)
NUM_POINTS = parseInt(prompt("enter point density. recommended range is 100..10000", 100))
remove the if statment

1 reply

RobOctopus
RobOctopusCorrect answer
Inspiring
March 29, 2024

line 20.

if (ScriptUI.environment.keyboardState.altKey)
NUM_POINTS = parseInt(prompt("enter point density. recommended range is 100..10000", 100))
remove the if statment
j.khakase
j.khakaseAuthor
Inspiring
March 30, 2024

Thank you so much @RobOctopus , its working as expect