I'm trying to write a script to un-minimize an app that was previously minimized to dock.
Problem is, I can't find the relevant property. I've tried miniaturized
and collapsed
but neither the window nor the process seems to have those?
The app I use (for testing) is Zipeg, a free packing tool.
I've also tried to click the button which happily MINIMIZES the app, but gives me an error when running on an already minimized app to restore it, probably because no window is visible. This script is below.
tell application "System Events"
tell process "Zipeg"
click button 1 of window 1
end tell
end tell
The script I used to list properties is below.
tell application "System Events"
tell process "Zipeg"
get properties
tell window 1
get properties
end tell
end tell
end tell
Any ideas?