Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

script UI is Ugly in CC,Why?

New Here ,
Jun 25, 2013 Jun 25, 2013

Hello,everyone,

Did you find script UI is Ugly in CC?

1. Script UI in CC

CC.png

2 Script UI in CS6. It's OK.

CS6.png

Could you tell me how to improve it? Thanks in advance.

TOPICS
Scripting
2.7K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe
Guru ,
Jun 25, 2013 Jun 25, 2013

I don't use CC nor have I wrote any scripts for it yet… Anyhows I have seen a couple of threads mostly ID related…

See Marc's last comment on this one… and he really does know what he's doing… eeek

http://forums.adobe.com/thread/1235394?tstart=0

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Mentor ,
Jun 25, 2013 Jun 25, 2013

Another thread regarding ID issues with CC ...

http://forums.adobe.com/message/5447193

... turbulence ahead.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jun 25, 2013 Jun 25, 2013

I could deal with "ugly"...but that to me is broken...as of why, only the Silicon Gods know why.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 25, 2013 Jun 25, 2013
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guru ,
Jun 25, 2013 Jun 25, 2013

I've requested a fix… From the cloud man himself…

Screen shot 2013-06-25 at 16.23.53.png

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jun 26, 2013 Jun 26, 2013

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guru ,
Jun 26, 2013 Jun 26, 2013

Cult TV for people of my generation… Look how real that cloud looks…? CGI who needs it…

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 27, 2013 Jun 27, 2013

Clip_6.png

contents lost.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jun 27, 2013 Jun 27, 2013

that's no good, sorry we can't help, we don't have CC

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 27, 2013 Jun 27, 2013

CC have 30 days free tryout.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Valorous Hero ,
Aug 01, 2013 Aug 01, 2013

ScriptUI_Pickard.jpg

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Aug 01, 2013 Aug 01, 2013

Define a font for your script ui.

You can find how at:

Adobes Javascript Tools Guide.pdf

Page 105 Script UI class

item ---> applicationFonts

Page 106 Script UI class

item ---> FontStyle

Page 107 Script UI class

item ---> newFont()

Cheers Daniel

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Valorous Hero ,
Aug 01, 2013 Aug 01, 2013

Very well, can anyone please help me answer why the following has different results in CS5 and CC:

function test(){

    function userWindow(){

        var w =  new Window('dialog',"Fonts Test");

        var font_1 = ScriptUI.newFont('Helvetica', ScriptUI.FontStyle.REGULAR,18);

        var font_2 = ScriptUI.newFont('Courier', ScriptUI.FontStyle.REGULAR,18);

        var text_1 = w.add('statictext',undefined,'Hello World'); text_1.graphics.font=font_1;

        var text_2 = w.add('statictext',undefined,'Hello World'); text_2.graphics.font=font_2;

        w.show();

    }

    var userInput = userWindow();

}

test();

Screen Shot 2013-08-01 at 4.09.15 PM.png

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Valorous Hero ,
Aug 01, 2013 Aug 01, 2013
LATEST

Oh researched my own answer- according to Peter Kahrel's Guide, the fonts and sizes are locked and can't be changed.  Hopefully they will fix this issue soon.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines