Just a quick update on this now I have had more time to think and have a play with my code.
I am using the latest public release, so I didn’t need to go back to 1033 as I said above.
For my scenes that used text buttons with no background I used widget-v1, for everything else I used widget 2.0. The reason I used buttons with no background was I used a custom font that looks like handwriting. The buttons then look like writing and not a button (hard to understand but look up “Winning Post” on the app store and see the titlescreen screen shot).
Luckily on the scenes that used steppers I didn’t have text buttons, they where graphics. So just a quick change from default to defaultFile (capital F, thanks Danny!).
The other thing that tripped me up on a older app was I was using -
OnRelease = mybuttonEvent
Then in mybuttonEvent, the first line was -
if event.type == “release”
But for widget 2.0 I had to change it to == “began”
Hope this helps.
Dave