Skip to content

Instantly share code, notes, and snippets.

@roguesleipnir
roguesleipnir / LassoAutoFillAction.jsx
Last active October 17, 2024 03:25
Auto-Fill Lasso Scripts for Photoshop.
try {
// If bounds are null then there is no selection.
// But null check fails? So use Try/Catch instead.
if (app.activeDocument.selection.bounds) {
// Check Shift Modifier
SHIFT = ScriptUI.environment.keyboardState.shiftKey;
CTRL = ScriptUI.environment.keyboardState.ctrlKey;
// Fill manually.
if (!(CTRL || SHIFT)) {