Is there a way to trigger the built in Mac screenshot capture for page and area from a webpage? Manually I can trigger on my keyboard the
Command + shift + 4
or Command + Shift + 3
In my web app I have a button with a click event to "capture screen" I just want to attach to this click event to trigger the mac OS screen capture tool.
$(".captureScreen").click(function () {
// Add Trigger here for Mac Screen Shot
});
I can't seem to find any examples using JavaScript, maybe it cannot be accessed?