i finished my panel however testing it looks great but in aftereffects the Dimension is totally wrong !!
even i put the resize property to false but in aftereffects i am able to resize it any idea
i am using something like this
Code: Select all
myPanel = (thisObj instanceof Panel) ? thisObj : new Window("palette", "G_Animator ", undefined, {resizeable:false});
Code: Select all
var G_animator = createUI(this);
if (G_animator instanceof Window) {
G_animator.show();
} else {
G_animator.layout.layout(true);
}