Re: Need help with openDialog
How about this: var imagePath = ""; var dir = Folder(imagePath); selectAIfile = dir.openDlg("Select .ai File" , "Select:*.ai"); if ( selectAIfile == null ) { // User...
View ArticleRe: Error 8800
The parameters for command "Make" are not currently valid.executeAction(cTID('Mk '), desc1, dialogMode);
View ArticleJavascript Select Menu Item & Tool
I am brand new to javascript and quite overwhelmed trying to learn this language. I am trying to convert extensions for Photoshop that were created with Configurator 4 (in case some of you may not...
View ArticleRe: Automate batch for Generator
I figured out a work around. I am using Mac Automator... It seems to work for what I need.Thanks anyway!
View ArticleRe: Error 8800
Some current document condition needed for the action manager scriptlistener code does not exist therefore the command is not valid for the current state the document is in.
View ArticleRe: Javascript Select Menu Item & Tool
3. Select tool from javascript.The Action Manager code (as created when recording with ScriptingListener.plugin) should be helpful for this. 1. Tabs at the very top for access to different panel...
View ArticleRe: Javascript Select Menu Item & Tool
Thank you - that's the ticket. For both tool and menu item I had ScriptingListenerJS active and it gave me the javascript for selecting a tool and also a menu item. I will look into the creating tabs...
View ArticleRe: Fit frame to content but in Photoshop
It seems to be possible to change a paragraph text’s bounds without affecting the type settings. I have not bothered to evaluate the existing bounds, so you’d have to do quite some work on the Script...
View ArticleFrom Configurator 4 to HTML5
In a Configurator 4 created panel for Photoshop and I have a button for the menu item Curves.Here is the script that I got from script editor in Configurator. When I run this script from ExtendScript,...
View ArticleRe: From Configurator 4 to HTML5
You have a couple of options: 1) replace the 'sayHello()' string with your code. This is difficult as you have both single quote and double quote in your code above so you would have to clean that up....
View ArticleRe: From Configurator 4 to HTML5
Thanks Tom - I will give it try and report back with my results. Sam
View ArticleRe: Error 8800
I get a similar error sometimes. This is what happens to me and why: I create a bunch of new tool presets, and save the entire presets (.tpl file) as "ToolPresets02". Next, I select a tool preset from...
View ArticleListItem.selected reports wrong values in DropDownList.onChange
There's a bug in PS CS5 or later (still present in CC, not in CS2) with ListItem.selected property. It is not set correctly when accessed in its drop down list's onChange event. However,...
View ArticleRe: ListItem.selected reports wrong values in DropDownList.onChange
A workaround is using DropDownList.selection property:dialog.ddl.onChange = function() { for (var i = 0; i < options.length; ++i) { options[i].hide(); }...
View ArticleLayer displacement alert
When using photoshop with a Wacom table I unconsciously move layers which causes a registration problem down the line.I work up and down the layer pallet and can not lock any layers. Is it possible...
View ArticleRe: Layer displacement alert
How would a script know if a move was deliberate or inadvertently moved. The inadvertent move would be done in Photoshop UI so you may be able to set to set up an Script Event Manager move event to...
View ArticleRe: Fit frame to content but in Photoshop
You know, of all the people I discussed this with, no one has ever mentioned trying this out. I did and it works pretty well for me. Thanks!
View ArticleRe: Fit frame to content but in Photoshop
As far as the scripting goes, I have no idea how to make them, just how to use them. Thanks for doing this though. Maybe I can give it to a friend of mine to see if he can finish it up. Thanks again...
View Article