Re: Changing text with Applescript changes font attributes
Text in PS is very hard to work with from the scripting POV.When you replace text layer contents PS will apply attributes of the first character to all... Sent from my iPhone
View ArticleRe: Changing text with Applescript changes font attributes
Thanks for the response, Muppet. I've just abandoned the whole thing since sometimes things worked and sometimes they didn't (even "deselect" was a crapshoot, depending, apparently, on the image). Not...
View ArticleHow to set a group's children to visible with ActionManager?
Hi, so i need to set all the children of a group to visible (both layers an groups). I wrote this recursive function: function setChildrenToVisible(group){ var numberOfChildren = group.layers.length;...
View ArticleGet the number of CountItems by group in CS5 extended
I have a collection of photos with count items created with the Count Tool in CS5 extended version. Each count item belongs to one of 5 count groups created with the Count Tool. Using the Photoshop...
View ArticleRe: Changing text with Applescript changes font attributes
What are you trying to do…? No need to but Javascript Ref you will find loads FOC. NOT all will apply as ExtendScript is based on an old version.You will need to learn the base classes as the guides...
View ArticleRe: Looping through layers is slow.
Thank you. What exactly does suspenHistory do? and should i call it?
View ArticleRe: Changing text with Applescript changes font attributes
I was trying to process a pile of images to open, move a layer into a new template, resize it, change one of two text layers based on the filename of the source image, then save the template as that...
View ArticleRe: Changing text with Applescript changes font attributes
Yes you certainly will find more help here if using JS over AS and yes cutting another's tech does reduce problems…Thats my experience… I've had less problems particulally app versioning with JS.
View ArticleRe: Get the number of CountItems by group in CS5 extended
Hum the counters is an odd thing… It looks like it does all or nothing…? If I change group visibility it does NOT change the count unless I do it to ALL…? if any 1 group is visible the the count length...
View ArticleRe: How to set a group's children to visible with ActionManager?
Hi here is a AM function that will make all the selected groups children visible: bcm_makeAllCHVisible(getSelectedLayersIdx()); function bcm_makeAllCHVisible( idx ){ if( idx.constructor != Array )...
View ArticleRe: Get the number of CountItems by group in CS5 extended
Hi here are some functions on how to get the length of the counts for one group:// examples:=================== alert("there are "+getCountsInGroup(getCurrentGroup()).length+ " counts in the selected...
View ArticleRe: Batch HDR Merging/Toning Script
Hello, all this is way over my head, coding wise. I copy and pasted the code to a text file and then changed the ext. to jsx and put it in the folder but when I try and run it in photoshop i get this...
View Articlecan someone help me? I need a script code for Photoshop cs 6, that mirror all...
I need a code script that mirror every layer in a group please!
View ArticleHas anyone made a script to batch import 2d and batch convert and batch...
Im looking to batch import like 4000 images and convert them into 3d objects, but I'm not sure how i would script that to work in Photoshop. Do you think photoshop can handle that many operations?
View ArticleRe: can someone help me? I need a script code for Photoshop cs 6, that mirror...
Hi Costin, here is a jsx script that should do what you need I hope....:) You can change the pivot position as well or the mirror direction... check the command examples to see how. /*...
View ArticleHow to add an art layer posterize levels 50 with javascript?
Hello, I need a javascript to create a new art layer posterize in order to reduce the weight of my png. But my javascript command does'nt work: var LayerISO =...
View ArticleRe: can someone help me? I need a script code for Photoshop cs 6, that mirror...
this is awesome, the only problem is that when it mirror the object it moves it an I need it to stay in the same place, If you have time and tell me how to make it, I am new to scripting and I find it...
View ArticleRe: can someone help me? I need a script code for Photoshop cs 6, that mirror...
Right now the command use the pivot point for the transform on the Center right part you can change this line:bcm_mirrorAllCH(getSelectedLayersIdx(),'CR', 'Horizontal' );with...
View ArticlePrint Shop Needing Some Help
Here's our dilemma... we occasionally print some flyers & business cards in house and we repeatedly having to create a layout of each file on an 11x17 document prior to printing. So here's my...
View Article