After installing Leo's crop button, I found myself wanting more.
In my daily workflow, I also need to copy the cropped images and Wikipedia articles (downloaded as *.md) into various folders. As this is a very repetitive task, I created a batch file
@moveActor.bat
cd F:\_download
copy *.jpg F:\data\obsidian\vault\multimedia\_images\person
copy *.md "F:\data\obsidian\vault\multimedia\crew\05 actor"
echo copied
move *.jpg F:\_download\_delete
move *.md F:\_download\_delete
echo moved
which, after some juggling, I managed to make accessible via a button . Now the directory is clean except for the files to be moved; the batch file(s) are in their proper folder in my Obsidian vault. (Using Obsidian to build a movie reference)
NOW: Instead of the batch file, I want to use a JScript script, which I thought would be a simple feat, since there are basically only 2 commands involved (copy, move) ...
So I started to search for "learn JScript". Here, in the Opus-Forum I found βthis awesome post" and believed myself happy until I started to actually look up the links - far above my paygrade.
Well, so I googled and βyoutubedβ for JScript, JScript tutorials, and found two meager YT-videos about compiling JScript and a ton (TON) of videos and tutorials on JavaScript...
JScript and JavaScript are supposed to be two different languages with similarities, I thought, but now I read in the Wikipedia article on JScript, theyβre not really, just a name change by Microsoft to avoid copyright issues.
Honestly, I only want to copy a few files...
Finally I found this βCopyFile Methodβ which seems to be a start, but I'm so insecure now that I don't want to try it alone. I don't even know how to start yet.
Please help!