Dashcode newbie question: Change a button's label programmatically
- by Koning Baard XIV
Hi all!
I'm new to Mac OS X Dashboard developement. Now, I have a button with id b_start.
When that button is clicked, I want the label of the button to change to "Round".
Now I have tried these, but none of them work:
document.getElementById("b_start").label = "Round";
document.getElementById("b_start").text = "Round";…