Applescript user input crop placement
Hi, I have been searching for a solution to this for a while but cant find one. I am creating a semi automatic image editing script using applescript. I would like the script to run up until it reaches...
View ArticleRe: Applescript user input crop placement
Yes this is possible I have done this in the past when I used AppleScript… You will need to use the do javascript command and pass it a string or file… The code to do this can be recorded with the...
View ArticleRe: Applescript user input crop placement
You can easily create interactive cropping actions as well using a Photoshop action in your apple script after your script sets the 1000px by 1000px selection.. A single transform selection step...
View ArticleHaving trouble playing (or "stacking") multiple actions, please help!
I have written a few actions to use on my photographs (each action is put into its own group) and each time i run multiple actions and "stack" them the adjustment layers within the groups get all...
View ArticleRe: Having trouble playing (or "stacking") multiple actions, please help!
It would help if you expanded all the steps in your action and post a screen capture of your actions palette so we get an idea of what your doing. This thread also belongs in the Photoshop general...
View ArticleRe: Prompt for Levels not working in Photoshop CC
It seems that Adobe has changed the way this works with Photoshop CC. In prior versions the newLevels() function returns a new Action Descriptor that contains the level settings the user entered into...
View ArticleListbox display (headers?)
Hello, given the following code: var Window1 = new Window('dialog'); Window1.preferredSize.width = 200; Window1.preferredSize.height = 300; Window1.alignChildren = ['fill','fill'];...
View ArticleRe: Listbox display (headers?)
Add numberOfColumns: 1 to the listbox creation properties.
View ArticleWatermark Palette Forgets
I've installed the newest version of the watermark palette into Photoshop CC.The palette works fine, but I have two problems that reocurr after relaunching Photoshop:1) It always asks, "Would you like...
View ArticleHow can I script moving paths from one file to another?
Hello. I have 1 image with various color correction layers. The other is the exact same size but only contains paths. How can I script moving paths from one file to another? Thanks, in advance, for any...
View ArticleRe: Prompt for Levels not working in Photoshop CC
This seems to work in Photoshop CC.function levelsAdjustmentDialog(){ var desc = new ActionDescriptor(); var ref = new ActionReference(); ref.putClass( charIDToTypeID('AdjL') );...
View ArticleRe: How can I script moving paths from one file to another?
Does this help? http://forums.adobe.com/thread/1051659?tstart=0
View ArticleHow to get properties value of Gradient Layer?
Hi all, I want to get the properties of gradient layer i.e. its name, color value and mode?Also the properties like angle, style and scale that appears in Gradient Fill panel, when we create the...
View ArticleRe: How to get properties value of Gradient Layer?
There are a lot of settings for a gradientFill adjustment layer. I think there are always at least two color stops( even if they are the same color ). And I am not sure what you mean by 'mode'. Here is...
View ArticleRe: How do you create a script?
I would suggest something like this can be tried easily. http://erlind.blogspot.in/2012/01/photoshop-timestamp-your-digital-pho tos.html -Mandhir
View ArticleRe: How can I script moving paths from one file to another?
Thanks! This one actually worked for me. Thanks for your help. http://forums.adobe.com/message/3305389#3305389
View ArticleText box width
Hi, I'm wanting to find the width of a text box and if it's longer than say 200 pixels, decrement the font size (points) by one until the text box width is less than 200 pixels. I'm guessing I'm going...
View ArticleRe: Text box width
That code looks like VBS( or some other VB flavor ). If VBS works the same way javascript does, changing the text size will not change the text box width. There are two types of text layers, point text...
View Article