Search found 528 matches

by Kukurykus
Sun Dec 06, 2020 1:59 pm
Forum: Help Me
Topic: help: how to have a tag decoding a jsxbin code
Replies: 12
Views: 6375

Re: help: how to have a tag decoding a jsxbin code

Find on the web the decoder, however it's illegal, and probably you'll see only some remains on the sites it was available at.
by Kukurykus
Thu Dec 03, 2020 5:45 pm
Forum: Help Me
Topic: Photoshop Object Library 2021
Replies: 1
Views: 1741

Re: Photoshop Object Library 2021

How do you normally access it?
by Kukurykus
Tue Dec 01, 2020 5:42 am
Forum: Help Me
Topic: Running an EXE *with arguments*
Replies: 5
Views: 3111

Re: Running an EXE *with arguments*

Did you correct that typo in your posted code, what that was?
by Kukurykus
Tue Dec 01, 2020 5:41 am
Forum: Help Me
Topic: Running an EXE *with arguments*
Replies: 5
Views: 3111

Re: Running an EXE *with arguments*

Yes, you are right, I did not test it, but wrote from memory - double backslashes are necessary ;)
by Kukurykus
Mon Nov 30, 2020 10:22 pm
Forum: Help Me
Topic: Running an EXE *with arguments*
Replies: 5
Views: 3111

Re: Running an EXE *with arguments*

Code: Select all

system('start "" "C:\Program Files\MAPC2MAPC64\mapc2mapc64.exe" "C:\Users\Ian\Desktop\9 SP test tiles\stitched\SP.tfw"')
by Kukurykus
Fri Nov 20, 2020 9:31 am
Forum: Help Me
Topic: Check if grid, guides are visible
Replies: 1
Views: 1411

Re: Check if grid, guides are visible

When you (un)tick Guides, the next item Guide Canvas gets effect, while first is always checked. Look for some workaround: Test if guides visible?
by Kukurykus
Fri Nov 20, 2020 6:12 am
Forum: Help Me
Topic: ActiveX component can't create object: 'Photoshop.JPEGSaveOptions'
Replies: 3
Views: 2684

Re: ActiveX component can't create object: 'Photoshop.JPEGSaveOptions'

Maybe update Windows and your motherboard, or better use more common JavaScript.
by Kukurykus
Wed Nov 18, 2020 8:56 am
Forum: Help Me
Topic: CEP How do i open Preferences -> Guides, Grid & Slices window
Replies: 5
Views: 2677

Re: CEP How do i open Preferences -> Guides, Grid & Slices window

That was for CS6, for CC you need one code line more: sTT = stringIDToTypeID; (ref = new ActionReference()).putProperty(sTT('property'), gP = sTT('guidesPrefs')) ref.putClass(sTT('application')), (dsc = new ActionDescriptor()).putReference(sTT('null'), ref); dsc.putObject(sTT('to'), gP, new ActionDe...
by Kukurykus
Wed Nov 18, 2020 5:52 am
Forum: Help Me
Topic: CEP How do i open Preferences -> Guides, Grid & Slices window
Replies: 5
Views: 2677

Re: CEP How do i open Preferences -> Guides, Grid & Slices window

Code: Select all

sTT = stringIDToTypeID, dsc = new ActionDescriptor(); (ref = new ActionReference())
.putProperty(sTT('property'), sTT('guidesPrefs')), ref.putClass(sTT('application'))
dsc.putReference(sTT('null'), ref), executeAction(sTT('set'), dsc, DialogModes.ALL)