Search found 10 matches

by Geoff
Thu Jul 09, 2020 6:24 pm
Forum: Help Me
Topic: How Can i Convert JSXBIN TO JSX
Replies: 18
Views: 24623

Re: How Can i Convert JSXBIN TO JSX

Sorry can't help. It maybe because you are using a French operating system? I am using the English version of Windows 10.
by Geoff
Thu Jul 09, 2020 5:52 pm
Forum: Help Me
Topic: How Can i Convert JSXBIN TO JSX
Replies: 18
Views: 24623

Re: How Can i Convert JSXBIN TO JSX

I have sent a PM that might help.
by Geoff
Thu Jul 09, 2020 4:14 pm
Forum: Help Me
Topic: How Can i Convert JSXBIN TO JSX
Replies: 18
Views: 24623

Re: How Can i Convert JSXBIN TO JSX

You need to compile the source code selecting the sln file, using something like Visual Studio.
by Geoff
Thu Jul 09, 2020 3:00 pm
Forum: Help Me
Topic: How Can i Convert JSXBIN TO JSX
Replies: 18
Views: 24623

Re: How Can i Convert JSXBIN TO JSX

You need to have Jsbeautifier.dll & jsxbin_to_jsx.exe in the same folder.
Then in the same folder have your jsxbin file
Go to DOS in that folder.
jsxbin_to_jsx -v filename.jsxbin outputfilename.jsx
by Geoff
Wed Jul 08, 2020 3:12 pm
Forum: Help Me
Topic: How Can i Convert JSXBIN TO JSX
Replies: 18
Views: 24623

Re: How Can i Convert JSXBIN TO JSX

I have and it does work.
by Geoff
Tue Jun 02, 2020 3:04 pm
Forum: Photoshop Scripting - General Discussion
Topic: PsDotNet - Photoshop C# library
Replies: 13
Views: 30944

Re: PsDotNet - Photoshop C# library

@sandy154

Photoshop must be opened but it need not be visible, you can use :-
app.Visible = false;

You will still see the splash screen though.
Make sure you close Photoshop on make it Visible again.
by Geoff
Wed Apr 29, 2020 10:58 am
Forum: Help Me
Topic: Batch Creation PSD files from images
Replies: 4
Views: 3823

Re: Batch Creation PSD files from images

Try this... #target photoshop; app.bringToFront(); main(); function main(){ try{ var folders =[]; var topLevel = Folder.selectDialog("Please select top level folder"); folders = FindAllFolders(topLevel, folders); folders.unshift(topLevel); for(var f in folders){ var fileList =folders[f].ge...
by Geoff
Mon Apr 06, 2020 10:02 am
Forum: Automation & Image Workflow
Topic: Runing Action Name via Script
Replies: 4
Views: 28536

Re: Runing Action Name via Script

This should work after the action has been run. #target photoshop; getCurrentAction(); function getCurrentAction(){ var r = new ActionReference(); r.putEnumerated(stringIDToTypeID("action"), stringIDToTypeID("ordinal"), stringIDToTypeID("targetEnum")); try { var ret = e...
by Geoff
Fri Jan 25, 2019 1:32 pm
Forum: Photoshop Scripting - General Discussion
Topic: How to get/convert Windows path not /d/ps-projects/ but D:\ps-projects\
Replies: 4
Views: 10570

Re: How to get/convert Windows path not /d/ps-projects/ but D:\ps-projects\

Sorry you just wanted the path....

$.writeln(decodeURI(activeDocument.path.fsName));