Re: How do I create a script to do this?
This assumes that none of the layer are already in layerSets( group ) and none have layer locking. if(app.documents.length>0){ var doc = app.activeDocument;...
View ArticleRe: Text Layers in a setLayers
Yes, I corrected it. I should have mentionned It. Thks again
View ArticleRe: Scripting bugs - feedback site?
Michael,me too I have doubts about the Feedback site - in some respects it doesn't seem to be designed to serve as an actual feedback site. The login (having Adobe discontinued some features) is better...
View ArticleRe: Scripting bugs - feedback site?
As I too just found a bug in the Scripting code between CS6 v13.0 and 13.1 I was looking at the Feedback site. I searched it to see if there were any similar bug reports there already, and found very...
View ArticleRe: Is it worth it for me to learn scripting in PS?
Adobe make changes in each release of Photoshop. I never created any complex scripts thill CS2. In CS2 I had to code around a scripting bug I think selection bounds did not work. When CS3 was...
View ArticleRe: Is it worth it for me to learn scripting in PS?
photospot_scripter, This seems to work in CC var meshFile = new File('~/desktop/Liquify.msh'); meshFile.open('r'); meshFile.encoding = 'BINARY'; var desc4 = new ActionDescriptor(); desc4.putData(...
View ArticleRe: Is it worth it for me to learn scripting in PS?
ahh! I never tried converting it to Binary. I'll try it out. The more I script the more I realize how powerfull that Action Manager stuff is. I'm trying to master it....as its so much faster then...
View ArticleRe: Removing number sequence in 'Export layers to files" in CS5
I am having the same issue but I am exporting to JPG. I set the quality to 12 & changed all the lines of code in the script editor & replaced the script in the adobe file. I have come to the...
View ArticleRe: Removing number sequence in 'Export layers to files" in CS5
See LCorn's post above about commenting out line 1049. That line is not commented out in your screenshot. But that should only apply to layers inside layerSets.
View ArticleHow to disable the effects in the layer?
Hello everyone!How to disable script effects in the layer? For example, a stroke.
View ArticleRe: How to disable the effects in the layer?
// Effects among: // "bevelEmboss" (Bevel and Emboss)// "frameFX" (Stroke)// "innerShadow" (Inner Shadow)// "innerGlow" (Inner Glow)// "chromeFX" (Satin)// "solidFill"...
View ArticleHow to make a directory listing (preview) with PSD files ?
Hello everyone!I'm doing a tool to view a directory of files PSD + button to open in photoshop and removed. How to make a review of images in a scrollable window adn show selected preview in largest...
View ArticleRe: How to make a directory listing (preview) with PSD files ?
Did you do a search before posting this question? If you did you should have found threads on that subject like http://forums.adobe.com/message/3535290#3535290 The Paul mentioned has left this forum...
View ArticleRe: How to disable the effects in the layer?
For the sake of completeness, if you ever need to permanently remove layer effects: // Effects among: // "bevelEmboss" (Bevel and Emboss)// "frameFX" (Stroke)// "innerShadow" (Inner...
View ArticleBest way to manage an "Esc" pressed by the user
Hi friends I normally create dialogs to offer options to the user before executing the script functions. So, having a "Cancel" button in this dialog would suit the need for an user to cancel the...
View ArticleRe: Best way to manage an "Esc" pressed by the user
I don't think it is possible with javascript. I don't know about other languages. Because the esc key also can be used to close a dialog, while the dialog is open you can write an onClose event handler...
View ArticleRe: Best way to manage an "Esc" pressed by the user
. After all the esc key is the user's 'panic button' when they think something is wrong. I am not sure having a way to ingore a user's request to 'stop now' is a good thing. Hi Michael. Tghank you as...
View ArticleRe: Best way to manage an "Esc" pressed by the user
I think I understood your intent from your first post. And I can understand why you would want to manage the esc requests, I have tried to do so myself. But in order to manage the esc event you have to...
View ArticleRe: Best way to manage an "Esc" pressed by the user
But good or bad, I don't see a way to handle the esc key in javascript unless a dialog is open which fires the onClose event. Yep. The only way I've been able to deal with this situation is with a...
View Article