Paths and prefixes
// Engine script
#include "Batch Mockup Smart Object Replacement.jsx"
// Points to "~/Desktop/example/Batch Mockup Smart Object Replacement.jsx"
#include "../Batch Mockup Smart Object Replacement.jsx"
// Points to "~/Desktop/Batch Mockup Smart Object Replacement.jsx"
- - - -
// Relative to the settings script
mockupPath: "$/assets/mockup.psd",
// Points to "~Desktop/example/assets/mockup.psd",
mockupPath: "../$/assets/mockup.psd",
// Points to "~Desktop/assets/mockup.psd",
- - - -
// Relative to the mockup PSD
// Presuming the PSD file is also inside the assets folder
input: "./input files",
// Points to "~Desktop/example/assets/input files",
input: ".././input files",
// Points to "~Desktop/example/input files",Last updated