Skip to main content
Inspiring
May 22, 2015
Answered

"tabbedpanel" panel of the result is different in AE12.2 and AE13.2

  • May 22, 2015
  • 1 reply
  • 813 views

In AfterEffects CC(12.2) and CC2014(13.2), it comes out is a difference in the appearance of when I create a tab in the Panel object.

The test I have done in the Mac OSX 10.9.5.

TestScript

var winObj = new Window("palette","sample",[100,50,400,250]);

var tpObj = winObj.add("tabbedpanel",[20,20,280,180],"sample");

tpObj.add("tab",[0,0,0,0],"Tab1");

tpObj.add("tab",[0,0,0,0],"Tab1");

tpObj.add("tab",[0,0,0,0],"Tab1");

winObj.show();

result in AE 12.2

result in AE 13.2

Who AE13.2 display is now extremely small.

I'd like to the same result as AE12.2, What can I do?

This topic has been closed for replies.
Correct answer Alex White

This works for me fine:

var winObj = new Window("dialog","sample",undefined);

winObj.preferredSize = [300,200];

var tpObj = winObj.add("tabbedpanel",undefined,"sample");

tpObj.preferredSize = [260,160];

tpObj.add("tab",undefined,"Tab1");

tpObj.add("tab",undefined,"Tab1");

tpObj.add("tab",undefined,"Tab1");

winObj.show();

1 reply

Alex White
Legend
May 22, 2015

I had the same problem here:

"tabbedpanel" panel doesn`t display in AE 13.2

Change

var winObj = new Window("palette","sample",[100,50,400,250]);


to


var winObj = new Window("dialog","sample",[100,50,400,250]);

Inspiring
May 22, 2015

Thank you reply, I also this post was already seen.

However, I will be changed to "dialog" did not result in resolution of the problem.

In my environment that's less than the script look like this result.

var winObj = new Window("dialog","sample",[100,50,400,250]);

var tpObj = winObj.add("tabbedpanel",[20,20,280,180],"sample");

tpObj.add("tab",[0,0,0,0],"Tab1");

tpObj.add("tab",[0,0,0,0],"Tab1");

tpObj.add("tab",[0,0,0,0],"Tab1");

winObj.show()

result in AE 13.2 "dialog""dialog"

Correct tab window is created in your environment?

Alex White
Alex WhiteCorrect answer
Legend
May 22, 2015

This works for me fine:

var winObj = new Window("dialog","sample",undefined);

winObj.preferredSize = [300,200];

var tpObj = winObj.add("tabbedpanel",undefined,"sample");

tpObj.preferredSize = [260,160];

tpObj.add("tab",undefined,"Tab1");

tpObj.add("tab",undefined,"Tab1");

tpObj.add("tab",undefined,"Tab1");

winObj.show();