UI (User Interface) text size and colors

Recent versions of Elements (7, 8, 9) have changed to a user interface which is predominantly shades of gray and black with few if any user options for color or font. The font size cannot be altered because Adobe use their own pixel-based font which is not compatible with Windows Desktop settings. So on many flat screens with high resolutions the font becomes almost unreadable. The upper case 'E' in the menu bar Edit for example, is a mere 2.03mm high on a 22" display at 1920x1080 resolution.
This has been mentioned a number of times over these releases to no avail, but at last there may be a change on the way for PSE 10 (later later this year?).
So if you feel the gray/black UI needs attention I suggest you visit
http://feedback.photoshop.com/photoshop_family/topics/my_eyes_need_help_with_photoshop
where there are a number of comments. This is monitored by Adobe so may influence the next release. The more request there are I suspect the more likely some action. Adobe have already commented: "The amount of conversation that this thread has generated among Elements customers was unanticipated." on the thread.
If you wish to place a comment you will need a Photoshop Account and to be logged in. If you didn't create an account when you installed the product then just click Create Account at the top of the link above.

Font sizes are hard-coded in teh apps and there is no way to change that. The new CC versiosn support high-DPI displays and resolve those issues (mostly).
Mylenium

Similar Messages

  • How do I add text boxes that people can edit font type, size, and color in Adobe Reader

    How do I add text boxes that people can edit font type, size, and color in Adobe Reader? I am using Acrobat Pro XI.

    It is possible. Add your text fields and in their Properties set them to have Rich Text Contents (under Options). This will allow the users to specify all kinds of formatting settings for those fields (by pressing Ctrl+E and using the Properties bar).

  • Is there a way to change the font size and color of text in the calendar app?

    Does anyone know a way of changing the font size and color of text in the calendar app that comes with the iPad 2?  It is very hard to see the small gray numbers on the calendar.  Thanks

    Looks like you didn't get a reply on your post, but it is still a problem.  Font size is supposedly changeable via "Accessibility" in Settings, but it doesn't work.  You can turn on "Zoom".

  • How do I save a font and it's size and color in a text box as a default

    I am using Adobe Acrobat XI for Mac and can't figure out how to set a default font for text boxes. I don't seem to be able to access the properties to set the default by highlighting a properly formatted text box and pressing ctrl-e. Is there another key combination for Mac? Or another method for setting defaults? I'm finding I have to set the font, size and color every time I open a new Acrobat doc and want to add a text box. Also, the choices are not even saving with the document. The fonts already typed save correctly, but on reopening, I have to reset if I want to add more text.
    Thanks in advance for any help,
    Tom Carlson

    Thanks for the suggestions. I've got a Logitech G700S Mouse with a right click button, so right-clicking isn't an issue. Unfortunately, the I can't seem to find the menu to "Use Current Properties as New Defaults." I may not have described the problem correctly.
    I am adding text to a pre-existing pdf document, not creating a form. I would like to be able to set a default font, size and color for text, so that when I enter text in a text box onto the pdf document, it has those properties. If I select the text box that is properly formatted (not the text, but the box) and right click, the only choices I get are:
    Cut
    Copy
    Delete
    Select All
    Deselect All
    Arrange>
    Edit Using>
    So I gues my question is if one can even format a text box as a default or a "style" or the like. I tried setting a default font, size and color for "comments" also in the Acrobat preferences, but even that didn't seem to stick when I opened a new doc. This all may just be a Mac / Mavericks interaction flaw. Anybody have any other ideas?
    Tom

  • I want to change the size and color of text in call out boxes and text boxes. How can I do this? Jack

    I want to change the size and color of text in call out boxes and text boxes. How can I do this? Jack

    Highlite the text inside the text box and then press Ctrl+E.

  • How do I change the font size and color in a text box?

    How do I change the font size and color in a text box?

    Really frustrating to find the first time but simple once you figure it out. I think I spent hours trying to find this. Simply right click on a blank spot in the toolbar up top and select Properties Bar. There it is! The available properties will change depending on whether you have the content (text) selected or the box itself.
    I haven't found a way yet to make it show up as a regular part of the toolbar. It floats around and gets in the way so I don't leave it on and then have to open it again when I need it. Again - frustrating; but at least it's there!

  • Adding text to indesign pages with specific font ,size,and color using javascript

    Hello,
    Using javascript i am able to add some text to each page of an indesign file.
    myNewText = "SOME TEXT"
    myTextFrame = myPage.textFrames.item(0);
    tempframe = myTextFrame.contents;
    myTextFrame.contents =  myNewText + tempframe ;
    But i want to specify the font used,size and color for that text.
    When i try the code mentioned in indesign javascript scripting guide
    myNewText .appliedFont = app.fonts.item("Times New Roman");
    myNewText .fontStyle = "Bold";
    nothing gets changed and font family already used stays the same.
    How can i do that only for the added text and not for the whole content?I dont want to add the text to a new text frame I want to append it to the existing text frame.
    And is there a way to specify font size too?
    thank you

    There's a mixup going on here. Let's see if we can sort out some of it
    at least.
    If you just want to add new text to an already existing text frame,
    that's easy:
    myTextFrame.contents += "Hello";
    But if you want the new text to have unique formatting, it's a little
    more complicated.
    There are two simple ways to do it, I think:
    1. Create a temporary text frame, as you have done, and add the text,
    and format everything in there. Then move() that formatted text to the
    end of myTextFrame and delete the temporary frame:
    tempFrame = app.activeDocument.textFrames.add();
    tempFrame.contents = "New Text";
    tempFrame.paragraphs[0].appliedFont = app.fonts.itemByName("Times New
    Roman"); // etc...
    tempFrame.paragraphs[0].move(myTextFrame.insertionPoints[-1],
    LocationOptions.AFTER);
    tempFrame.remove();
    2. The other option, is to add the text directly to your textFrame. But
    if you want to format only that text, you have to store where the text
    started:
    myTextFrame = app.selection[0];
    firstInsertionPoint = myTextFrame.insertionPoints[-1].index;
    myTextFrame.contents += "New Text";
    myAddedText =
    myTextFrame.characters.itemByRange(myTextFrame.insertionPoints[firstInsertionPoint],
    myTextFrame.insertionPoints[-1]);
    myAddedText.appliedFont = app.fonts.itemByName("Trajan Pro"); // etc.
    What you've done in your sample script, however, is to try to apply a
    font to a simple JavaScript string. It won't work, but the way you did
    it, it won't throw an error either, because in fact you've created a new
    property of your string. (myString = "Hello"; myString.appliedFont =
    "Times"; // myString now has a Javascript property called appliedFont --
    but that's nothing to do with InDesign!)
    HTH,
    Ariel

  • CS4 Type Size and Color

    I know I'm not the brightest guy in the world and don't have the knowledge that most have on this board. But I was excited when CS4 arrived because I enjoyed working with MX so much, I thought some of the new features would be good. And I'm sure most of them are.
    However, I can't tell you how much just changing a text size or color infuriates me because it keeps popping up with style and spry boxes to "add" or "name" or whatever. Why something that was so simple was made so difficult is beyond my limited knowledge. I posted this before and got some condescending replies that "styles were easy", etc., but for me it's pure hell. Why Dreamweaver would think creating a style is easier than picking a number/color escapes my logic.
    In fact, it's frustrated me so much that my company has given me the okay to build a completely new site, using a hosting company where we can update via a WYSIWYG web platform. That's how much CS4 has made my job difficult. (We also use Contribute as we have multiple stations that update 'their' pages.)
    I'm glad the program works for more experienced individuals, but it's done nothing but frustrate the crap out of me.
    Sorry for the rant. I don't usually do this, but I wanted Dreamweaver to know. If they can fix that in the future, I'm sure I wouldn't be the only one happy.
    (And I do mean this . . . ) Have a good week!
    Mark Moore

    However, I can't tell you how much just changing a text size or color infuriates me because it keeps popping up with style and spry boxes to "add" or "name" or whatever. Why something that was so simple was made so difficult is beyond my limited knowledge. I posted this before and got some condescending replies that "styles were easy", etc., but for me it's pure hell. Why Dreamweaver would think creating a style is easier than picking a number/color escapes my logic.
    The reason is that the old point-and-click method used outdated inline HTML formatting and is now deprecated across the web (not just Dreamweaver).
    Dreamweaver responded to market demands from end users.
    Sorry if this sounds condescending but the web has evolved from HTML formatting to the much more flexible, powerful and easy to maintain Cascading Style Sheets.
    Takes a couple of extra steps upfront to name and define a style.
    Edits and future maintenance from then on require a couple of mouseclicks to change an entire website and ensure consistent formatting sitewide.
    None of that power and flexibility is possible with inline HTML formatting.

  • Set-up custom font, font size, and color for writing new and reply e-mails in Thunderbird

    I know that I can select the font, size, and color for writing each new and reply e-mails in Thunderbird, but I don't want to have to do this each time. I want to set-up the default font, size, and color for all new and reply e-mails. It already comes up with a default one, but I want to change it, but can't figure out how to do this. I'm sure it is quite simple, but I don't know how to do this. Thank you in advance for help.

    Tools > Options > Display > Formatting tab
    Default font: select font
    Select size : eg; 14
    Click on 'Advanced' button and set all the sizes to 14
    Select : 'allow messages to use other fonts'
    click on OK
    Click on 'Composition'
    Under the 'General' tab
    Suggest you set HTML font to 'Variable width' and Size : 'Medium'
    Select the 'Text colour' you would like to compose email using
    Select the 'Background colour' you would like to use when composing emails.
    click on OK to save all changes.
    This will set the display email list to the selected font.
    It will allow received emails to use the font the sender used.
    When you compose an email it will also use the same font settings.
    The message 'Display' settings in the above section also apply to messages that you compose. The settings are not sent, so they do not affect how your messages appear to recipients.
    The settings in the ''Composition' section can affect how messages are sent. If you make unusual choices, then people who receive messages from you might find them difficult or impossible to read. Hence, why I suggest you leave it as 'Variable width' and allow the 'Display' settings to set the default used for composing emails.
    More info:
    * http://kb.mozillazine.org/Font_settings_in_Thunderbird

  • Change text size and colour of report values ?

    Hi,
    I have a formula as part of a BEx query in version 3.5 and I'd like to make the values of this formula stand out more by either changing the text size of this one row and/or changing the colour.
    I've already selected the "highlighting" option but this only changes the colour to a light blue colour.
    Does anyone know if it's possible to change the text size and colour of one or more rows of a report?
    Thanks.

    HI Mark,
    Greetings.
    Your requirement can be met by using exceptions. It can not change/increase the text size but it can give you color coding based on the conditions you set while creating query.
    Open your query in Designer and click on exception button on the top menu bar. Define your condition on whatever key figure you want to get the color coding and execute your report.
    Let me know if this is what you were looking for.
    Thanks
    Sachin

  • Access image size and color profile

    Hi all,
    Is it possible to access image size and color profile ? If not, will it be possible in CS6 ?
    Thanks.

    Load the external XMP library and get it from that?

  • Font size and color

    can I change the font size and color of the items in a list?Font size can be changed and it is working in emulator but not in phones.I am using Nokia 6630 for testing purpose. I can't find any options to change color.

    graphics can change color ( in later versions off wtk)

  • How do I change the font size and color in my e-mail?

    I'm using the regular MAIL application on my Macbook (OSX 10.5.5) and I'm wondering how to change the font size and color of my incoming and outgoing mail.
    Any suggestions?
    thanks!

    I'm using the regular MAIL application on my Macbook (OSX 10.5.5) and I'm wondering how to change the font size and color of my incoming and outgoing mail.
    For outgoing email you the Fonts and Colors buttons found in the New Message pane (note that settings you make in Mail > Preferences do not affect outgoing messages).

  • How do i change font sizes and colors in ical in OS Lion.  Everything is greyed and too small.   And how do I changed the color of the scroll bars, which are now invisible?

    how do i change font sizes and colors in ical in OS Lion. Since upgrading,  all fonts are grey, instead of black,  and too small.   And how do I changed the color of the scroll bars, which also are grey and almost invisible?  And if you can asnwer this, can you tell me how to get back the email format I had before the upgrade?  I no longer have column headings and I'd like them.  Thank you. 

    Do you know about changing the font colors for ical, and the color of the scroll bars?
    No, I don't. I don't use that program; I fiddled with it just now, and could not find a way to do that.
    Perhaps someone else will have an idea.

  • The tool bar is missing for font,size and color for lettering in elements 9

    Iam missing tool bar for font, style and size and color. where is it?

    Are you sure you have the regular horizontal or vertical type tool and not one of the type masks selected? If you choose the type mask tools you see a dotted outline around the T icon instead of a solid T.

Maybe you are looking for

  • How do I text on my ipad mini with data

    How do I text with an ipad mini.  I have a data plan and want to text other platforms as well as iPhones.

  • Bridge Sort Order - Secondary Sort Key

    Noticed an anamoly to sort order when rating images. I have sort order set to Ascending by date. Everything starts off fine - all images in the correct order. When I start labeling the images (using numbers 6, 7, 8, 9) the sort order starts changing.

  • C7: FM transmitter disappeared after update

    I bought my C7 last Thursday, officially,  from Cosmote Greece. I ran "Nokia Software Updater 3" and downloaded and installed the latest update. After that the FM transmitter disappeared -- in its place there is a "FMTxApp" menu item (I suppose it's

  • Call the Function against a select query in 500 procedures...

    Hello Gurus, I have a scenario, where i had made one function(UDF Function) to calculate something and in every procedure i call that function and calculate my requirement. Yesterday, i made a select query using reg exp for the same calculation.. So

  • Configure Network (Ethernet Cards) interfaces doubts.

    Hi All, I m beginner in Solaris/Unix, and I have same problems in configure my network. I have one machine with 2 Ethernet Cards, this machine has multiboot, than it have Solaris 10 and Windows XP. I will show the configuration that I have on Window,