Font Selection Madness!!!

Ok, this is driving me nuts. It used to be that when you clicked some text and then opened the character palette, you could click on the font name and use your up and down arrows to scroll down and watch the font change as you went down the list. As of now, it doesn't do anything. Any clues? I can still do it in Photoshop.

It doesn't work in the Mac version of Illustrator. It does in Photoshop and it also works in the Windows versions of both Illustrator and Photoshop. Just shows once again the sloppiness of Adobe's work.

Similar Messages

  • How do I get the packing slips to print the selections made under a buy now button

    So I started using paypal packing slips about a year and half ago, instead of manually copying the info into an excel document version to create the packing slip. I use the packing slips to make sure I have the order correct and done before packing and then printing out the label. For the past year and half if it is a 'buy now' button with drop down selections, I have to manually edit each one to copy and paste the info from the payment notification into the end of  'thank you' text field. and in the process I have to remember to de-select the save button each time so I don't accidently put that info on my next order. Is there a way either with the button itself or the packing slip to select to have it print out the selections made on the packing slip? Given that in a few cases there are several drop downs, I need them all to list. It would save me a little time with each order and more importantly make sure I have the correct information on the correct packing slip. The information is there. just have not figured out how to automatically have it print on the packing slip. For trivia: I have no problem when I send an invoice or have an item with no selections, but for those items that have selections, because most of my items have several similar variations available, it would be really nice to be able to have it automatically put that information on the packing slip.
    Thanks for any help.

    Could you check your "shrink to fit" and scaling settings? Easiest way is:
    tap the Alt key > File > Page Setup
    The default would be
    * Scale: 100
    * Shrink to fit checked (this disables editing the Scale box, but you can uncheck it, edit, then re-check it)
    If those are at their default settings, perhaps they do not work well for particular pages? You can use Print Preview to examine how shrink-to-fit works on that page and override it by using a different percentage instead.
    Occasionally Firefox printer data gets garbled and manual adjustments don't seem to work. In that case, you can "reset" those printer settings. This article has the steps: http://kb.mozillazine.org/Problems_printing_web_pages#Reset_printer

  • How to get value in Second Drop Down based on selection made in first dropd

    Hi All,
    I have a table with first two columns as dropdown.
    The values in first drop down are fixed. However the value in second dropdown should be populated based on selection made in first .
    e.g
    First Column had different departments say IT, SALES, HR.
    Based on department selected I have to populate employee of that department.
    For first dropdown I have taken Drop down by index.
    What should I select for second drop down and achieve desired functionality? Please guide.
    Regards,
    Madhvika

    Hi
    Use drop down by key for fixed values IT, SALES, HR. create on_select action for that drop down.
    in on_select method code like this..
      DATA lo_nd_segment1 TYPE REF TO if_wd_context_node.
      DATA lo_el_segment1 TYPE REF TO if_wd_context_element.
      DATA ls_segment1 TYPE wd_this->Element_segment1.
      data lt_segment1 type wd_this->elements_segment1.
      DATA lv_segment TYPE wd_this->Element_segment1-segment.
      data lr_column type ref to cl_wd_table_column.
    navigate from <CONTEXT> to <SEGMENT1> via lead selection
      lo_nd_segment1 = wd_context->get_child_node( name = wd_this->wdctx_segment1 ).
    get element via lead selection
      lo_el_segment1 = lo_nd_segment1->get_element( ).
      lo_el_segment1 = WDEVENT->GET_CONTEXT_ELEMENT( 'CONTEXT_ELEMENT' ).
    get all declared attributes
      lo_el_segment1->get_static_attributes(
        IMPORTING
          static_attributes = ls_segment1 ).
    now ls_segment1 contains your first drop down selection value.
      DATA : lv_dropdown type string .
      lv_dropdown =  ls_segment1-segment.
      if lv_dropdown = 'IT'.
    // here fill your second drop down based on IT value.
    endif.
    Hope it solves.
    Cheers,
    Kris.

  • Font selection view control in Web Gallery

    LR4.1 RC2
    I wanted to be able to change the font type from the UI panel using a font select popup.
    This control really only seems to exist in the inbuilt edit modes (eg: id plate and watermark) so I have tried a workround which seems to work OK so far. Maybe it will help someone else out working with webengines.
    Mac/OSX only at this stage - good source file in Windows may be font.inf but would require a bit of parsing or get a folder listing somehow.
    Basically I read in the contents of the fonts.list file - which appears in the OSX fonts folders - and then massage the contents to get a raw list of the fonts.
    This raw list is then read into a lua table and consumed by the UI popup control.
    Should there be an obvious way that I haven't seen then just give me time to find a banana to eat ... anyway here goes -
    Changing the font type for the cell index numbers.
    Grid cells use cellIndex to give the photo number and in my webengine the css class is .itemNumber       
    Data Model references -   Note:   %s is important for select to work - if %q is used select will work but font won't change ( %q adds quotes to the string ).
                ["appearance.itemNumber.font"] = function() return string.format( "%s", nonCSS.itemNumberFontSize .. "px " .. nonCSS.itemNumber.font ) end,
                ["nonCSS.itemNumberFontSize"] = 60,
                ["nonCSS.itemNumber.font"] = "inherit", 
                fontlistpath = LrPathUtils.child('/Library/Fonts','')    -- OSX Default fonts
    Code just prior to LR UI Views -
            deffonts = templatepath .. "/pgresources/" .. 'osxdeffont.txt'      -- templatepath is the root path of the webengine - this is the tweaked OSX fonts.list file
            function readFontsFile( deffonts )
                local fileLines = io.lines( deffonts ) 
                ff3 = {}           
                for line in io.lines(deffonts) do
    Filter lines here ...
    eg:   -
                    line = string.sub(line, 17)   -- remove 1st 16 chrs        (/Library/Fonts//Osaka.ttf)
                    line = string.gsub(line, "(.ttf)", "")
                    local kline = line
                       local vline = line
                       table.insert(ff3, { title =  kline ,value = vline })
                end
            end
    LR UI View for font select -
                f:popup_row {
                    title = "Font family :",
                    bindingValue = "nonCSS.itemNumber.font",
                    items =  ff3,
                    bindingEnabled = "appearance.itemNumber.display",   -- control should be disabled if display checkbox false
                    tooltip = "Choose wisely Dave!",
    Using this method is not perfect but gives a good selection of fonts - I found that to improve the success rate the default font file was copied into the webengine
    resources folder and tweaked. eg:  the default file gives Brush Script.ttf but I needed Brush Script MT to work, similarly with Arial Rounded Bold which needed changing
    to Arial Rounded MT Bold
    Basically to find the correct descriptions you could do far worse than to use the ones in the edit selections used by the ID Plate/watermarking features.
                Well there you go ...
    As an aside I did try an undocumented control which on double click popped up a system font selection dialog (the whole nine yards) but  couldn't get it to link to the css class so I didn't persist - not a good idea to use undocumented controls but can be fun to play with.
        f:font_picker {
            font = "Copperplate",     -- showed font as highlighted when picker opened.
            width = 80,
            value = "Arial",    -- appeared on control (title ??) - this value only changed according to the font selected after double-clicking on another hidden control (f:image_well)
            bindingValue = "nonCSS.itemNumber.font",  -- linkage didn't work
    Again, unless I missed it, it would be really good to have the font_picker documented and working for the web gallery views.  Fonts seem to be a murky area -
    probably accounts for the hassles I am getting with the watermarking feature as well.
    Update :
    If the font doesn't work try using the PostScript name as a value which invariably works.
    eg: Handwriting - Dakota  will not work but Handwriting-Dakota will.
         Arial Bold will not work but Arial-BoldMT will.

    I don't think that there is any option to set the default view in the web album. If anyone has found an option to do this, then I will like to know as well.
    Quite a lot of the settings in web album seams to be "hard coded" and only a few settings are available for users to control.
    Karsten

  • Can i change the behavior of the character menu so that the list begins with the current font selected and not at the beginning of the list?

    Im struggling with the way the font selection tab works in the character menu.
    When i scroll down the list and select minion halfway down the list, the next time i click on the font tab, the list starts back at the top of the list making me scroll down the list every time i want to look for a font.
    Can anyone offer some suggestions here?
    thanks
    jeff

    You can't do it exactly the way you want, but if you have InDesign CC or CC 2014, you can set fonts in the Character panel or Control panel Type menu to be Favorites. Click the "star" beside a font to set it as a favorite. Then at the top of the menu, click the "star" filter to show favorites in your list instead of a list of all the fonts.

  • I use classical Hebrew for my work, and Pages will only display English characters even with a Hebrew font selected. If I cut and paste Hebrew characters from another document, as long as the font is supported, it will appear in Pages.  If I type it won't

    I use classical Hebrew for my work, and Pages will only display English characters even with a Hebrew font selected. If I cut and paste Hebrew characters from another document, as long as the font is supported, it will appear in Pages.  If I type it won't continue in Hebrew.  I have tried downloading several fonts, including those from professional societies, but the only way to get Hebrew in my document is to cut and paste.  Does anyone know how to fix this?  I use an older MacBook running OS 10.9.1.  I used to do my Hebrew work in Word, but it is no longer supported by Mac OS.

    Just clarifying:
    Pages '09 has bad support for Hebrew, Arabic etc but will accept pasted text.
    Pages 5 has much better support but with bugs.
    If you have columns they are in the wrong order ie Text starts in the left column and ends in the right column.
    If you type English into Hebrew text it tends to fall in the wrong position eg instead of to the left of Hebrew punctuation it goes to the right.
    As Tom recommends the only real solution on the Mac is Mellel.
    Peter
    btw Tell Apple, they are amazingly slow to fix this running sore which has been broken since RtoL was supposedly introduced in OSX 10.2.3 over a decade ago.
    Peter

  • Can a selection made within a photograph be independently rotated?

    Can a selection made within a photograph be independently rotated? I did an inversion of a photograph and now need to correct the angle of an object that's embedded in the photo.

    What is that you are wanting to achieve? Lightroom is a great image processor and file manager plus much more. Photoshop or Photoshop Elements while doing what you asked for does not have most of Lightroom's capabilities and hence they are designed to work in a complimentary manner. Most photographers use Lightroom for a big part of their work and just use Photoshop for complex pixel editing and working with layers, etc. from Lightroom files can be sent to Photoshop and a resultant file is returned to Lightroom which manages the whole process.

  • Font selection by typing font name into from down field

    I have noticed this since upgrading to Photoshop CC 2014:
    When I want to select a font by typing its name's first few characters into the drop down field, all intuitiveness goes out of the window. The very first character I type gets dropped and rather than bringing me closer to the typeface I'm after, it starts presenting all fonts starting with the 2nd character I've typed. I.e. trying to get to the "Titillium" font selection, I start to type "Titil..." and it gives me the "i" listings in my large number of fonts. This is happening on all my installations of Photoshop CC 2014 (3 different Windows computers and setups).
    Is this a bug or another example of second-guessing what might be helpful when it actually isn't? Not getting the logic of why I have to type "AArial" if I want to get to the "Arial" font in the selection box.
    I know I can simply scroll down in the list of fonts to get to the one I want to use, but in the land of shortcuts, surely scrolling should only ever be the 2nd best choice.
    Looking forward to some insight.

    New features summary
    Search for fonts
    New in this release of Photoshop CC
    You can now quickly search for fonts in the Text tool options bar and Character panel font lists. As you type the name of your desired font family, Photoshop filters the list on the fly. You can search for fonts by font family or by style. Font search doesn't support wildcards.
    Search for fonts by font family or font style 

  • My Photoshop CS3 goes very slow/choppy when I have a selection made.

    Hello,
    My Photoshop CS3 goes very slow/choppy when I have a selection made, with those little moving lines indicating the selection (the lines that look like walking ants). When I'm adding to the selection, it's fine again, because the "ants" aren't moving, same with when I hit Q to enter Quick Mask Mode--as long as the "ants" aren't moving, my Photoshop isn't slow. Is there any way to fix this? To either speed up Photoshop or to stop the "ants" from moving, and simply allow selections to be indicated by broken lines, but not moving broken lines?
    Thanks

    Operating System: Windows 7 Ultimate 32-bit (6.1, Build 7600) (7600.win7_rtm.090713-1255)
               Language: English (Regional Setting: English)
    System Manufacturer: Tyan Computer Corporation
           System Model: S2668 Tiger i7505              
                   BIOS: PhoenixBIOS 4.0 Release 6.0    
              Processor: Intel(R) Xeon(TM) CPU 3.06GHz (4 CPUs), ~3.1GHz
                 Memory: 4096MB RAM
    Available OS Memory: 3072MB RAM
              Page File: 2548MB used, 3589MB available
    49.9 GB of 465 GB free.

  • Font Selection laggy in InDesign CC

    27" iMac 3.4 GHz Intel Core i7, 16 GB 1600 MHz DDR3 RAM, OSX 10.9
    Adobe InDesign CC 9.1
    Suitcase Fusion 5 Version 16.0.5 (603)
    Since installing Mavericks have had terrible issues using InDesign on my less than 3 month old iMac.
    Font selection is painfully slow as shown in this video...
    http://vimeo.com/81705033
    Sometimes when trying to change a fonts weight it won't even register the selection. As can be seen in the video I have the font "Interval" selected and am trying to change its weight. I cannot do that. I then select an alternative font (you will see how laggy the font menu is) and it then takes around 7 seconds to change to the new font once selected. I can then change back to Interval and select the desired weight.
    I have turned off the font previews in preferences as I thought this might be what was causing these issues, but sadly not.
    Not sure whether the issue is Mavericks, Adobe or Extensis.
    We also have the same sorts of issues on another older Mac in our studio. Before Mavericks it was fine. Not sure if that is just coincidence.
    Any suggestions would be much appreciated.

    Yes, it would have been installed in place. My boss did it while I was on holiday and have had no end of problems since it was upgraded to Mavericks.
    So you think re-installing InDesign might do the trick. I'll have to give it a try. Thanks.

  • Fonts selection scrolls past one I need

    I am using Indesiagn CS3. I am starting a new version of our catalogue using same CS3 as previous issue. It is a lot of merging so it is not being some from scratch. I am now unable many times (not all) to select the font I need. The cursor is unable to select the font I need and just flashes by and the font selection screen moves at a very rapid rate and I get what ever font if seems to select. I need to use the same fonts as in the last issue and cannot figure out what is happening. It is frustrating as I can not figure out what is causing this problem as I really need the fractions in the glyphs to show and the fraction selection is pretty slim in most fonts. Could I have corrupt fonts???  Any suggestions would be appreciated. Joan

    There's no way I know to test other than to back them up and replace them. If the problem goes away, they were corrupt and you should trow out the backup set. If not, you can put the old set back to restore all the customizations that will be lost when you do the replacement. Read tyhe comments in Adobe InDesign CS4 * Setting preferences

  • Font Selection Problem

    Post Author: Yousafi
    CA Forum: Publishing
    Hi Everyone.I have Problem In Font Selection. I Need To Select Courier Font In Crystal Report For Dos Based Printer Reports.Driver Is Installed. Courier Font is Visible In Notepad Font Selection. But In  Crystal Report. Courier Font Is Not Visible.How Can I Resolve this Problem.Thanks In Advance.

    Post Author: colin mackenzie
    CA Forum: Publishing
    What version of Crystal Reports are you using?
    Do you have any printer drivers installed on the pc that your developing the crystal report?
    What version of OS is the pc you have your Crystal Reports Developer installed on?

  • Font Selection Glitch

    Anyone experienceing a serious glitch in the font selection tool?
    I've got a lot of fonts to scroll through (probably over 200) and halfway down the list (as I'm scrolling) the fonts suddenly dissapear. The menu panel becomes unresponsive and I can't switch to a new font.
    Currently I CAN NOT work with ANY TEXT GRAPHICS because of this glitch.
    Please help.

    Thanks for the reply Tom. I went in to font book and checked for any corrupted fonts. Font book found a few fonts that threw out a 'caution'. I then deleted them.
    I installed the most recent release of Final Cut, restarted,  then created a new title graphic and have found the issue still exists.
    Any other possible fixes?

  • Font Selection - Drop Down Menu Selection

    Hello All,
    I have a general question about the FONT selection in the menu bar in iBA that has been puzzling me.
    Sometimes when I select a font within a text box and move over to the Drop Down menu within iBA the default view is the top six most recently used fonts.
    At other times the font selection moves down the long list of fonts alphabetically — say to Helvetica.
    I have being playing around with the key combination keys to see if holding command key or a combination will change this.
    By holding down the ALT / Option key turns the FONT PREVIEW view OFF so the menu is more compressed and maybe faster to load.
    Any thoughts on this would be great. I would really like to be able to jump to my top six recently used fonts by holding down a hot key rather than at random times as it seems to me right now.
    Any view?
    Regards,
    Nigel
    TOP SIX MOST RECENT FONTS
    ALL THEY WAY DOWN THE LIST

    I downloaded it again and reinstalled it, restarted my pc, restarted illustrator, and it still didn't work - but, with my type selected, I went to Type -> Find Font and from there I managed to change it into aurulent_sans_mono ok. but even after that I still can't select it in the other ways. It's probably just a bug but at least I've found a way round it.
    thanks for trying it out

  • AI CS4/CS5 Font selection sections

    Hello,
    I'd like to ask if there is any information available on how are the fonts in font selection dialog ordered - they are obviously grouped by script - latin, chinese, japanese, korean etc. What is the precise order of the groups? Is this order the same on every system(what if there are no fonts for a specific group installed) ?
    + Is there a possibility to swtich not just "English names" of Asian fonts, but to have both like seen in Indesign ?
    thanks,
    Alexander

    Hello Mike,
    can you perhaps answer the first query?
    What is the precise order of the groups? Is this order the same on every  system(what if there are no fonts for a specific group installed) ?
    thanks,
    Alexander

Maybe you are looking for

  • Outlook 2013 with Dynamics 2013 CRM Plugin extremely slow

    I have recently upgraded my Dynamics CRM server from 2013 to 2013 SP1 All of my user machines (VDI) have office 2013 with the Dynamics CRM 2011 plugin installed (I previous had Dynamics CRM 2011 on a seperate server, but 2013 was released before we s

  • Adobe Premiere Elements 11 Effects Problem - HELP

    I use Adobe Premiere Elements 11, and when I use effects the footage ends up speeding up, repeating itself, and just not staying the same as it originally was. Does this have to do with what type of footage it is. I am using screen-captures that I go

  • Should i use if again or else if but it gives error..

    i need some help on the use of nested if's i tried using them check this out. if (customerType.equals("b")) if (hrs>=18) System.out.println("recommended plan is business 200 "); else if (hrs>7&&hrs<18) System.out.println("recommended plan is business

  • PL/SQL function in datamodel query

    Hi All, I have the following problem: I have a query Q1 returning a few rows. In the group G1 using this query Q1 i have a computed field returning a number NUM_1. select col_1, col_2 from table_1; So the output looks like: row 1 col_1 col_2 NUM_1_1

  • JQuery script not working after DW update

    After updating to the latest DreamWeaver Version 12 build 5861 a jQuery script for collapsible panels no longer works. I had used the script many times in the past few years on various sites and when I open the html and php pages I created in the pas