Text kerning squeezed and uneditable for multiple fonts in 10.8.2

Just updated to 10.8 (10.8.2).  Upon update many of my user added fonts are not kerning correctly.  In fact the letters appear on top of one another.  As a workaround, I tried to adjust the character spacing in the Inspector, but this does nothing.  Fonts tested and not kerning correctly: Bauahus 93, Arno Pro, Capitals, 42.  I'm assuming this is an issue with osx 10.8.  Is anyone else having trouble in Keynote?  Is there a fix on the way or do we need to scrap the user added fonts for now?
thanks

I'm not sure what the limit is, but it's a lot more than six.
Move the cursor to the right of the rightmost desktop. A dark "+" (plus) icon will appear.
Click it!

Similar Messages

  • How to manage one wsp and dll for multiple clients in farm environment

    1. There is a product which is developed using C sharp , jquery,CSS and sharepoint object models which have been packaged into .wsp file. Whenever we introduce new functionality to the product we used to branch the
    previous code as a version , say Version 1.0 and new functionality of the product will in another solution. This is how we are managing the code in TFS as versions. Each newer version will have new functionalities. We do not give latest functionality for all
    the clients. Each client is having its own version of functionality. Technically in order to access the functionality, the wsp solution should be present in the solution repository which is available in SharePoint central administrator site. This solution
    will be deployed on the client’s site. We are following the above process in SharePoint standalone installation where we used to purchase dedicated server per client and installed sql, SharePoint foundation 2010 as standalone installation and adding the client
    related version of the code to the solution repository. Later host on the site which is created for that client purpose. This process is same for all the clients where we purchase individual server for each client .
        Now we want to host our product in farm environment of sharepoint foundation 2010 where we are going to try 3 level architecture. 
    • SQL Server-In this sever we are going to install sql server 2008R2 standard edition. Which should serve the database service for all the web applications/sitecollections which we are going to create in Web front end server.
    • Application server- In this server we are going to install the sharepoint as farm and will install search server express for serving search functionality for our product
    • Web front end server- In this server we are going to add this server to Sharepoint farm which we have created in application server. Here we are going to create web applications and site collections for all the clients.
    In this scenario how to manage multiple versions of same wsp solution?
    Another major issue w.r.t the architecture of the product and new approach for client deployment as follow.We have CSS, jquery files for serving the functionality.These files have been mapped to 14 hive folder.If any changes we do one of the jquery file or
    css file which is meant for latest version and not for old version, then how to manage this new functionality for that particular css or jquery file in 14 hive folder, since there is only one 14 hive folder. What is the best practice to make this happen? Another
    thing is, how to manage dll files for individual client?

    It sounds like you have a farm scoped solution at work. In that case you can only have a single instance of it per farm, you'd have to branch each version so they appear to be seperate solutions entirely (thus ruining your clients upgrade process).
    Bluntly i don't think a single farm can manage all your user environments.

  • Javascript code to enable an ADD button to create duplicate tables and pages for multiple entries

    I am using Adobe XI Pro. I have created a multi-page fillable pdf questionnaire that I want to make interactive to the user. Within each page, I have multiple tables that can have ADD buttons to duplicate the table if the client wants more than one test. I would like this table to insert directly below the previous table and they may be able to add upto 5 of these table.
    I also have a couple pages in the questionnaire that require duplication for multiple samples. Eg. One page per sample, and I may have upto 10 samples. I would like the javascript to have an ADD button and then add each page behind the previous related sheet (Original and duplicates together)
    I am not a javascript coder so I would need some examples and a walk through. I did take some developer courses in engineering but it has been almost two decades
    I have search on several forums and cannot find a good resource so I appreciate the help.
    Sincerely
    Tara

    Some of what you want to do can be done using template features and a bit of JavaScript, but if your users will be using Reader, version 11 will be required. You can dynamically add new pages, but adding new tables to existing pages with reflow of content that comes after is not possible with a form created in Acrobat. If you have access to Adobe's LiveCycle Designer form creation software, you can create what's known as a dynamic XFA form that can do all of what you want. You can ask in the LiveCycle Designer forum for more information: http://forums.adobe.com/community/livecycle/livecycle_modules_and_development_tools/livecy cle_designer_es?view=discussions

  • How can i input some text in bold and other in normal font in h:messages

    Hi
    I have a message which comes from properties file.I need half of the text in bold and the other half in normal font.

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Test extends JFrame {
        public Test() {
         setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         Container content = getContentPane();
         JEditorPane jep = new JEditorPane("text/html",
                  "Joe: <font color=red>R u <b>There</b>?</Font><BR>"+
                  "Mary: <font color=green>Keep ur shorts on...</Font>");
         content.add(new JScrollPane(jep), BorderLayout.CENTER);
         setSize(200,200);
         show();
        public static void main(String[] args) { new Test(); }
    }

  • Can I use the same icloud username and password for multiple phones?

    I have 6 iphones and wanted to use Apple Configurator to install the same apps on all 6 phones.  Some of the apps though, also require further installation by email.  Can I use the same iCloud username and password for all 6 phones to download the apps and also to configure email or do I need to create 6 different Apple IDs?

    If different people will be using these phones, you might be better off using the same Apple ID for the iTunes content...apps, music, etc. on each of these devices, but create different ID's for iCloud on each device. You can use one ID for the iTunes/App store, & a different ID for iCloud. That way, messages, notes, contacts, calendars, etc will be kept separate on each device.

  • Automating custom software deployment and configuration for multiple nodes

    Hello everyone.
    Essentially, the question I'd like to ask is related to the automation of software package deployments on Solaris 10.
    Specifically, I have a set of software components in tar files that run as daemon processes after being extracted and configured in the host environment. Pretty much like any server side software package out there, I need to ensure that a list of prerequisites are met before extracting and running the software. For example:
    * Checking that certain users exists, and they are associated with one or many user groups. If not, then create them and their group associations.
    * Checking that target application folders exist and if not, then create them with pre-configured path values defined when the package was assembled.
    * Checking that such folders have the appropriate access control level and ownership for a certain user. If not, then set them.
    * Checking that a set of environment variables are defined in /etc/profile, pointed to predefined path locations, added to the general $PATH environment variable, and finally exported into the user's environment. Other files include /etc/services and /etc/system.
    Obviously, doing this for many boxes (the goal in question) by hand will certainly be slow and error prone.
    I believe a better alternative is to somehow automate this process. So far I have thought about the following options, and discarded them for one reason or another.
    1. Traditional shell scripts. I've only troubleshooted these before, and I don't really have much experience with them. These would be my last resort.
    2. Python scripts using the pexpect library for analyzing system command output. This was my initial choice since the target Solaris environments have it installed. However, I want to make sure that I'm not reinveting the wheel again :P.
    3. Ant or Gradle scripts. They may be an option since the boxes also have Java 1.5 enabled, and the fileset abstractions can be very useful. However, they may fall short when dealing with user and folder permissions checking/setting.
    It seems obvious to me that I'm not the first person in this situation, but I don't seem to find a utility framework geared towards this purpose. Please let me know if there's a better way to accomplish this.
    I thank you for your time and help.

    Configuration Management is a big topic today with a few noteworthy alternatives for Solaris:
    - CFEngine (http://www.cfengine.org)
    - Chef (http://wiki.opscode.com)
    - Puppet (http://www.puppetlabs.com)

  • Illustrator CC won't open and asks for Verdana font to be enabled

    Has anyone encountered this error message?
    "Illustrator CC has stopped working. Please enable Verdana font(s) and relaunch Illustrator."
    I've checked the font and it's enabled but Illustrator refuses to open. I uninstalled CC and reinstalled it, but still no joy.
    I'm running the latest version of Suitcase Fusion 5 and Verdana is enabled. CS6 seems to work, but my CC files are not opening in an editable form on CS6.
    Mac running latest OS.

    This is Adobe's fault for using a system font built by M$, and they need to fix their software, but either can't or won't... http://forums.adobe.com/message/6152826

  • One db and user for multiple tablespaces or schemas per server?

    Hello again.
    I installed Oracle 11g on server_1 and created one database db_1.
    Using Enterprise Manager, I did the following:
    Created a tablespace myname_1.
    Created a user myname_1.
    Logged in as myname_1 and created a table into the default tablespace myname_1.
    When creating this table, the schema field defaulted to myname_1.
    Created another tablespace myname_2.
    My confusion about the relationship between tablespaces, users, and schemas starts here:
    When I try to create a new table for tablespace myname_2, I get an error:
    "user myname_2 does not exist"
    I am seeking some clarification on these levels of organization in Oracle.
    My goal is to setup my server with one database each and one user each per database.
    Then, I think I want to create multiple tablespaces and organize objects per tablespace.
    Or should it be per schema?
    Eventually each tablespace will be moved to a separate server.
    Any comments and suggestions are greatly appreciated.
    Thank you for helping.

    Hello,
    This error means user MYNAME_2 doesn't exists and you have to create one.
    Example 1:
    CREATE USER MYNAME_2
      IDENTIFIED BY "my_password"
      DEFAULT TABLESPACE MYNAME_1
      TEMPORARY TABLESPACE TEMP
      PROFILE DEFAULT
      ACCOUNT UNLOCK;
      -- 4 Roles for KLONDIKE
       GRANT RESOURCE TO MYNAME_2; ---> This privs give unlimited quota on all the tablespaces
      GRANT CONNECT TO MYNAME_2;
      ALTER USER MYNAME_2 DEFAULT ROLE NONE;
    Then create your table (you were missing "AS" )
    create table myname_2.mytable_1 as
    select * from source_table@dblink_2;Example 2: If you want to create table mytable_1 in tablespace myname_2 then you have to create tablespace myname_2 first. To create table in different tablespace than user default tablespace
    create table mytable_1 tablespace myname_2 as select * from source_table@dblink;Regards
    OrionNet

  • How to debug using RSNAST00 and jdbg for multiple invoice number

    Hi everyone,
    I want to debug multiple invoice's print preview.
    could anybody tell me the step by step process how to do this using RSNAST00 and JDBG.
    Thanks
    Lisa

    Hi Ali,
        I faced the same problem. Thing is the break point is not getting triggered when i ran tha IDOC through WE19.
    What i have done is i created a project for my exit in CMOD and kept some junk code in the exit and executed it through BD21. Then the Break point got triggered. See if it works.
    Regards,
    Uday S.

  • How to Search and Array for multiple occurrences of a value

    Hi,
    I am trying to search an array of doubles for a number and report the index location(s) of a number. I.e. -allow for repetition. Search and report all index[i] where the number is contained in the array. For example I have
    double[] myInputArray = new double[5];
    double[] myInputArray = { 1, 2, 3, 3, 5 }I know how to search through the array ONCE and return the first occurrence of a number:
    public double GetIndexOf(double Number) {
        for (int i=0; i<myInputArray.length; i++) {
             if (myInputArray[i] == Number){
                  return(i);
        return(-1);
      }How do I expand this code to report multiple index[i] locations if the number reoccurs in the array like the number 3 does in my example array above?

    The way the Java libraries do this type of operation (String.indexOf(), etc) is to specify the starting index along with what you want to find.
    Changing your example slightly (notice how I fixed your naming and more importantly, your return type):
    public int indexOf(double num) {
       return indexOf(num, 0);
    public int indexOf(double num, int fromIndex) {
        for (int i=fromIndex; i<myInputArray.length; i++) {
             if (myInputArray[i] == num){
                  return(i);
        return(-1);
    //usage to get all indices:
    for ( int index = -1; (index = indexOf(num, index+1)) != -1; ) {
       System.out.println(index);
    }Note that due to how floating point numbers work, you may find doing this on doubles (or any other operation that uses == with double arguments) to give you unexpected results.

  • Help Setup KMS on single domain and active for multiple domain another

    Hi all,
    I have a problem about configure DNS for KMS host. My company use a single domain "abc.com". But I must mange more than 10 company different and they use another domain and dns running independently, they have a one lease line connect them together.
    My challenge is how to active all client on more than 10 company. Any ideas is very appreciate.
    Please help.
    Thanks,

    That's a good article suggested by Meinolf, but it's a little outdated.
    For an updated guide for this:
    https://technet.microsoft.com/en-us/library/ff793409.aspx
    Publishing to Multiple DNS Domains
    By default, the KMS host is registered only in the DNS domain to which the host belongs. If the network environment has only one DNS domain, no further action is required.
    If there is more than one DNS domain name, you can create a list of DNS domains for a KMS host to use when publishing its SRV RR. Setting this registry value suspends the KMS host’s default behavior of publishing only in the domain specified as the Primary
    DNS Suffix.
    Optionally, add priority and weight parameters to the
    DnsDomainPublishList registry value for KMS. This feature enables you to establish KMS host priority groupings and weighting within each group to define which KMS host to try first and balance traffic among multiple KMS hosts.
    Note   DNS changes might not be reflected until all DNS servers have been replicated. Changes made too frequently (time < replication time) can leave older records if the change is performed on a server that has not been
    replicated.
    To automatically publish KMS in multiple DNS domains, add each DNS domain suffix to whichever KMS should publish to the multi-string registry value
    DnsDomainPublishList in registry subkey HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform. After changing the value , restart the Software Licensing Service to create the SRV RRs.
    Note   This key has changed from the Windows Vista location of
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SL.
    After configuring a KMS host to publish to multiple domains, export the registry subkey, and then import it in to the registry on additional KMS hosts. To verify that this procedure was successful, check the Application event log on each KMS host. Event
    ID 12294 indicates that the KMS host successfully created the SRV RRs. Event ID 12293 indicates that the attempt to create the SRV RRs was unsuccessful. For a complete list of error codes, see the
    Volume Activation 2.0 Operations Guide at
    http://technet.microsoft.com/en-us/library/cc303695.aspx.
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Messages and GoogleTalk for multiple videotext

    Every morning, I video chat with a brother and my 86 year old mother. My mother has an AIM account as well as a GoogleTalk account and I can see both of her accounts in my Buddy List. I can video chat with her on either of those accounts, but when my brother is video chatting with me, he does not see her GoogleTalk account in his Messages Buddy List and if I try to invite her into the video chat on her GoogleTalk account, it is not available for that. Her GoogleTalk account does have the video camera icon that shows multiple chatting and my brother has put her GoogleTalk name in his Messages Buddy List, yet he can never see her. My brother and I have the GoogleTalk accounts enabled in the Preferences I have video chatted with my mom on her GoogleTalk account just the two of us. I do have to be signed into Messages with my GoogleTalk account to see her in my Buddy List. My brother has a GoogleTalk and AIM account and is Available with both. So what gives?

    Hi,
    IF his Login via Google's web pages where the Chat/Talk is available is the one that show On line in everyone else's Buddy Lists then we need to check the Messages login.
    When I started with GoogleTalk it used my Google Mail ID.
    Now the Mail App seem to accept either @googlemail.com or @gmail.com
    He should use the name as it appears top right when he is logged in to Google.
    Messages (and iChat before that) is a lot fussier about this than the Mail app.
    If the Google ID in the current account in Messages lists the "wrong" ending he should delete that account (Highlight  and use the minus icon at the bottom of the List) and then Re-add an new account when the correct ID.
    When you have separate Buddy Lists the bottom left of the main Messages window should list all the logged in Accounts
    Does he list Google here ?
    The Video menu is where the camera and the Mic (and Screen Sharing) are turned ON.
    They are On for all accounts that can Video and he should see the green Icon in the Google Account (if it is actually logged in properly)
    8:57 pm      Tuesday; March 24, 2015
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • Updates to CS5 report download error and failures for multiple applications using bridge or application itself, after earlier updateswere successful.  Using Windows 7 Pro 32 Bit.

    Updates include the following
    Bridge CS5 4.0.5 Update
    Extension Manager CS5.0 Update
    Illustrator CS5 15.0.2 Update
    Pixel Bender Toolklit 2.5 Update
    InDesign CS5 7.0.4 Update
    Dreamweaver CS5 11.0.4 Update
    Fireworks CS5 11.0.2 Update
    Photoshop 12.0.4 Update for Photoshop CS5
    Photoshop Camera Raw 6.7 Update
    Every application has teh same error associated with the update; it reads "THere was an aerror downloading this update. Please quit and try again later."

    update manually, http://www.adobe.com/downloads/updates/

  • When I click on a bookmarked link, the text jerks up and down for a few seconds

    I wrote a file written in HTML, with no fancy coding. The file is http://www.pathologyoutlines.com/jobs.html. When you click on the hyperlink on this line near the top:
    Click ''' here''' to view new Jobs posted over the past 120 days (most recent first)
    the screen jerks up and down a few times before stopping, at least on some computers. It is a simple bookmark. If you click on the link again, it doesn't happen. However, if the page changes, it does the "jerking" again.
    I have checked and rechecked the code, and can't find any problems.
    What do you think?
    Nat Pernick, ''moderator deleted personal information that isn't appropriate for this forum''

    Your link works fine for me in Firefox 3.6.13 on Windows 7.

  • Powershell script for security groups and users for multiple share folders

    Hi scripting team,
    I need your help with powershell script for the below queries 
    1. List out the security groups for more than one server share path and output it to a file ( csv ) 
    For eg.
    If the are are two share paths 
    \\servername\foldermain\folder1
    \\servername\foldermain\folder2
    So I needs the list of security groups for each share path
    And the output needs to be under each any every path.
    2. Grab the users belongs to main security groups and it nested groups for more than one security group and listed the users under each and every group. No need to display nested groups. Just users belongs to main group and users under nested.
    Your teams help is much appreciated 
    Thank you.
    Thilochana kumararatne

    Hi Braham,
    Thanks for your quick reply.
    Are we able to do this on two stage method
    1. grab the security groups from the share paths
    if can grab the share path from a separate txt file than copying it to the <your path> location
    so i can modify the txt file
    once run the script
    if can the output like below to a CSV file
    \\servername\foldermain\folder1group 1group 2group 3\\servername\foldermain\folder2group 1group 2group 3then i know which groups belongs to which share paththen i can remove the duplicate groups and keep the common groups to grab the users belongs to itso with the second script same as the first copy the security groups to a txt file and the out put as below.what I needs is the users full name and the samaccount name ( user id )group 1user1user2user3
    group 2user1user2user3looking forward your help on thisThank you.Thilo

Maybe you are looking for

  • Mini + G5, 2 Macs 1 monitor - how to switch?

    Hi - I have a lovely Dual-G5 Mac that I have used for a couple of years. Recently, I decided to provide a server for our two iBooks, one PC notebook, one PC tower, and the dual-G5, so as to simplify calendar sharing, backups, storage, and so on. The

  • Shoul I buy a 720 or 1080 LCD for my APPLE TV?

    I want to be able to run high res images from my iPhoto library slideshow to the LCD via the Apple TV. I see great prices at COSTCO on LCD's but their employees are not mac savvy. Can someone kindly advise if a 1080 HD LCD is overkill vs. a 720 HD LC

  • ZBF Class-map and different way of doing them

    Hi People just though i would ask a question on how to set up a ZBF. (question at the end of example config's) i have been playing with this for a while now and like to get advice over what way is the recomended way of doing multiple matchs ok we we

  • Using Documentation Effectively 5-12-2004

    I am new to Oracle and desperately trying to familiarize myself with the online documentation. I’m having difficulty understanding the sort logic being applied to the following query. My intent is to sort the output by the day of the week on which th

  • Info record price history

    Dear Experts, If we go to inforecord> Environment>Order price history, we can find a order price history report. The Table in which this price history data is stored is EIPA. I there any transaction to upload past order price history in SAP while ini