I want to add an alert message to my python add-in(which will be like, when I click a button it will summon a warning message ). But I tried error message functions like : AddError, AddWarning and they just dont do anything.
asked Oct 17, 2017 at 13:46
1 Answer 1
As per the documentation, you have to use the pythonaddins.MessageBox()
.
pythonaddins.MessageBox("your error message", "Error", 0)
answered Oct 17, 2017 at 14:49
lang-py