How do I combine two scripts into one?
First, let me make it clear that I do not know Photoshop scripting. But I have found two scripts (written by someone else) that do exactly what I want if I run them one after the other.
Guide Maker.jsx
Guide Stroker.jsxI'd prefer to run a single script, rather than two. Based on what I've found by searching, I created a new script called Grid Maker.jsx with the following contents:
$.evalFile("C:\Program Files\Adobe\Adobe Photoshop 2023\Presets\Scripts\Guide Maker.jsx");
$.evalFile("C:\Program Files\Adobe\Adobe Photoshop 2023\Presets\Scripts\Guide Stroker.jsx");However when I execute it,
Photoshop > File -> Scripts > Grid Makernothing happens. What am I doing wrong?
