Created
October 14, 2025 10:35
-
-
Save stephensmitchell/fd9437e4e73954298bd1e0799dd4dbf9 to your computer and use it in GitHub Desktop.
Useful Dialogs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #https://help.alibre.com/articles/#!alibre-help-v28/useful-dialogs | |
| Win = Windows() | |
| Win.InfoDialog('I am about to create a part', 'My Script') | |
| Win.ErrorDialog("Oops. That didn't go as planned", 'My Script') | |
| # returns True for 'yes' and False for 'no' | |
| print Win.QuestionDialog('Shall I stop?', 'My Script') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment