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

script UI is Ugly in CC,Why?

New Here ,
Jun 25, 2013 Jun 25, 2013

Copy link to clipboard

Copied

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

Views

2.4K

Translate

Translate

Report

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

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

Another thread regarding ID issues with CC ...

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

... turbulence ahead.

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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

Screen shot 2013-06-25 at 16.23.53.png

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

Clip_6.png

contents lost.

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

CC have 30 days free tryout.

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

ScriptUI_Pickard.jpg

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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.

Votes

Translate

Translate

Report

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