Re: How to select an action via script?
By using the SctiptListener plugin, you can run your action and it will generate the code to run the action. You can then keep this code and just edit the name of the action if you want to use it for...
View ArticleRe: How to select an action via script?
I've actually tried that before posting this question. The ScriptListener plugin outputs most of the command.Unfortunately, it doesn't output anything for selection done on Action.
View ArticleRe: How to select an action via script?
So are you saying that if there is a step in the action that creates a selection the script does not recognize it bypasses it? Or do you mean if you have a selection before you run the script it does...
View ArticleRe: How to select an action via script?
I think the OP wants to select or highlight an action in the action panel. As far as I can tell it can't be done with a script. That is not logged by scriptlistener nor is it recorded in an action.
View ArticleRe: How to select an action via script?
That makes sense, Mike. Most likely would have to split the action into peices then to do that. I used to combine the two, but it turned out better just to do everything with the script, as then you...
View ArticleRe: How to select an action via script?
Yes Michael, it is not logged by the ScriptListener which is a problem for me. That's why I'm wondering if anyone knows or has came across to selecting an action in the action panel via script because...
View ArticleBatch HDR Merging/Toning Script
I've seen a number of different posts on these forums about trying to do this and I never really found a complete and suitable solution. It also has really annoyed me that adobe never implemented this...
View ArticleRe: Is it possible to rearrage buttons in the layers pallet?
Yes, it is absolutely possible. So long as each button on the layers panel is associated with its own keyboard shortcut, then this can be done easily. With Autohotkey, you can create your own toolbars...
View ArticleRe: Selecting Only Visible Layers
is there a way to do this so that it turn all layers 'ON' instead of 'off' ?
View ArticleRe: Get layer style parameters?
In case you're still interested about getting and setting layer styles parameters, I've just released a new module jamStyles of my open-source JSON Action Manager scripting library, which provides full...
View ArticleRe: Tearaway Brush Size
you may not be able to tear away this panel, but autohotkey can automate it for you. In other words, all you do is press a certain key on your keyboard once, and it will rotate your brush 'x' degrees....
View ArticleRe: Selecting Only Visible Layers
function showAllLayers() { var numberOfLayers = getNumberOfLayer(); var desc = new ActionDescriptor(); var list1 = new ActionList(); var ref = new ActionReference(); for(var...
View ArticleRe: Tearaway Brush Size
Ah AHK, nice suggestion. I'll look into it, hopefully it does the trick
View ArticleGet width/height or layer bounds with decimals values
is it possible to retrieve size or bounds of objects with decimal values? Thank you
View ArticleRe: Get width/height or layer bounds with decimals values
If you are talking about getting the bounds of a layer and the unit is something other than pixels the answer is yes. A layer bounds in pixels will always be integer values.
View ArticleRe: Get width/height or layer bounds with decimals values
Sorry I didn't clarify that I was searching for a method of getting pixel decimals. Do you think there is any hack to do it?
View ArticleRe: Get width/height or layer bounds with decimals values
A normal artLayer is made up of whole pixels, so there is no way to get anything other than integers pixel values. A shape layer or any other layer with a vector mask could have decimal pixel values...
View ArticleLatteUI?
Hi,I was browsing through the "Load Files into Stack.jsx" sourcecode and I've run into "LatteUI.jsx" - which appears to be some kind of wrapper of the ScriptUI thing, as far as I understand. // This...
View ArticleRe: Batch script in Photoshop to remove background. Path has different name.
Thank you! Now, how do I add that text to my action? I've done some searching but have had no luck finding a way to add the text to my action. I got a lot of images with good paths that needs white...
View ArticleRe: Batch script in Photoshop to remove background. Path has different name.
Now, how do I add that text to my action? You stated I would like to make a script so I assumed you werde talking about Scripts, not Actions.
View Article