Color Change Quit button - handy tip

Thought I would pass along a tip I’m using in Pan X. It sometimes takes a long time to quit a particular utility, and I’m not sure if Panorama is responding to my request. I’ve put procedure called .Dim Color in all my many utilities that changes the red quit button to light grey. I’m also using it for other buttons in various places.

.Dim Color procedure:
ChangeObject info(“ClickedObjectID”), “color”, htmlrgb(“A9A9A9”)

In the .Initialize procedure, I restore the red color:
ChangeObject “Quit”, “color”, htmlrgb(“B00000”)

Screen Shot 2021-09-30 at 11.37.37 AM

Screen Shot 2021-09-30 at 11.45.15 AM