Search found 1 match

by craignewman
December 17th, 2010, 1:20 pm
Forum: Scripts Discussion
Topic: Creating New Window Palettes
Replies: 1
Views: 6043

Creating New Window Palettes

Hi - I'm wondering why this does not work: var pal = new Window("palette", "Slate", undefined, {resizeable:true}); But this does work: thisObj=this; var pal = (thisObj instanceof Panel) ? thisObj : new Window("palette", "Slate", undefined, {resizeable:true}); ...