Seriously WEIRD No other way to describe this

I've just switched to CS4, and opened up an InDesign CS3 document in CS4 and well, now all my non-breaking spaces have the following tiny words:
]A man is only as good as the words he uses.
I kid you not. The space has become about 10 mm wide to accommodate the words which run neatly over two lines to fill the space. What the?!!!

Brilliant! (Admittedly, I was considering "how would I make a fake screen shot").
It's even worse than that: a
b font designer
with humor.
InDesign used to have its own, built-in system for 'drawing' its various spaces. After all, they're supposed to be empty, so moving the 'cursor' a bit to the right should be enough, right? And ID supports many different spaces -- half, sixth, third -- and most of them just can't be found in all (or even any at all) fonts.
But... font designers complained! Indeed, they have every right: if, for example, you create an
i underlined
font -- with an underlined space as well -- ID ignores it, and draws an empty space of its own. So, with CS4, they chose to use the
b font's
regular space, non-breaking space, en-/em-/the rest-spaces, if they appear in the font. Only if not, ID substitutes its own solution -- move an appropriate distance.
A nice story, but for solid confirmation, you could check if the font has any character at position #160 (U+00A0) -- or perhaps, admit you got us all going.

Similar Messages

  • HT204088 Why can't you print a cd jewel case listing of songs using iTunes. Is there some other way of doing this without using iTunes?

    Why can't you print a cd jewel case listing of songs using iTunes. Is there some other way to do this without using iTunes?

    Hi spider1950,
    As long as you have the most recent update of iTunes (11.0.4), you should be able to print a jewel case insert directly from iTunes. You may find the following page useful:
    Apple Support: Print CD Inserts
    https://www.apple.com/findouthow/music/itunes.html#makecd-printinserts
    Regards,
    - Brenden

  • My ipad2 freezes when i try to delete a email that has a 78mb pdf attached. Is there any other way to delete this file other than through the email program?

    My ipad2 freezes when i try to delete a email that has a 78mb pdf file attatched. Is there any other way to delete this file other than the email program?

    If it's not MobileMe, use Safari to access the server directly and delet from there. If it is MobileMe, do the same thing but from your computer as the iPad Safari won't connect to MobileMe mail.

  • My video needs to go on a SD DVD single layer-it is 1h 51m long-the only way I can make is fit is encode H. 264-not ideal-I am using the Share option in FCP-native media was shot 980x720...any other way to do this??

    My video needs to go on a SD single layer DVD…it is 1h 51m long…the only way I can make it fit is encode H. 264…not ideal…I am using the Share option in FCP…native media was shot 980x720...any other way to do this??

    To play on DVD Players, it has to be MPEG2.
    It's under 2 hours; I'm surprised it won't fit. If not, get Compressor and lower the bit rate to fit.
    The native resolution was 980X720…you mean 960?
    It will all be resized to 720X480, which is DVD standard.
    Russ

  • HT4509 The globe button swaps places with the 123 button on iPhone 6 when the phone orientation is changed from upright to landscape or the other way arround. This is very confusing and makes it hard to type fast.

    The globe button swaps places with the 123 button on iPhone 6 when the phone orientation is changed from upright to landscape or the other way arround. This is very confusing and makes it hard to type fast.
    Is there a way to change that?

    iOS 8.1 didn't fix this

  • I can't activate my iphone because my cousin's account was hacked. Is there any other way to fix this?

    my aunt got my cousin a new iphone, so she gave me my cousin's old iphone. I reset the the phone she gave me so i can set it up for my own use now. The problem is that i need the account of my cousin in order to activate the phone, the bad news is that her account was hacked. Is there any other way that i can activate this account and put it on my list of devices? So that if i want to reset it, i'll just use my account to activate it.
    P.S.
    i Do have a proof that this phone was given to me by my aunt and she is the one who bought it for my cousin.

    Your cousin needs to contact Apple and ask to speak to someone in account security to get the Apple ID back under his/her control.
    If your aunt has original proof of purchase for the phone, she can bring that, along with the phone, to an Apple store or call Apple and they may be able to assist.
    ~Lyssa

  • Installed successfully but network is not connected. Yet when I go on my Mac network is connected. Is there any other way to solve this problem? Please help.

    Hi,
    I have just installed Windows 7 Home Premium on my Mac book Pro 13inch, it installed successfully but there is no network connection. Yet when I go on my Mac I can get online no problem. Please help or what other way I can do to connect windows online?

    Did you download Windows Support Software when you started installing windows via Bootcamp. If yes you need to then install the Support Software after installing windows which contains Windows drivers for Mac hardware.

  • Any other way to achieve this?

    SQL> desc cname
    Name Null? Type
    ID NUMBER
    CTYPE VARCHAR2(10)
    CLIAS VARCHAR2(10)
    SQL> select *from cname;
    ID CTYPE CLIAS
    11 acn tst
    12 acn tst
    12 ucp nbs
    12 asf trp
    SQL> ed
    Wrote file afiedt.buf
    1 select a.id,a.ctype,a.clias from cname a, cname b
    2 where
    3 a.ctype = b.ctype and
    4 a.clias = b.clias and
    5* a.rowid!=b.rowid
    SQL> /
    ID CTYPE CLIAS
    12 acn tst
    11 acn tst
    SQL>
    Any other way to achieve the above output?
    Thanks. :-)

    Maybe
    select id,ctype,clias
      from cname
    where (ctype,clias) in (select ctype,clias
                               from cname
                              group by ctype,clias
                              having count(*) > 1
                            )Regards
    Etbin
    NOT TESTED as I don't have database access on weekends/holidays

  • Any other way to write this using nvl(x,v) locator.

    please solve my confusion.
    select * from emp
    where nvl(to_char(temperature),'a')
    in (select nvl(to_char(temperature),'a') from emp
    where ename = 'SCOTT');
    temperature column in numeric value. Is there anyother way to execute the same answer without using type casting(to_char).
    can we use above queries ans without to_char..
    Edited by: user8710598 on Aug 19, 2009 10:18 AM

    Hi Solomon,
    I think you are forgot one case ( if sal is null).
    Sincerly it's good solution Solomon, I learned a good method to avoid scan table two times.
    Tanks Solomon.
    Good job.
    SELECT *
      FROM (SELECT e.*,
                   MAX (CASE
                           WHEN ename = 'SCOTT' OR temperature IS NULL
                              THEN 1
                        END
                       ) OVER (PARTITION BY temperature) scotts_temperature_club
              FROM emp e)
    WHERE scotts_temperature_club = 1
    SELECT *
      FROM emp_test;
         EMPNO ENAME      JOB              MGR HIREDATE          SAL       COMM     DEPTNO
          7369 SMITH      CLERK           7902 1980-12-17        800                    20
          7499 ALLEN      SALESMAN        7698 1981-02-20       1600        300         30
          7521 WARD       SALESMAN        7698 1981-02-22       3000        500         30
          7566 JONES      MANAGER         7839 1981-04-02                               20
          7654 MARTIN     SALESMAN        7698 1981-09-28       1250       1400         30
          7698 BLAKE      MANAGER         7839 1981-05-01                               30
          7782 CLARK      MANAGER         7839 1981-06-09       2450                    10
          7788 SCOTT      ANALYST         7566 1987-04-19       3000                    20
          7839 KING       PRESIDENT            1981-11-17       5000          0         10
          7844 TURNER     SALESMAN        7698 1981-09-08       1500                    30
          7876 ADAMS      CLERK           7788 1987-05-23                               20
          7900 JAMES      CLERK           7698 1981-12-03        950                    30
          7902 FORD       ANALYST         7566 1981-12-03       3000                    20
          7934 MILLER     CLERK           7782 1982-01-23       1300                    10
    SELECT *
      FROM (SELECT e.*,
                   MAX (CASE
                           WHEN ename = 'SCOTT' OR sal IS NULL
                              THEN 1
                        END
                       ) OVER (PARTITION BY sal) scotts_salary_club
              FROM emp_test e)
    WHERE scotts_salary_club = 1
         EMPNO ENAME      JOB              MGR HIREDATE          SAL       COMM     DEPTNO SCOTTS_SALARY_CLUB
          7788 SCOTT      ANALYST         7566 1987-04-19       3000                    20                  1
          7521 WARD       SALESMAN        7698 1981-02-22       3000        500         30                  1
          7902 FORD       ANALYST         7566 1981-12-03       3000                    20                  1
          7566 JONES      MANAGER         7839 1981-04-02                               20                  1
          7876 ADAMS      CLERK           7788 1987-05-23                               20                  1
          7698 BLAKE      MANAGER         7839 1981-05-01                               30                  1
    6 rows selected.

  • I want to reload a Firefox webpage when it is idle for 2 minutes. Is there any add-on ? or any other way to do this.

    I want the page to be reloaded when it is idle for some period of time only. I need a step by step procedure for this.

    https://addons.mozilla.org/en-US/firefox/addon/reloadevery/

  • My ipad was having problems opening viewers, but I learned to power it  off and wait about a minute and turn it back on and it rests the issue, do you have any other ways or ifs this the best it worked pretty good this time, but  if it happens again

    My Ipad has trouble opening setting tab and safari, it opens abd before you can enter anything the iPad shuts it down to the home screen, I mainly use my ipad for the internet or emails, I know the internet works because I still receive emails on it.  Please help me out here.

    Try clearing Safari, close all apps and reset the iPad.
    Go to Settings>Safari>Clear Cookies and Data.
    Tap the home button once. Then tap the home button twice and the recents tray will appear at the bottom of the screen. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button twice.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • My verifacation for itunes girt card its all scratched up is there anyother way to put thi gift card on my account

    Hello
    i have a gift and on the back of it is where the code is but while i was scratching it off the numbers got all weird to where i cant ready them is there any other way to put this card on my account or any way to find out what my number was

    Seen this?
    http://www.apple.com/hk/en/support/itunes/store/giftcard/

  • What is optimize way of doing this

    Hi
    I have following tables
    T1
    Part number
    Model Year
    Program
    Lead Program
    sample data:
    123 P1 1978 N
    123 P1 1977 N
    123 P2 1978 N
    T2
    Program
    Model Year
    Active flag
    sample data:
    P1 1978 Y
    P1 1977 Y
    P2 1978 Y
    T3
    Program
    Model Year
    Date
    sample data:
    P1 1978 12/10/2006
    P1 1977 20/10/2008
    P2 1978 30/10/2007
    Processing Steps:
    1. Identify all Distinct Part Numbers from T1
    2. For each Part Number , Find all Distinct (Program Model, Year)
    3. From T2, identify and remove inactive records with (Program Model, Year) combination
    4. For all active (Program Model, Year), extract date from T3
    5. Identify one (Program Model, Year) combination with min date.
    6. For all records from T1 , matching individual distinct part number, update Lead Program to Y for (Program Model, Year) identified in step 5.
    I was thinking about
    a. define cursor for 1st step
    b. for each part in cursor , will execute join qry for 2,3,4 (on T1,T2,T3) & store results in temp table
    c. Include rownum condition in above qry to return one program,model year with min date
    d. update lead pgm field in T1 for corresponding program, model year combn
    Can anybody suggest any other way of optimizing this?I feel since my first cursor may contain thousands/millions of record, will there be any performance problem?

    Safari > Preferences > Security > Enable Java

  • My forwart text feature on IOS 8 keeps disappearing and the only way I know how to make it re-appear is by powering off and on my phone, is there another way to fix this feature?

    my forward text message feature on IOS8 keeps disappearing and the only way I know to make it re-appear is by powering off and on my phone. Is there any other way to fix this?

    I should also point out that when I connect my iPhone, it DOESN'T appear as a connected drive on the desktop. Not sure how this can be so, since the iPhone also has a drive and also functions as an iPod if I want it to. I must have changed some setting to achieve this non-appearance, but don't remember what I must have done.
    What's the secret?

  • I have a new iMac i want to install adobe photoshop elements 10, I only have the DVDs.  Is there another way of installing this software?

    I have just bought the latest 27 inch imac.  I tried to install my adobe photoshop elements 10 dvd and found no drive.  Is there any other way to install this software onto the computer? It is already installed on my macbook pro, is there an option to transfer the files?

    No I meant to "borrow" the other Mac's optical drive, with the new Mac as the Target. cornelius puts it succinctly here, except we're not talking about a Mac with a broken drive. And you would select the Adobe DVD, not the "install disc."
    I suggest that you get a firewire cable. Then boot the computer with the working optical drive into Firewire Target Disk Mode, startup the computer with the broken drive and hold down the Option key. Then select the install disk as boot and startup and proceed with installation.
    https://discussions.apple.com/message/11874414#11874414
    Actually, I think cornelius's post isn't exactly what's required, but I think you get the idea.
    Message was edited by: WZZZ

Maybe you are looking for

  • Problems with display of preview - and Adobe's tech support.

    Hello, all. After quite a bit of struggle I am still experiencing problems with the way Bridge CS5 displays previews. Previews are displayed with rather low quality. By that I mean low resolution that causes images to appear pixelated and out of focu

  • How to set up multiple profiles for an Express?

    My wife is visiting her mother for a couple weeks and the idea is for her to take one of our Expresses with her so she can use wifi while she's there. I was told that the best way to do this is to set up a second profile for 'Travel' on the Express t

  • Does weblogic server 10.3.6 & 10.3.5 supported on oracle linux 5.8 ?

    I am trying to install weblogic server 10.3.6 on Oracle linux 5.8 (64-bit) platform. While creating domain , it does not take any input in password & conform password fields on "configure administrator username and password page". The field remains b

  • SchemaName option doesn't work

    Hi, I'm just migrating from 2.2.6 to 2.3.1, and I've some problems with the schematool if using the schemaName option in kodo.properties. I'm calling schematool always with the refresh option. If I delete all previously created tables etc. in the dat

  • FinalCut Pro Movie Import?

    Is it possible to use FinalCut Pro movies in iWeb?