Re: Importent for me: How to replace miss font with script in Photoshop?
Illustrator is a joy to work with when doing text-heavy scripting. Photoshop, not so much. I do wish the could bring over the some of the Illustrator text APIs over to PS but apparently there is no...
View ArticleSearch layers for a layer called XXX and resize to 200%
Hi, I need some help creating a script to search through a photoshop document for a single layer called XXX and resize by 200% Can anyone help?
View ArticleRe: Scripting Colour Curve Variations
Thanks c.pfaffenbichler! That has certainly put me on the path! Apologies, but I am totally new to this sort of Photoshop scripting. I have used other forms of scripting, but wanted to be on the right...
View ArticleRe: Removing number sequence in 'Export layers to files" in CS5
I wanted only the Layer name to show on the file Name to make it easy. I took out the whole Prefix and just replaced "FileNamePrefix;" with "layerName;". Then commented out the other two lines with //...
View ArticleRe: Calculating width height in script
Thank u Very much for this . it is helpfull for me but still i need some modification on it becauz i m zero in script so pls help me the problem is that i need it should count only to color fill layer...
View ArticleRe: Importent for me: How to replace miss font with script in Photoshop?
Well, I am not very experienced with Illustrator Scripting but it seemed (in some regards at least) somewhat uncomfortable compared to Photoshop. But apart from that and several other issues of...
View ArticleRe: Search layers for a layer called XXX and resize to 200%
This might work. // 2014, use it at your own risk;#target photoshopif (app.documents.length > 0) {var myDocument = app.activeDocument;main ();};////////////////////////////////////function main ()...
View ArticleRe: Importent for me: How to replace miss font with script in Photoshop?
Hi~It is very useful,specially,Three are More than one font in one layer.Some body have did it, so it Should be able to comply.Also some body could Collect the fonts into a Folder.But, somebody Can not...
View Articleinsert special chars
Hi guys i have an XML with lots of text and some lines have & character but photoshoscript doesnt insert this on a text box, anyone knows how can i do to insert & char ?thanks
View ArticleRe: insert special chars
How is your text data stored in the XML? It should be using the format <![CDATA[You text here]]> Also make sure you use the .toSting() when transferring your XML data to an ExtendScript var.
View ArticleRe: insert special chars
it isnt the toString because the error occurs when the script starts read de xml file.It stops the execution because find this char
View ArticleRe: insert special chars
I was just relooking at my script that uses XML to place info on images. I didn't use the toString for that. I did make sure I used the CDATA to store the values in the XML, then I just transferred...
View ArticleRe: insert special chars
but my script only read the xml file and pass the information to photoshop, loading images and text.the problem is when the script starts they reade the xml but if he find an & char he give me an...
View ArticleCan I select non-rectangular regions / arrays using a script?
I took at look at the VB Scripting Reference. Not clear whether the Select-Region made up of an array of points, can in fact be something other than a rectangle.
View ArticleRe: insert special chars
IIRC, to put a '&' into a ScriptUI element, you need to have '&&' instead. Of course, this may vary from version to version.
View ArticleScripting and automation advice - Batch processing and final naming
Right now I am using actions to automate the creation of some 3d mockups. The actions work well, but there seem to be some limitations I can't get around and I assume the scripting is what I need to...
View ArticleRe: Scripting and automation advice - Batch processing and final naming
Scripting would solve these issues. I'm on Win. I don't think Win has a watch feature like the Mac, but I could be wrong. I have a time-lapse camera set up in which I use a script to check to see if...
View ArticleRe: Can I select non-rectangular regions / arrays using a script?
I'm not familar with VB, and most people who script tend to use JS, as it's cross platform. However, with js, and I'm assuming VB you can set an array of points for a selection, and it doesn't have to...
View Article