Currently, I am developing an application with AppleScript.
I checked the official Reference below, but there is a point that I am not sure how to implement, so let me ask you a question. (https://developer.apple.com/library/archive/documentation/LanguagesUtilities/Conceptual/MacAutomationScriptingGuide/DisplayProgress.html)
By using the progress command as shown in the script example below, we are trying to inform users how many times the repeat process has been completed.
set progress total steps to 5
set progress completed steps to 0
repeat with a from 1 to 5
set progress completed steps to progress completed steps + 1
delay 0.2
end repeat
delay 0.2
display dialog "Progress End"
I am expecting that "If the progress total steps and completed steps match, progress description ends".
Is it possible to implement as expected? If so, can you tell me how to do it?