One click print screen app for a Bootcamp/Mac Windows - WIN+PrtScn emulation - info & download link

One click print screen app for a Bootcamp/Mac Windows - WIN+PrtScn emulation - info & download link

Yevhen Protsenko

4 года назад

2,143 Просмотров

Hello!

This is a one click (if on the taskbar) opportunity to make a screenshot, if you do not have a conventional keyboard, which is the case of using Windows on Mac (e.g. with Boot Camp).

This tiny software makes a screenshot, emulating the conventional for Windows_10 combination of pressing WIN+PrtScn.

No sound is heard, so the dimming of the screen is the only confirmation if it has been made.

The app is for Windows 10 with Java installed.
updated, 23-12-23
!!! Install Java - choose 'Windows Online' - from: java.com/en/download/manual.jsp

Just to remind, the screenshots are put into C:\Users\your_user_name\Documents\Pictures\Screenshots
And you can get there via "This PC"-"Pictures"-"Screenshots" too.

If you want to make a screenshot out of the full screen, please try this: https://superuser.com/questions/1106135/how-to-launch-an-application-with-a-keyboard-shortcut

If it doesn't work, please let me know.

Best regards!


Evgeniy Protsenko © 2020

updated, 23-12-23
The download link: https://1drv.ms/u/s!Am1LpyOTb8vajNdp56VFtxymaTVk5Q?e=tvRrpc



PS

The software was made with: Java (Robot class), IntelliJ IDEA, JSmooth and launch4j respectively for wrapping into an .exe file.

updated, 23-12-23
Java Code:

import java.awt.*;
import java.awt.event.KeyEvent;

public class PrintScreen {
public static void main(String[] args) throws AWTException {

Robot robot = new Robot();

robot.keyPress(KeyEvent.VK_WINDOWS);
robot.keyPress(KeyEvent.VK_PRINTSCREEN);

robot.keyRelease(KeyEvent.VK_WINDOWS);
robot.keyRelease(KeyEvent.VK_PRINTSCREEN);

}
}

Тэги:

#windows_on_mac_screen_shot #windows_Boot_Camp_screen_shop #windows_Boot_Camp_print_screen #one_click_print_screen #one_click_screen_shot
Ссылки и html тэги не поддерживаются


Комментарии: