Skip to main content
Inspiring
June 29, 2015

P: Script UI Listbox columns do not work anymore

  • June 29, 2015
  • 11 replies
  • 416 views

Just updated from CC 2014 to CC 2015 and my scripts broke (https://github.com/gimblll/GBL-Textur...). After debugging I've narrowed it down to the use of a listbox with columns. For some reason the new version fails to create the columns.

I narrowed it down to a short example. This fails to produce columns in 2015. And if the commented line is uncommented, I get a "Not implemented" error. (And all this works in 2014.)

var win = new Window("dialog", "Test Window");

var panel = win.add("panel");
panel.alignChildren = ["fill", undefined]
panel.preferredSize = [1000, undefined];

var list = panel.add("listbox", undefined, undefined, {
numberOfColumns: 2,
showHeaders: true,
columnTitles: ["Id", "Resize", ],
});

list.preferredSize = [undefined, 100];

var item1 = list.add ("item", "Test1");
// item1.subItems[0].text = "Test2";

win.show();

This topic has been closed for replies.

11 replies

Inspiring
October 16, 2018
Seems to work in my use case, thank you.
Hannah Nicollet
Community Manager
Community Manager
October 15, 2018
Hi Everyone,

This issue should be resolved in today's update to Photoshop, 20.0. Please open the Creative Cloud app, download the update and let us know how it goes for you. If you do not see the update immediately, sign in and sign out of the Creative Cloud.

Thanks,
Hannah
Inspiring
November 28, 2017
Is there are a way to create table for supporting Photoshop CC 2014 and 2015 using Photoshop Scripting?
Inspiring
June 3, 2017
Also encountered this. It took them 5 years to fix the smudge tool so I guess we'll have to wait only 3 or 4 years
Participant
September 29, 2016
Great! Any ETA?
Legend
September 26, 2016
It's still open, to be fixed.
Participant
September 26, 2016


I've created a user-interface using ScriptUI and I'm having problems with the listbox control which I've nailed down to be entirely Photoshop-specific.

I first create the listbox control and when trying to populate it with subItem -components using a with-block, I get the following error in ESTK: "Not implemented".

I've tested the code with another target (#target estoolkit and also #target illustrator) and in these applications it runs just fine.
Participant
September 26, 2016
Any update on this issue? It's a very frustrating issue and there are no workarounds.
Legend
December 9, 2015
Engineering is looking into this.
Inspiring
December 9, 2015
Any possibility to replace this hack by a proper table UI? As mentioned by Kimmo, it will be great to have some news.