HOW TO REMOVE HYPHEN IN LAYER COMP EXPORT FILE
HOW TO REMOVE HYPHEN IN LAYER COMP EXPORT FILE IN PNG FORMAT...
View ArticleRe: Re: Created white box, Photoshop CS4 js
There are some ways to do this. One easy way is to define a (new) white color.Replace these 2 lines: doc.selection.select(mySelection); doc.mySelection.fill ("White"); with this: var white = new...
View ArticleNeed scriptUI-expert's advice on proper implementation of Photoshop scriptUI...
I'm in the middle of porting my deprecated flash based panel to an HTML5 version. Als part of my panel I wrote a script to create a new photoshop document including parameters for the video timeline....
View ArticleRe: Created white box, Photoshop CS4 js
Thank you, that's perfect. I do need one more thing.How can I erase what is in the selection: doc.selection.select(mySelection); doc.selection.erase (); doc.selection.deselect(); Thank you.
View ArticleRe: Re: Created white box, Photoshop CS4 js
Something like this? if(!doc.activeLayer.isBackgroundLayer) { doc.selection.select(mySelection); doc.selection.clear(); doc.selection.deselect(); } else { alert ("Sorry, active Layer is...
View ArticleRe: Need scriptUI-expert's advice on proper implementation of Photoshop...
Hi Patrick,could you please elaborate the issue? I've seen that when you run the above code on ESTK the first time everything's OK, the second time it appears an empty, small dialog - if you can't see...
View ArticleRe: Need scriptUI-expert's advice on proper implementation of Photoshop...
Patrick, try this: Replace return w.close(); with w.close (); w = null; delete w; $.gc (); in your button functions. Hope that helps. --tomaxxi.com
View ArticleRe: How can I read paragraph box scale?
The 'Number' being what exactly or where would you take it from ? EDIT: Nvm, figured it out. But it doesn't work. Read a lot of people having this issue. They should really make the font layer smart....
View ArticleRe: Need scriptUI-expert's advice on proper implementation of Photoshop...
Hello Davide, Thank you for your reply.When I wrote this script I was building a panel/toolbar in infigurator and executed separate script-files from the buttons in the flash-based toolbar. In the...
View ArticleRe: Need scriptUI-expert's advice on proper implementation of Photoshop...
Hi Marijan, Thank you for your reply.At first glance it fixed the problem of not being able to see the dialog on the second try.I'm having a serious look at it tomorrow. I understand what going on...
View ArticleRe: Need scriptUI-expert's advice on proper implementation of Photoshop...
This was the final and crucial step I needed to move on and start debugging my script.Thank you for the help.
View ArticlePhotoshop is trimming the transparency from the dimensions of my smartobject
I am using a PSD, with lots of assets in different fixed sizes in it. Turned into smartobjects. Because the sizes are fixed, it is annoying that PS trimms the transparency out of the original...
View ArticleScript can't create new folder on some Macs
This is a mystery to me that just keeps getting stranger. I have a script that creates a folder in a folder on the Desktop. I have tried it on 5 iMacs (all basically the same) and 1 older MacBook Pro....
View ArticleRe: Script can't create new folder on some Macs
I would boot from a CD and run disk utility. Repairing permissions and repairing disk. What kind of free space do they have?
View ArticleTrying to understand Javascript collection numbers
I found this bit in the Adobe introduction to scripting:JS collection numbers are static; they don’t shift when you add a new object to the collection. Objectnumbering in JS indicates the order in...
View ArticleRe: Trying to understand Javascript collection numbers
Two points:doc.layers is a collection of all layers in document, regardless of the group it is in. This might not guarantee any order since they are "not in same list" (likely it's the order of...
View ArticleRe: Trying to understand Javascript collection numbers
layers or artLayers gives me the same results.Would the processing order matter when it's looking for a specific layer index? If the layer index is static wouldn't this script start with layer 0 (the...
View ArticleRe: Trying to understand Javascript collection numbers
If your document has no groups, then doc.layers and doc.artLayers will be the same. But if you groups then doc.layers will give allart layers in the doc rootthe groups you have an doc rootany art...
View Article