Re: Needed: snippet of jsx code to Rename an Action Step? Rename an Action Set?
Thanks for your reply, c.pfaffenbichler. Yes, sorry I meant rename an Action in an Action Set, just as you can do by double clicking the action and changing the name. I like xbytor's stuff, but I...
View ArticleChange Brush Opacity with VB.
I'm new with this topic that is photoshop, but what I want to do is to control the brush opacity or diameter with an arduino and Visual Basic, I know that it is possible to conect an arduino with...
View ArticleRe: Change Brush Opacity with VB.
Most folks use JS for scripting due to it being a cross platform app, so there may be few responses to a VB question. I would try using scriptListener but make sure that the "Allow tool recording is...
View ArticleRe: Change Brush Opacity with VB.
mmm I'm reading about it right now and I will reply later when I test it. Thanks for reply
View Articlesyntax error var retVal = false;
Hello All,I am working through the scripting exercises in the Power Speed and Automatization text book and would like to ask for help in debuggingthe script batchSaveJPEG. Not sure what is causing the...
View ArticleRe: Script for Transfering paths between documents?.. help
I know it's a silly question, but do I also include this part of the script:?What’s keeping you from it? Text between »//« and a line-break and text between »/*« and »*/« do not perform but usually...
View ArticleRe: Batch or script..plug-in?
Have you include »CR2« in the list of file formats as per csuebele’s advice?
View ArticleRe: syntax error var retVal = false;
try this: // saveJPEG.jsx// Copyright 2011// Written by Geoff Scott /* Description:Example of saving documents as JPEG files*/ // enable double clicking from the // Macintosh Finder or the Windows...
View ArticleSaveAs PBM
Hello.I need to save my current active document as a PBM format file via CS6 javascript.However, I'm running into the problem that there's no PBMSaveOptions object defined that I can pass into the...
View ArticleRe: SaveAs PBM
Have you tried saving a file while using scriptListener, then using the action manager code as a template to save other PBM files?
View ArticleRe: SaveAs PBM
Thanks for the idea.Yes. I did try that. The problem I run into there is getting the filename of the current document changed to save to the correct file.I can alter the path (C:\\Users\\len\\Desktop),...
View ArticleRe: SaveAs PBM
Did you do a save or a save as when you created this? Doing a save as should product a line with the new file name.
View ArticleRe: SaveAs PBM
Okay, I did some testing. Just put the file name you want after the the path name: desc2.putPath( idIn, new File( "C:\\Users\\len\\Desktop\\MyFile.pmb" ) );
View ArticleHow can I send events with a script ?
Hello all, It seems actions performed by scripts do not trigger events. By events I mean those you can listen to by registering a notifier : app.notifiers.add( "setd", new...
View ArticleRe: How can I send events with a script ?
I do not think its possible events are only triggered from top level user action not from an action, script or plug-in. Most likely to prevent endless recursion, If you want to trigger something why...
View Article