Image Capture screen always opens with a small screen

?Each time I launch Image Capture, it pops up with a very small screen. I know that I can select full screen, but I like to have something in between.

Any ideas?

Many thanks in advance!

MacBook Pro 16″, macOS 15.1

Posted on Dec 11, 2024 6:40 AM

Reply
Question marked as Top-ranking reply

Posted on Dec 11, 2024 12:02 PM

Here is an AppleScript that you can use to open the Image Capture app with whatever size you wish. Just change the numeric values for xSize & ySize. You can also move the position of the window opens by modifying xPos & yPos.


set theApp to "Image Capture"


tell application theApp
	activate
	reopen
end tell


set xPos to 0
set yPos to 0


set xSize to 1800
set ySize to 500


tell application "System Events"
	tell process theApp
		set position of front window to {xPos, yPos}
		set size of front window to {xSize, ySize}
	end tell
end tell
4 replies
Question marked as Top-ranking reply

Dec 11, 2024 12:02 PM in response to GreatJay

Here is an AppleScript that you can use to open the Image Capture app with whatever size you wish. Just change the numeric values for xSize & ySize. You can also move the position of the window opens by modifying xPos & yPos.


set theApp to "Image Capture"


tell application theApp
	activate
	reopen
end tell


set xPos to 0
set yPos to 0


set xSize to 1800
set ySize to 500


tell application "System Events"
	tell process theApp
		set position of front window to {xPos, yPos}
		set size of front window to {xSize, ySize}
	end tell
end tell

Dec 11, 2024 1:38 PM in response to GreatJay

Just curious what may be missing from my solution?


You can convert the script to an "app" when you save it. If you have already saved it as a script, then re-open it and hold the Option key when you click "File" so that you get the hidden "Save As...." option. Use the drop down list box on the Save dialog & select "File Format:" as "Application" so double-clicking on it will behave just like a regular app.


Unfortunately Image Capture is one of those apps which don't have any customization settings. I had to dig a bit to find how to resize it with the Apple Script. If Image Capture had been scriptable, then I could have given you a three line script.


I have only recently dabbled with some of the macOS AppleScript & Automator actions. If something is missing from my solution, it may be possible to do more with it although it may be out of my skill set at the moment. Maybe someone else will see your thread and have a better option.



This thread has been closed by the system or the community team. You may vote for any posts you find helpful, or search the Community for additional answers.

Image Capture screen always opens with a small screen

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.