Page 1 of 1

Questions about listbox and dropdownlist...

Posted: January 18th, 2006, 5:47 pm
by dramaking
I have tried many times on doing a listbox or dropdownlist, but it just doesn't work...

e.g.
winObj.dropObj = winObj.add("listbox",[20,20,100,140],["item1","item2","item3"]);


Is that possible to create a "list" or "select" types in AE script? thank you very much!

Posted: January 18th, 2006, 11:39 pm
by vidpat
The script UI API doesn't expose any such listbox functionality as of AE 6.5. However, it seems that this was added for AE 7.

Take a look at UIChooser.jsx (http://www.aenhancers.com/viewtopic.php?t=128) for my approach to solving this problem in 6.5.

Posted: January 23rd, 2006, 5:55 pm
by dramaking
thanks for you reply!!