Re: layer group visibility toggle
No problem at all. Trying to figure out an approach to create the script. I can get the AM code from the script listener for the layer group visibility toggle.Make a function with the AM code, declare...
View ArticleRe: Re: How do I find the font for a specific character in a textItem?
Anyway one can get the properties of a Layer via Action Script without selecting the Layer by addressing it via index, ID or name (the last seems problematic as one could have more than one Layer of...
View ArticleRe: Can I add a click tag to a moving gif in photoshop
First of all your request seems pretty unclear, so how are people supposed to help you? Secondly Photoshop does not seem to be the proper application to create interactive web content – if that is what...
View ArticleHow can I find stringIDToTypeID() argument?
Hi there, I can't not find stringIDToTypeID() argument in ADOBE PHOTOSHOP CS6 SCRIPTING GUIDE and ADOBE PHOTOSHOP JAVASCRIPT SCRIPTING REFERENCE.How can I find stringID list,like...
View ArticleRe: Delete anchor point(s)
Not quite what I was after. I'm sure there's a way around it - probably by finding the currently selected point (if that's accessible via scripting)
View ArticleRe: Can I add a click tag to a moving gif in photoshop
Do you mean can an HTLM link a href have a animated gif like this: Click to get that answer
View ArticleRe: How can I find stringIDToTypeID() argument?
joehwang1234,do you really mean Javascript or perhaps ScriptListener-Code (AM-Code) ?
View ArticleRe: Delete anchor point(s)
I don't know Photoshop scripting. I know I can select many segments in a path with the direct selection tool. Photoshop shows they are selected by turning on the display of the control points and...
View ArticleHow to find number of lines in the text content?
Hello All, I have a multi line text item. I want to know the number of lines in a text item? How can I do that? Note that every lines end with the shift+enter. Example,This is a sample.After line This...
View ArticleExample of localize tooltip for HTML panel
Hi, is someone know where I can find examples of localized tooltip for HTML panel.It 's easy for a button or a link. But I don't know how to do it with tooltips. Many thanks. Sebastien
View ArticleScripting Layer Opacity change
Hello! I want to create a script that decreases current layer opacity by 5. Here's what I have now: app.activeDocument.activeLayer.opacity -= 5; The problem is, when I map the script to a hotkey and...
View ArticleRe: How can I find stringIDToTypeID() argument?
You can find most of them here:http://ps-scripts.cvs.sourceforge.net/viewvc/ps-scripts/xtools/xlib/PSConstants.js This includes everything up through PS CC. I'll do an update for CC 2014 when I get a...
View ArticleRe: How can I find stringIDToTypeID() argument?
AFAIK, Adobe does not provide a comprehensive documented list of these or the charIDs. I have a perl script that extracts the information from the PS dev kit and generates ths PSConstants file which I...
View ArticleRe: How can I find stringIDToTypeID() argument?
Thanks everyone ScriptListener plug-in solved my problem.
View ArticleRe: Scripting Layer Opacity change
ahawktom,opacity is not a rounded value and opacity works with percent. Try something like this: if (app.activeDocument.activeLayer.opacity > 5) { app.activeDocument.activeLayer.opacity =...
View ArticleRe: Re: How do I find the font for a specific character in a textItem?
This should get a list of the fonts used in Type Layers in the selected Group. // get list of fonts used in the active group; // based on code by paul riggott; // 2014, use it at your own risk; #target...
View ArticleRe: How to find number of lines in the text content?
Does this help? // 2014, use it at your own risk;#target "photoshop-70.032"if (app.documents.length > 0) {var theText = getText ();var theArray = theText.split("\r");alert...
View Articlea lot of Layer Opacitiy
Hello, I am new in scripting and my question is determined very simply. Unfortunately I can not find a solution. I would like to solve the following problem. In Photoshop I have many layers. The number...
View Article