|
Author |
Message |
dahauss
Joined: 14 Jul 2010
Posts: 2
|
Posted: Wed Jul 14, 2010 3:51 pm Post subject: automate editlab pro? |
|
|
Im using photoshop CS5 and trying to automate the EDITLAB PRO color correction plugin.. I created a new action but the action does not save any of the things I do in the interface for the plugin.. how do I resolve this??
Thanks... |
|
|
|
|
Paul R
Joined: 06 Apr 2010
Posts: 57
|
Posted: Wed Jul 14, 2010 3:55 pm Post subject: |
|
|
Not everything is recordable, you could try installing the ScriptLister plugin and see if anything is output, if not you are out of luck. |
|
|
|
|
dahauss
Joined: 14 Jul 2010
Posts: 2
|
Posted: Wed Jul 14, 2010 4:03 pm Post subject: |
|
|
this is what I get when I create an action and want to include the plugin and the actions inside the plugin:
REM =======================================================
DIM objApp
SET objApp = CreateObject("Photoshop.Application")
REM Use dialog mode 3 for show no dialogs
DIM dialogMode
dialogMode = 3
DIM idOpn
idOpn = objApp.CharIDToTypeID( "Opn " )
DIM desc1
SET desc1 = CreateObject( "Photoshop.ActionDescriptor" )
DIM idnull
idnull = objApp.CharIDToTypeID( "null" )
Call desc1.PutPath( idnull, "M:\\Client Photos\\6-27-10\\Fixed\\100_0873.tif" )
Call objApp.ExecuteAction( idOpn, desc1, dialogMode )
REM =======================================================
DIM objApp
SET objApp = CreateObject("Photoshop.Application")
REM Use dialog mode 3 for show no dialogs
DIM dialogMode
dialogMode = 3
DIM idPictoColoriCorrectEditLabProfive.zero
idPictoColoriCorrectEditLabProfive.zero = objApp.StringIDToTypeID( "PictoColor iCorrect EditLab Pro 5.0" )
DIM desc2
SET desc2 = CreateObject( "Photoshop.ActionDescriptor" )
DIM idDt
idDt = objApp.CharIDToTypeID( "Dt " )
Call desc2.
Call objApp.ExecuteAction( idPictoColoriCorrectEditLabProfive.zero, desc2, dialogMode ) |
|
|
|
|
Paul R
Joined: 06 Apr 2010
Posts: 57
|
Posted: Wed Jul 14, 2010 4:14 pm Post subject: |
|
|
It is outputting some details but I don't do VB only JavaScript. It may be possible to create a function that you can call but you need to know what parameters are used in the UI and if the information is available in the scriptlistener output. From there you may be able to write a script that is callable from an action. |
|
|
|
|
|