Single digits to double

I inherited an indesign doc that I need to modify and I am having trouble making a "10" in the sigle digit numbered sections, seems the space only allows for a single digit - please see my image insert below. I assume I need to change either the para or character attributes but I'm not sure what they need to be changed to. Any help is greatly appreciated.
Regards,
WBC

If you look closely at theparagraph panel in your screen shot you'll see the drop cap setting is for two characters, three lines deep. This means that most likely there is either a space in front of just after the single digit, and quite possibly custom kerning has been applied.
It may be sufficient to remove the space, if before the number, for two-digit numbers, or you may need to change the specification to three characters and add one more hair space and kern it back for single digits, or add a 0 in front of all single digit numbers.

Similar Messages

  • String value changes single quote ' to double quote "

    I am creating a list with different bill codes within single
    quotes as follows
    <cfset corlist = " '1100 ','1200 ','1300 ','1700 ','1800
    ','1950 ','7001 ' ">
    when I do an output
    for
    <cfoutput>AND idbillcode IN ( #corlist
    #)</cfoutput>
    I get the values as follows
    AND idbillcode IN ( '1100 ','1200 ','1300 ','1700 ','1800
    ','1950 ','7001 ')
    However when I put the same string within a cfquery the
    single quotes get replaced by double quotes as follows
    AND idbillcode IN ( ''1100 '',''1200 '',''1300 '',''1700
    '',''1800 '',''1950 '',''7001 '') which throws an error.
    Anybody has any clues.
    Thanks.

    However when I put the same string within a cfquery the
    single quotes
    get replaced by double quotes as follows
    AND idbillcode IN ( ''1100 '',''1200 '',''1300 '',''1700
    '',''1800
    '',''1950
    '',''7001 '') which throws an error.
    Anybody has any clues.
    That is ColdFusion escaping the single quotes, by doubling
    them so that
    you can search for strings such as "singhpk's code does not
    work".
    (Note the single quote/apostrophe that would normally break
    this string
    if it was not escaped.
    To tell CF not to do this, one uses the
    preserveSingleQuotes() function.
    The documentation has all the details.

  • How to handle both single click and double click from mouse

    hey,
    I looked in past threads and didn't get a proper answer for capturing both single and double click from the mouse.
    in most applications the single click action does not interfere with the double click action, for example in a text editor, single click sets the cursor in between the text, double click marks a word, triple click marks a sentence, they do not bother each other, they all can happen first the single then the double and then the triple, but what if i have a very distinct action for each of the actions, the e.getClickCount() returns every time the number of clicks and if i use
    if(e.getClickCount()==1)
        doSingleClick();
    if(e.getClickCount()==2)
        doDoubleClick();it will always do first the single click and then the double click, which works fine with the example i gave, but not with what i want to do, so i was thinking to over come this that i will use another thread to run my tasks if dt has past since the last click and by the last click counts to perform the correct action and go to sleep until the next mouse click notify it, what do you think?
    run this to get what i mean...
    package blah;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class MouseClickTest {
         static long previousTime = System.currentTimeMillis();
         public static void main(String[] args) {
              JPanel panel = new JPanel();
              JButton component = new JButton("Hit me, please");
              component.addMouseListener(new MouseAdapter(){
                   public void mouseClicked(MouseEvent me){
                        if(me.getClickCount()==1)
                             System.out.println("Now I will do single click action");
                        if(me.getClickCount()==2)
                             System.out.println("Now I will do DOUBLE click action");
    //                    System.out.println("Click count: " + me.getClickCount());
              panel.add(component);
              Launcher.launch(panel);
    package blah;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Launcher {
         public static JFrame launch (Container contents, String title, Color backgroundColor) {
              JFrame frame = new JFrame (title);
              if (backgroundColor != null) {
                   frame.setBackground (backgroundColor);
                   contents.setBackground (backgroundColor);
              } else {
                   frame.setBackground (contents.getBackground());
              frame.getContentPane().add (contents, BorderLayout.CENTER);
              frame.pack();
              frame.addWindowListener (new WindowAdapter() {
                   public void windowClosing (WindowEvent e) {
                        System.exit (0);
              frame.setVisible (true);
              return frame;
         public static JFrame launch (Container contents, String title)      {
              return launch (contents, title, null);
         public static JFrame launch (Container contents, Color backgroundColor) {
              return launch (contents, contents.getClass().getName(), backgroundColor);
         public static JFrame launch (Container contents) {
              return launch (contents, contents.getClass().getName());
    }

    Read my comments and solution in this posting; [http://forums.sun.com/thread.jspa?forumID=57&threadID=705244]
    and then choose a better design for your application.

  • Track Pad single tap and double tap not working

    Dear All,
    I have a MBP A1226 model with intel 2.2 GHz Core 2 uo processor. With Mac OSX ver 10.8.4.
    My system had developed a snag, was not booting up. I booted up thru the rcovery disk and after the disk repair did not help, did a drive erese and a fresh install.
    All seems to work well except that the trackpad does not respond to single aswell as double tap. Scrolling is working fine.
    Help to resolve this issue will be appreciated.
    BTW trackpad was functinal before the snag.
    Regards

    I suspect the trackpad settings were reset when you did your fresh install of Mac OSX.
    to fix this, open up Settings>Trackpad>"Point & Click" tab.
    Here you will find tons of settings that wil let you customize how your trackpad works. More specifically, you will want to enable "Tap to Click".
    Hope this helps!

  • To find out whether a character is of Single byte or Double bytes

    hi,
    is there any built-in class to find whether a character is a single byte or double byte. is there any method to do so?? If possible can someone provide a sample code snippet to do a check for single byte and double byte characters.
    thanx in advance.....

    If you are asking what size the char primitive is, it's 16 bits.
    If you want to know the numerical value of a char, you can cast it to an int and compare it to 255 to see if it fits in 1 byte.

  • Remediation for single-clicking a double-click action

    I'm using the double mouse click feature of a Click box in a
    software simulation lesson we've built in captivate. Unfortunately
    when the user single-clicks in the Click box, no remediation shows
    to tell the user that they must double-click in the box to complete
    the step.
    Anyone have any ideas on how to provide the user with
    remediation on single clicking a double click Click box?
    Thanks,
    Scott Witlen
    McKessson Provider Technologies

    Um... there are no macros. Captivate is a closed system with
    no documented API outside of some variables you can read and in
    some cases, set to make Captivate do some simple navigation-related
    things. Search the Captivate help file for 'variables' and you'll
    find a list.
    Outside of that, the only official ways to "enhance"
    Captivate are either to:
    - Create your own standalone functionality in Flash and
    insert it in Captivate as a self-contained animation. This can be
    problematic due to the closed nature of the Captivate runtime, as
    well as the layering imposed by the use of skins and borders.
    - Make Javascript calls to the browser and put the
    functionality there. Since there is limited interactivity between
    Javascript and Flash, this is much more limited in scope than
    inserting your own self-contained animations
    Some folks have also opened up a published SWF with a
    decompiler program and viewed the Adobe source code in an effort to
    make their inserted animations do cooler things, but that is very
    much an unsupported activity.

  • How to replace single backslash(\) to double backslash(\\)

    Hi
    I want to replace single backslash to double backslash from the string.
    Code is here
    String data="File name :\n.txt;File name:\t.txt";               
    data = data.replace("\\","\\\\");
    System.out.println("-->" +data);
    i tried to this code but its not working. Help me if anyone is know.
    Please reply me asap.
    Thanks

    DVekaria wrote:
    Are you not getting my question.Obviously not. That's why we've asked you to clarify it. Twice, at least.
    whatever data contenting in Variable, it must print as its on the screen.This code does that.
    String s = "a\nb\tc;"
    System.out.println(s);The variable s contains a reference to a String object. That String object holds 5 characters: 'a', newline, 'b', tab, 'c'. The println prints out exactly what's in that String--those 5 characters. Note that there is not even one single backslash in that String.
    a
    b cThis is exactly what you asked for.
    Now let's say I create a file in Notepad, and I type the following, and then save it:
    a\nb\tcThat file contains 7 characters. 'a', '\', 'n', 'b', '\', 't', 'c'. If I read that file with Buffered reader, it will give me a String object with those same 7 charcters. If I print it out it will print out those 7 characters.
    a\nb\tcNote that in both cases, I am printing out exactly what is in the String.
    Think carefully on what is the same and what is different between those two cases, and use it to form a clearer definition of your problem. Remember, we want to know what you're trying to accomplish. Just saying "I want to replace backslashes" tells us how you're trying to solve your problem.

  • Single slash to Double Slash Convertion

    hi all,
    i want to replace single slash (\) by double slash(
    ) in a path , ex :
    ...\..\.. should become
    ..   when i m trying to do so,it takes it as an escape sequence character. Can anyone help me plz

    Use double-slash to represent the single slash and a quadruple slash to represent the double-slash.
    stringreplace( Transaction.PropertyName , "
    Above statement translates to replace "\" with "
    " when the expression in the Link Editor is evaluated.
    The other option is to create a local property called Slash with a default value of \ in the property editor.
    Your expression would look like:
    stringreplace( Transaction.PropertyName , Local.Slash , Local.Slash & Local.Slash )
    Of course, you could use another local property of double-slash if you wish.
    Hope this helps.
    Cheers,
    Jai.

  • Converting textbook to single digital edition for iPad

    We are about to repurpose a medical textbook to a single digital edition. I'm looking for guidance in two areas before jumping in feet first...
    Are there example of other textbooks converted using DPS that anyone can direct me to?
    Are there any size limitations (i.e., number of articles, number of scrollable pages, amount of content, etc.)?
    Thanks!

    Thanks...that's interesting to know. We looked at the ePub, but the editors felt this book wouldn't work using that format. The book has a lot of "parts" and the print version is highly designed. We understand that there will be sacrifices moving to a digital edition, but we weren't willing to take the product down to an ePub design.

  • Minimum amount of digits in double

    hello everyone,
    i was doing quite some research on how many digits a double can hold.
    it's clear, that this is limited by the amount of bits a double consists of.
    the algorithm is too complicated for me to understand, though.
    Depending on the number , a double is supposed to be able
    to hold 15-19 digits.
    For example the number "12345678901234,121" can be held by a double,
    but "12345678901234,122" can't. Also "999999999999999999" (18 digits)
    and "2220000000000000000000" (23 digits) are ok but .
    I need a reliable statement (prooved by some article or book) for boss,
    which amount of digits (fraction and digital) a double can hold as
    a minimum (e.g. 12 digital and 5 fraction-digits). even after hours of search i wasn't able to come up with anything, so I hope someone can help me here.
    here are some links on the topic:
    http://www.trotek.ec-lyon.fr/~muller/cours/numeration/flp_ieee.html.en
    http://www.particle.kth.se/~lindsey/JavaCourse/Book/Part1/Tech/Chapter02/floatingPt.html
    http://forum.java.sun.com/thread.jspa?forumID=31&threadID=403027
    many greetings
    marc johnen, berlin

    i was doing quite some research on how many digits a double can hold.Check out the API documentation for the Double.longBitsToDouble method.
    It explainsexactly what the format of a double is all about. In binary, a double can
    hold 52 binary digits; always. The notion of an eleven bit exponent implements
    the 'floating point' idea. When you want to translate this notion to decimal, you
    have to be prepared for certain fractions that cannot be exactly expressed as
    a finite sum of negative piwers of 2. A safe estimation is <= 15 decimal digits for
    all double values.
    kind regards,
    Jos

  • Word 2008 line spacing.. is single space and double space all messed up?

    Very basic here: in print layout view (only one I am using) the single spacing and double spacing seem so far apart. Single spacing is way too far apart. Is anyone else seeing this?

    That is the issue. I am hitting enter and getting a big space. I see a similar thing in Pages. All I know is tht in 2004 version, I start all my papers with 4 lines in top corner (name-enter/date-enter/assignment/class#-enter) I do these with single space just by default on Word.
    THen I go to format-paragraph-double space, and do my writing--double spaced.
    This is weird to me. I like word 2008, looks nice, notebook is cool. But I don't like having to re-learn that stuff. Is this how everybody does this? Everyone out of the box can not just type and choose single/double space? We have to edit some paragraph spacing? HUH?

  • Leopard Registering Single Clicks as Double Clicks

    I have a terrible problem under 10.5.1 with the system registering about 40% of my single clicks as double clicks. It seems to be getting worse, as well. I thought it was an issue with the mouse on my Wacom tablet or with the Wacom driver, but in trying to troubleshoot it I found I had the same problem when using my original Apple mouse.
    It's extremely problematic. For example, I've customized my Finder toolbar to include the delete icon. However, if I click the delete icon and the system registers it as a double click, it will delete not only the file I intended, but it's parent directory. Is anyone else experiencing this?

    I have the same problem. I have concluded that it is a software problem either with OS X or some third party software on the computer.
    I originally thought it was a problem with Logitech's control center as that was the mouse I was having problems with. However, I recently replaced that mouse and uninstalled the logitech software and am still having problems with my new mouse from a different vendor. All the while, the trackpad will still register single clicks as double clicks.
    In my observations I found that once I restart the computer, single clicks will be registered as normal for the first few minutes of computer use. After that, any time the mouse is clicked more than once without being moved, no matter how much time has passed, it will register the subsequent clicks as double/triple/etc. clicks. So if, for example, I were to click an application icon once, not move the mouse, come back a day later and click again, it will double click. I also found that if the mouse is moved ever so slightly, it might still register as a double click.
    Additionally, if I am scrolling through any window but don't move the mouse, it will register the subsequent clicks as double clicks, even when you are clicking on a different item. An example of this is if I am scrolling down a finder window with a lot of files in column view, click on a file to see it's icon preview, then scroll down without moving the mouse and click on another file, it will register as a double click and launch that item.
    Other observations: I was having this problem in the early days of my OS install, so I went ahead and reinstalled the system. The problem came back in a day or so and I can't pinpoint it to any one piece of software that has been installed. I'm wondering if it is an OS issue.

  • How to replace single quote with double quote

    hai all,
    i have a problem,
    i am trying insert a string containing single quote into ms-access database.
    it is giving error.
    how can i avoid this .if i replace a single quote in the text with double quote it will defenitely
    insert into database.
    in java.lang.String
    replace () will not work to replace quote with double quote.
    any otherway to solve this problem.
    please mail me to [email protected]
    thank you
    sambareddy
    inida

    java.lang.String.replace () will not work to replace quote with double quote.Really?
    String x = ...
    x.replace( "'", "\"" );

  • Replace Single Quote with double quote

    Hi All,
    I have a String s="help'me'to'replace";
    i want to replace single quote( ' ) in to double quote ( " )
    The final out put should be like this help"me"to"replace
    ( Actually this string i have to pass in to an XML )
    Please help any one

    s.replaceAll("'","\"");{code}
    or just one of the String#replace() methods.
    Edited by: sabre150 on Mar 17, 2009 11:48 AM                                                                                                                                                                                                                                                               

  • Two complete live shows on a single DVD+R double layer disc

    Hello!
    I am a new customer of Adobe's and have gone from Sonic MyDVD v6.1 to v9.0, then to Adobe Premiere Element 3.0 last month, and finally to Adobe Premiere Pro CS3 with Adobe Encore CS3 a few days ago with the digital downloads. Absolutely no problems downloading 3.5GB of files, which is unheard of for my computer and no problems whatsoever with serial numbers for the downloads either.
    Fortunately for me, all of my problems have been stemming from being inexperienced with Premiere Pro and the online tutorials and help from Forum users have been fantastic! Well, with the exception of the "Desktop Display Mode has been reset because the video card returned an error" error message that seems to keep cropping up and causing my video to look unrendered, despite it all now being rendered, I am at a crossroads of what to do here.
    Two years ago, I videotaped one of my favorite local bands performing an outdoor live show in the afternoon and then videotaped them performing at a club the same night. Now I am trying to re-make the same DVD that I made for them using Sonic MyDVD 6.1, because they want to sell it now, but this time on a double-layer disc for better quality (plus I upgraded my crap NEC DVD burner that came with my Dell computer to an LG GSA-H10L since then, which works great and doesn't make error-prone DVDs) and also remove some bonus materials that they thought would only be of interest to them and took up too much space. The only problem is that I deleted all of my original source files because they were taking up too much space and I couldn't save a 10MB file anywhere else. In hindsight, I probably could have split it up into smaller pieces, but that's not the issue now.
    When I bought Adobe Premiere Elements 3.0, I remember reading something that said to put two complete video files on the same timeline and just add Main Menu markers and End Point markers to allow the program to auto-populate the chosen DVD template. So I did that, but I hated the templates and there was very little control over anything. Sonic MyDVD at least gave me the option to center the button text. In the end, I upgraded to Adobe Premiere Pro CS3.
    Now I have completed editing the timeline and am happy with everything, but now I see there are no Main Menu markers or End Point markers. Can I still make a decent DVD with two main menu motion buttons that each have Play and Scene Selections options below them with everything on the same timeline/sequence, or do I need to create a new sequence and copy everything from part two of my original timeline to the new sequence? Is there a preferred method?
    I didn't see this covered in any of the tutorials, help files, forums, or the downloadable manual that I also purchased. Maybe I missed it, but can anyone offer any insight on this?
    Thank you!
    Matt

    Yes, I have Encore installed and did a 4-hour first pass to Export to Encore last night, but it failed about 2 hours in when my Zone Alarm pop-up came up saying it was trying to access the Internet and I was away from my computer for 15 minutes while it was up. Then I restarted it at 11pm and it ran until 3am, when I was hoping to go to bed, but then it began its second pass. Grr! I can't remember if I went to bed at this point and found this when I woke up, or if I was staying up watching its second pass to see if it would go any quicker than the first time, but when it completed, I received this pop-up message:
    "The instruction at 0x11ce445a referenced memory at 0x11d00000. The memory could not be written."
    When I clicked OK, Adobe Encore shut down.
    I'm guessing that if I started with two .AVI files totaling 19.4GB, I should have ended up with something larger than a 3.8GB .M2V file, an 82MB .M2V.XMPSES file, a 936MB .WAV file, and a 3KB .XMP file when this was done rendering. At this point, I don't know what to do with the resulting files or if they are incomplete.
    Anyhow, after all that, my main question in my original post was this:
    "Can I still make a decent DVD with two main menu motion buttons that each have Play and Scene Selections options below them with everything on the same timeline/sequence, or do I need to create a new sequence and copy everything from part two of my original timeline to the new sequence? Is there a preferred method?"
    Thanks!
    Matt

Maybe you are looking for