Search found 10 matches
- Thu Jul 09, 2020 6:24 pm
- Forum: Help Me
- Topic: How Can i Convert JSXBIN TO JSX
- Replies: 18
- Views: 41428
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.
- Thu Jul 09, 2020 5:52 pm
- Forum: Help Me
- Topic: How Can i Convert JSXBIN TO JSX
- Replies: 18
- Views: 41428
Re: How Can i Convert JSXBIN TO JSX
I have sent a PM that might help.
- Thu Jul 09, 2020 4:14 pm
- Forum: Help Me
- Topic: How Can i Convert JSXBIN TO JSX
- Replies: 18
- Views: 41428
Re: How Can i Convert JSXBIN TO JSX
You need to compile the source code selecting the sln file, using something like Visual Studio.
- Thu Jul 09, 2020 3:00 pm
- Forum: Help Me
- Topic: How Can i Convert JSXBIN TO JSX
- Replies: 18
- Views: 41428
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
Then in the same folder have your jsxbin file
Go to DOS in that folder.
jsxbin_to_jsx -v filename.jsxbin outputfilename.jsx
- Wed Jul 08, 2020 3:12 pm
- Forum: Help Me
- Topic: How Can i Convert JSXBIN TO JSX
- Replies: 18
- Views: 41428
Re: How Can i Convert JSXBIN TO JSX
I have and it does work.
- Tue Jun 02, 2020 3:04 pm
- Forum: Photoshop Scripting - General Discussion
- Topic: PsDotNet - Photoshop C# library
- Replies: 13
- Views: 40560
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.
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.
- Wed Apr 29, 2020 10:58 am
- Forum: Help Me
- Topic: Batch Creation PSD files from images
- Replies: 4
- Views: 5959
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...
- Mon Apr 06, 2020 10:02 am
- Forum: Automation & Image Workflow
- Topic: Runing Action Name via Script
- Replies: 4
- Views: 40470
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...
- 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: 13518
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));
$.writeln(decodeURI(activeDocument.path.fsName));
- Fri Jan 25, 2019 11:19 am
- Forum: Photoshop Scripting - General Discussion
- Topic: How to get/convert Windows path not /d/ps-projects/ but D:\ps-projects\
- Replies: 4
- Views: 13518
Re: How to get/convert Windows path not /d/ps-projects/ but D:\ps-projects\
$.writeln(decodeURI(activeDocument.fullName.fsName));