Re: Cropping canvas based on file name suffix (_large, _medium, _small)
Great! glad it works.
View ArticleRe: Duplicate Error
Of course I checked, why do you assume I didn't just because I don't write what I did in each mesage ? Application.backgroundColor Data Type: SolidColor Adobe Photoshop CS5 Object Library The default...
View ArticleScript Security?
We recently had someone at our company try to take some Photoshop scripts and re-sell them to another company and we are trying to figure out the best way to protect them. Can anyone think of a good...
View ArticleRe: Script Security?
In the Extend Script program, there is an option to export as binary. It is located in the menubar under File>Export as Binary. Hotkey Shift+Ctrl+E
View ArticleRe: Duplicate Error
You know the two color swatches the can be changed in the tools palette. foregroundColor and backgroundColor!../* ======================================================================================...
View ArticleRe: Duplicate Error
Does this help var doc = app.activeDocument;var new_layer = doc.artLayers.add(); //add new empty...
View ArticleRe: Script Security?
First, fire the person and make it known elsewhere in the company why they were fired. This should dissuade people from trying again. Export as Binary is only a partial solution. The jsxbin file can...
View ArticleCustomizing the Layer panel with an HTML5 extension
Is it possible to do a customization to the default Layers panel with an HTML5 extension? For example, add a menu item to the Layer right click menu or adding a new icon that would differentiate some...
View ArticleRe: Duplicate Error
Of course I checked, why do you assume I didn't just because I don't write what I did in each mesage ? Because of the way you use the items in your code. visible_layers.backgroundColor();...
View ArticleAntialiasing documentation
textItem.antiAliasMethod = AntiAlias.SHARP Works for sharp anitaliasing; but I can't seem to find the docs for MAC & MAC LCD antialiasing.Can that be done in scripting?
View ArticleRe: Duplicate Error
StrongBeaver wrote: Of course I checked, why do you assume I didn't just because I don't write what I did in each mesage ? Humans normally learn from their mistakes. However for them to do this they...
View ArticleRe: Duplicate Error
Humans normally learn from their mistakes. However for them to do this they need to learn how to recognize that what the did or realize what they think they know is not correct. You seem to have a...
View ArticleRe: Duplicate Error
How you come to the conclusion that my knowledge is not improving over a few questionsYou seem to have frequented this Forum for several years now and have started a couple of threads, so are the...
View ArticleRe: Duplicate Error
Once again, we all learn, stumbling along the way is nothing uncommon, you both should know that. JJMack doesn't help he makes assumptions and belittles about ones own life, that is taking things a...
View ArticleRe: Duplicate Error
You ask for help yet act like a child that know it all. That you don't really need the help your asking for. No one here is trying to belittle you. We try to help you and make suggestion we think will...
View ArticleRe: Duplicate Error
I never said once, I know it all, that is your perception. No one knows it all. You are referencing messages from a long time ago, at that stage yes, I didn't know exactly what I was doing, ignoring...
View ArticleRe: Script Security?
Just curious: What do those Scripts do so that that person considered them valuable enough to be able to sell them to (what I suppose are) competitors?
View ArticleHow to duplicate the layer and than rename it ?
Greetings to all. I'm doing a little tool and I need to duplicate the layer, change name and so... Tell me how to change the layer name ? After all, when duplicating app.activeDocument() layer in the...
View ArticleRe: How to duplicate the layer and than rename it ?
Layers have a name-property that can be changed via Script. // 2014, use it at your own risk;#target photoshopif (app.documents.length > 0) {var theDoc = app.activeDocument;var theLayer =...
View ArticleRe: How to duplicate the layer and than rename it ?
Thanks !!! Where you can read the documentation about the DOM model of Photoshop?
View Article