Search found 528 matches

by Kukurykus
Wed Aug 10, 2016 1:54 am
Forum: Help Me
Topic: Customize Eyedropper/ Color Picker
Replies: 9
Views: 10143

Re: Customize Eyedropper/ Color Picker

It's tested in CS2 and CS5.1 and ready to use. I nested both notifier and color convertor in one .jsx file. Anyeone else who wants to use it: 1) drop it to your Only Events Scripts in your Scripts folder you find in Presets of your Photoshop directory 2) Launch Photoshop and in the File / Scripts cl...
by Kukurykus
Tue Aug 09, 2016 6:16 pm
Forum: Help Me
Topic: Customize Eyedropper/ Color Picker
Replies: 9
Views: 10143

Re: Customize Eyedropper/ Color Picker

Okey, now I understand what is custom colour space, and how you want to use it. Maybe I'll combine it with other script in some part I created yestarday if I figure out it maye be helpful somehow: https://www.ps-scripts.com/viewtopic.php?f=66&t=8958&p=152333#p152333 As to quisetion there won...
by Kukurykus
Tue Aug 09, 2016 5:56 pm
Forum: Help Me
Topic: Customize Eyedropper/ Color Picker
Replies: 9
Views: 10143

Re: Customize Eyedropper/ Color Picker

Yes it's very easy. I want to say I can do it, and as I'm learning programming that is for me another little challange. I shouldn't have problem to script it like probably many other scripters from this site, but the difference is it can take me longer time than them, however I should make it for to...
by Kukurykus
Tue Aug 09, 2016 4:39 pm
Forum: Help Me
Topic: Customize Eyedropper/ Color Picker
Replies: 9
Views: 10143

Re: Customize Eyedropper/ Color Picker

Maybe I can do this, but can't promise my current scripting abilities let me for that. Firstly explain me what is custom (same) color space in Ps. Is that I can find in (Image / Mode or View / Proof Setup) ? Please show to me how would you convert it manually (step by step if possible), so I'll see ...
by Kukurykus
Tue Aug 09, 2016 3:59 pm
Forum: Photoshop Scripting - General Discussion
Topic: how to run scripts within another scripts
Replies: 9
Views: 23515

Re: how to run scripts within another scripts

Well then JavierAroche and DavideBarranca gave the most proper advices to run files from the same script conditionally. By the occasion I have to learn how to uncomile binary form of .jsx, though I didn't know till now how to make binary code from normal one :lol: It's because there wasn't File / Ex...
by Kukurykus
Tue Aug 09, 2016 2:33 pm
Forum: Photoshop Scripting Bugs and Anomalies
Topic: Need to clear Photoshop's memory
Replies: 14
Views: 32342

Re: Need to clear Photoshop's memory

I have Win 7 in my work when I'll back in a week. So if you won't think up anything esle to get it done I test it there and tell you how it worked. For now I wanted just to ask. Have you ran each time this script from ExtendScript like I see now in your example or just outside, so I mean ExtendScrip...
by Kukurykus
Mon Aug 08, 2016 7:28 pm
Forum: Photoshop Scripting - General Discussion
Topic: how to run scripts within another scripts
Replies: 9
Views: 23515

Re: how to run scripts within another scripts

It seems I misunderstood you. I thought you want to run script in the script but closing at same time a script which initiate second script. Anyway if you'd like to do it as well, here's a code: Script 1 .jsx: #target photoshop File('~/Desktop/script2.jsx').execute() Script 2 .jsx: #target photoshop...
by Kukurykus
Mon Aug 08, 2016 10:27 am
Forum: Photoshop Scripting Bugs and Anomalies
Topic: Need to clear Photoshop's memory
Replies: 14
Views: 32342

Re: Need to clear Photoshop's memory

Make sure you keep Cropping.jsx and Cropping.exe on your desktop not in your Photoshop script folder, however I think you do correctly ;) Reload javascript command is at the end: if (br) File('~/Desktop/Cropping.exe').execute() it'll be executed on the condition br is true. You may test this conditi...
by Kukurykus
Mon Aug 08, 2016 6:06 am
Forum: Help Me
Topic: Index/8Bit Color from Array
Replies: 1
Views: 3158

Re: Index/8Bit Color from Array

I like the effect you got. That's interesting as I only tried with posterization where we can have 8 colours the less while in your function there is 4. There's lack of .toSource() at the end of the returned result. Try this: function hexToRgb(hex) { hex1 = hex.substring(0,2); hex2 = hex.substring(2...
by Kukurykus
Mon Aug 08, 2016 2:44 am
Forum: Help Me
Topic: Check if Menu item is enable or disabled
Replies: 2
Views: 2719

Re: Check if Menu item is enable or disabled

There is a trick, but I know it's possible to do it profesionally what I don't know how at the moment. Let's assume you always snap to (some or all): guides, slices, layer bounds and document bounds but never to grid then you can do that using my tricky method. You certainly bound some function key ...