Notifications
Clear all

[Closed] Confirmation Diaolog

I have a tiny script that has messed me up a few times by me inadvertantly clicking the button and not realizing it, only until after render time. How can I put in a little confirmation dialog as a double check as to whether I want to run the script? (Like a Proceed? button once I click the toolbar button). I guess alternatively I could assign it to a kb shortcut instead of a toolbar button…
(the script has no UI/rollout floater (yet) just a behind the scene command)

3 Replies
rollout sakTestRollout "Test" (
 button sakText_btn "Print Something"
 
 on sakText_btn pressed do (
 local tmp = yesNoCancelBox "Do you want to do this?" title:"Run Script"
  if (tmp == #yes) then (
   print "Run Some Script"
  )
 )
)
createDialog sakTestRollout

In place of the print statement, you can run your funcion or script, etc.

rollout sakTestRollout "Test" ( 
button sakText_btn "Print Something" 
 
on sakText_btn pressed do ( 
  local tmp = queryBox "Do you want to do this?" title:"Run Script" 
 
  if (tmp == true) then ( 
   print "Run Some Script" 
  ) 
 ) 
) 
createDialog sakTestRollout 

Query box is better. No need for the cancel option.

Thanks!That will definitely work