Skip to content

Instantly share code, notes, and snippets.

View mindfu23's full-sized avatar

mindfu mindfu23

  • mind fu media
  • Universe 838, Laniakea Supercluster, Virgo Galactic Cluster, Local Group, Lesser Magellanic Cloud, Milky Way galaxy, Star system Sol, Planet 3 (AKA "Terra", AKA "Earth"), United States, 21st Century ACE
View GitHub Profile
@NimaiMalle
NimaiMalle / Lenticular.jsx
Last active January 14, 2022 00:03
Photoshop Script to interleave layers for use with Lenticular Lens Sheets.
#target Photoshop
function makeLayerMask(maskType) {
if( maskType == undefined) maskType = 'RvlS' ; //from selection
//requires a selection 'RvlS' complete mask 'RvlA' otherThanSelection 'HdSl'
var desc140 = new ActionDescriptor();
desc140.putClass( charIDToTypeID('Nw '), charIDToTypeID('Chnl') );
var ref51 = new ActionReference();
ref51.putEnumerated( charIDToTypeID('Chnl'), charIDToTypeID('Chnl'), charIDToTypeID('Msk ') );
desc140.putReference( charIDToTypeID('At '), ref51 );
desc140.putEnumerated( charIDToTypeID('Usng'), charIDToTypeID('UsrM'), charIDToTypeID(maskType) );