Re: Move files from one folder to another javascript?
timlogochair wrote: Run droplet.exe that has two steps in the action Step 1. Run IPP Step 2. JSX bat to move files from processing to archive. That is what we talked about in the other...
View ArticleRe: Move files from one folder to another javascript?
Hi JJ,You posted over 10,000 lines of source code in the other thread, so it was nearly impossible to navigate . This solution is now working perfectly. The process starts with a windows task...
View ArticleRe: Need help cleaning up a script and adding loop
That works like a charm! Thank you so much for all of your help! This has really opened up a nice workflow option for my team. I have a few more challenges that I've yet to tackle that can likely...
View ArticleRe: Need help cleaning up a script and adding loop
I'm glad that worked for you and it's helping you . As for the next scripts I can help you, but I can't promise anything as I am doing these scripts in my spare time, so I couldn't do them from one day...
View ArticleRe: Layer comps ID and name
there's info on getting data passed from extend script to generatorCould you please post a link to that info?
View ArticleRe: Layer comps ID and name
Calling Generator Plugins from ExtendScript · adobe-photoshop/generator-core Wiki · GitHub the funniest thing is that my plugin doesn't work with built-in generator anyway, only with external...
View ArticleCan I translate a layer in fractions of a pixel?
I'm using a script to iron out slight variations of camera position in a sequence of time-lapse images (the camera movement is caused by daily expansion and contraction of the timber wall that the DSLR...
View ArticleHow do create a script that chooses a random swatch?
My idea is...instead of using math to create a random rgb number I want to choose specific color by hex or rgb and assign them a number 1-10 then use random() to choose a random number between 1-10 to...
View ArticleRe: How do create a script that chooses a random swatch?
Does this help? // 2014, use it at your own risk;#target photoshop-70.032// set up colors;var theArray = [[0,0,0],[255,0,0],[0,255,0],[0,0,255],[255,255,255],];// select color;var thisColor =...
View ArticleRe: How do create a script that chooses a random swatch?
Looks good. Giving it a try. I assume I replace theArray with my specific colors. Thank you.
View ArticleRe: How do create a script that chooses a random swatch?
The Array contains Arrays of the R-, G- and B-values, so fill in, add, remove whatever you need there.
View ArticleRe: How do create a script that chooses a random swatch?
Great! Works perfect, thank you!
View ArticleIs there a way to change the Layer Color Tag via Script?
I tried to use the Script Listener to find the Event to change the Layer Color Tag but there were no commands recorded to my desktop. I have scoured the forums and the depths of Goooooo....ooogle and...
View ArticleRe: Is there a way to change the Layer Color Tag via Script?
Just solved my own question: Photoshop was being weird so I had to change the color 2 times for the event to be recognized...idk why but it worked: heres the code: desc66.putReference( idnull, ref55 );...
View ArticleRe: Organizing actions alphabetically
Do you want the script to reorder actions in a set in the actions palette or do you want to create a dialog that you can select a loaded action set and get the actions in it in a sorted list. I think...
View ArticleRe: Organizing actions alphabetically
I am looking for a way to organize the actions in the action pallet. Listing them alphabetically in the action pallet would be big help. Alternatively saving a work space with a particular action set...
View ArticleRe: Organizing actions alphabetically
You will get no argument from any user the action palette, other palettes and menu needs to be re-implemented in a way they can be better organised for better access. Scrolling menu list a line at a...
View ArticleRe: Can I translate a layer in fractions of a pixel?
Hmm … Using a function that utilises Action Manager code on a Smart Object it is possible to offset that by 0.5 pixels (the resulting Layer’s Transformation Box seems to confirm it) but the result is...
View ArticleCan I have a preview image(tiff) in panel?
I want a preview image(tif file) in my photoshop extension panel. However, the Flex control Image only support .bmp, .jpg, .png. Is there any control that can have any format image preview like...
View ArticleRe: Can I translate a layer in fractions of a pixel?
Yes, I tried smart objects - the transform box shows that it moves half a pixel, but the moment you actually try to do anything (e.g. rasterize, merge or flatten the image) the layer hops to the...
View Article