Optional Vertical Space Character

Paragraphs can have a "space before" and "space after" attribute, as you probably know. The nice thing about this is that if the paragraph is at the top of the page, the space before disappears.
I would like to have a vertical space character that does the same. You insert it into a line by itself (Type>Special Characters>Vertical Spacer). It makes a vertical gap based on the leading you give it.
BUT! if it appears as the top line of a text frame, it will disappear.
Why is this good? Because it saves having to create a lot of paragraph styles to deal with each situation. For instance, currnetly, I may need the following styles:
Block Quote Standalone [space before and space after]
Block Quote beginning [space before no space after]
Block Quote Middle [no space before no space after]
Block Quote End [no space before space after]
Block Quote Standalone Indented
Block Quote beginning Indented
Block Quote Middle Indented
Block Quote End Indented
That's 8 styles all for the different combinations of block quotes. If I had a "vertical space" character, I would need only two styles:
Block Quote; and
Block Quote Indented.
Much easier to manage! The variations could be simply managed by inserting a vertical spacer as needed. Really useful idea, and similar to the way dedicated typesetting systems used to work several decades ago.
Thanks,
Ariel

Perhaps. Not sure I understand. Could you elaborate?
But let me explain. Here's an example. A regular long block quote will need 3 styles, depending on whether there needs to be a line space before or after the paragraph:
     BlockQuoteBeginning BlockQuoteBeginning BlockQuoteBeginning
BlockQuoteBeginning BlockQuoteBeginning BlockQuoteBeginning
BlockQuoteBeginning BlockQuoteBeginning BlockQuoteBeginning
BlockQuoteBeginning BlockQuoteBeginning BlockQuoteBeginning
     BlockQuoteMiddle BlockQuoteMiddle BlockQuoteMiddle BlockQuoteMiddle
BlockQuoteMiddle BlockQuoteMiddle BlockQuoteMiddleBlockQuoteMiddle
BlockQuoteMiddleBlockQuoteMiddleBlockQuoteMiddleBlockQuoteMiddle
    BlockQuoteEnd BlockQuoteEnd BlockQuoteEnd BlockQuoteEnd
BlockQuoteEnd BlockQuoteEnd BlockQuoteEnd BlockQuoteEnd
BlockQuoteEnd BlockQuoteEnd BlockQuoteEnd BlockQuoteEnd
And then you need a separate style for a standalone block quote, that needs a line space both above and below. So that's 4 common styles.
Then, occassionally, each of these for will sometimes not need indentation. So that's another four styles.
Also, if the book requires block quotes in footnotes (a bad idea, IMHO, but the choice is not up to me), that's another 8 styles for the same reason.
The forced line break that you mention, if I've understood correctly, wouldn't work with justified paragraphs, since it will force the line before the forced break to be fully justified?
Ariel

Similar Messages

  • Optional vertical space marker in CS4?

    Hi,
    Just wondering if anyone knows if there exists, in IDCS4, some sort of way
    of creating vertical space between paragraphs that will not appear if the
    paragraph happens to begin at the top of the page.
    Obviously, until now I've been using paragraph styles. But some kind of
    vertical space marker would be so much simpler. You could have one for a
    half-line height, or a full-line height and just insert them as necessary.
    If not, any workarounds except for paragraph styles?
    Thanks,
    Ariel
    Win XPSP3, IDCS4ME

    Yes. Harbs idea is simpler than mine, because you don't have to fiddle with
    textwrap settings.
    So to summarize:
    1. disable Skip by leading in preferences.
    2. make sure the text frame you're working in has "First Baseline" set to
    exact or leading.
    2. create a line the length of the gap you wish.
    3. cut and paste it at the beginning of the paragraph above which a gap
    should appear.
    4. Set it to an "above line" anchored object (or better, create an object
    style to do this at a keystroke)
    (If at some stage the leading changes, with CS4 you can do a search and
    replace for the length of the line.)
    I think that's pratical enough to be useable.
    Here's a quote from "The Complete Manual of Typography" by James Felici,
    published by Adobe Press:
    "Dedicated typesetting systems typically had a command that let you add a
    vertical space band of whatever width werever you wanted. Such a space band
    was an independent entity, not tied to any paragraph. The software
    recoginized it as a role-playing spacing element, and when that role wasn't
    required-[as at the beginning of a page]-it would ignore the vrtical space
    band. Unfortunately, this facility has yet to find its way into popular
    desktop systems."
    But at least there's a workaround....
    Thanks,
    Ariel

  • Anchored Objects with text wrap, need vertical space

    Hi.  I'm a fairly new InDesign user and have just this past week learned about anchored objects, threading text frames, numbered lists, and some other fun options. So far InDesign has done most everything I need fairly elegantly. However, I have not been able solve one issue.
    In my book I have numerous pages that have this issue; I'll just describe one case. On this page there are 4 graphics running down the right side of the page. These are not anchored graphics. They do have text wrap defined on the left side and bottom. There is text that wraps lovely on the left.
    Each of these four graphics has a specific paragraph it needs to top align with. However, the text it aligns with may not take up as much vertical space as the graphic does. When I anchor each graphic with the paragraph it needs to align with, the four graphics overlap each other.
    At the moment, to make it look right, I have placed each graphic individually and added a blank paragraph above each paragraph of text that should align with a graphic and use the Space Above of each blank paragraph to have it align with the graphic.
    I'm not even sure what to search to try and solve this. I looked briefly into compound paths, but that didn't look like it would help.
    I hope this is clear and thank you for any assistance at all.
    Andrea

    No problem. Click your cursor somewhere in the paragraph that ought to be aligned with the next image down, then run this Javascript.
    It's not entirely accurate, as it uses the font size to do a minimal adjustment where it actually should use the font's cap height -- but you cannot get to that through scripting. This final adjustment is necessary because ID does know the baseline, and your first line ought to dip just below this to have the top of the first line aligned to the top of the image.
    //DESCRIPTION:Align paragraph with image.
    // Jongware, 15-Jul-2010
    if (app.selection.length == 1 && app.selection[0].hasOwnProperty ("baseline") && app.selection[0].paragraphs[0].index > 0)
         // find nearest image on the right
         ypos = app.selection[0].paragraphs[0].lines[0].baseline;
         pg = app.selection[0].parentTextFrames[0];
         while (1)
              if (pg instanceof Character)
                   pg = pg.parentTextFrames[0];
              if (pg instanceof Spread || pg instanceof Page)
                   break;
              if (pg instanceof Document || pg instanceof Application)
                   exit(0);
              pg = pg.parent;
         img = pg.allGraphics;
         dist = 999999;
         nearest = null;
         for (i=0; i<img.length; i++)
              if (img[i].geometricBounds[0] > ypos && Math.abs(img[i].geometricBounds[0] - ypos) < dist)
                   dist = Math.abs(img[i].geometricBounds[0] - ypos);
                   nearest = img[i];
         if (nearest == null)
              alert ("no image found nearby!");
         else
              prevm = app.activeDocument.viewPreferences.verticalMeasurementUnits;
              app.activeDocument.viewPreferences.verticalMeasurementUnits = MeasurementUnits.POINTS;
              top = nearest.geometricBounds[0];
              ypos = app.selection[0].paragraphs[0].lines[0].baseline;
              if (ypos < top)
                   app.selection[0].paragraphs[0].spaceBefore = top-app.selection[0].pointSize-app.selection[0].parentStory.paragraphs.previousItem(app.selection[0].paragraphs[0]).lines[-1].baseline;
              app.activeDocument.viewPreferences.verticalMeasurementUnits = prevm;
    This image shows three paragraphs aligned with their respective images (it won't work on the first paragraph, but that ought not to be necessary anyhoo).

  • Imbedded graphics taking too much vertical space in HTML preview

    Does anyone know why imbedded pictures should require more vertical space than expected on the HTML preview?
    I imported a .jpg into my report layout, and immediately below it I added a line of text. The HTML preview shows me a LOT of unexpected blank space between the picture and the text.
    I then inserted the .jpg into a table in which the "Fit to Content" option is checked. On the RTF layout, it looks great - the margins of the cell snuggle up pretty close to the picture. But when previewed, that extra blank space comes back and appears below the picture - the table row is a lot taller than it needs to be.
    I've experimented with different image heights, and the amount of extra vertical space seems to always be about 40% of the height of the picture. So if the picture is 100 pixels tall, the table row is about 140 pixels, with 40 pixels of height in unwanted blank space. I can even set the row height to a value less than the height of the image. On the RTF, it looks right (chops a portion of the image). On the Preview... there's the blank space again.
    Not only that, I can't get the picture to locate anywhere other than at the top of the table cell. No matter how I format the cell, the graphic insists on staying at the top.
    BTW, the PDF preview behaves correctly. No extra blank space.

    What's the 'tiny_spacer_rule' for which is applied to the paragraph tag between the end of your
    'header' section and the start of the table?
    <li><a href="testimonials/2010/june/2010june_testimonials.html">TESTIMONIALS</a></li>
      </ul>
      <!-- end #header -->
      </div>
      <p class="tiny_spacer_rule">&nbsp;</p>
      <!-- InstanceBeginEditable name="example_nav_bar" -->
      <table width="998" border="0" align="center">
        <tr>
          <td><img src="graphics/page_titles/antiques.png" width="450" height="75" alt="antiques title graphic" /></td>
          <td><img src="graphics/page_titles/crate_examples.png" width="450" height="75" alt="Crate example title graphic" /></td>
        </tr>
      </table>

  • How can I get rid of Australis without using Classic Theme Restorer or how can I save vertical space?

    Hi!
    I have a widescreen notebook so limited space on the vertical axis. So
    1) I want to get rid of the tab bar when I have only one window open.
    2) I want to get rid of the title bar which includes no necessary information.
    3) I want to move the adress bar to the menu bar.
    Before Australis, this was easily done. After I did the update I searched very long for solutions. I found only Classic Theme Restorer. It is good, but it often causes my computer to high power consumption which makes the notebook very hot.
    So ho can I get vertical space (see 1 - 3)?
    Best wishes, Dimi

    Hello Dimi,
    # I am not sure if it can be done without the use of extensions, but if you are okay with installing one, [https://addons.mozilla.org/en-US/firefox/addon/tab-mix-plus Tab Mix Plus] gives you the option to hide the tab bar when you only have 1 tab (in addition to many other options). Under the Tab Mix Plus options after installing, the option to hide it will be under Display > Tab Bar. Another one after a quick search is conveniently titled [https://addons.mozilla.org/en-US/firefox/addon/hide-tab-bar-with-one-tab/ Hide Tab Bar with One Tab].
    # The title bar can be removed by clicking [[Image:New Fx Menu]] followed by Customize. At the bottom of the page that opens should say "Title Bar" (will be beside "Show/hide Toolbars), if you click that the Title bar will disappear and be merged with the Menu Bar.
    # I am not sure if the address bar can be moved anymore, but if you still have your Bookmarks Toolbar, that can be placed beside the menu options to give you more space. Go to the same page as in step 2, then click and drag the bookmarks toolbar onto the same toolbar as the menu bar.
    Hope that helps.

  • Australis does not take up enough vertical space.

    Removing the option to use small icons was a step in the right direction, but there's still too much vertical space. I suggest adding more padding, larger icons, and perhaps more default toolbars to reduce the vertical viewing space to about 1 pixel.

    I assume that this is not really a problem, but rather meant to be ironically to emphasize that the Australis design is taking a lot more screen estate for the user interface then the current release leaving less room for the browsing area.<br />
    The OP seems to suggest to enlarge all toolbar items that much that the full screen minus 1px will be taken up by the toolbars and its icons. :wink:<br />
    Yes, the Australis design is taking up more screen estate as this is to prepare for touch screens and tablets that need larger icons.
    There will probably be themes and extensions that will address this expansion for normal screens and allow for more browsing estate in these cases.

  • Problem with interspersed response -- opening vertical space fail

    mail.app version 5.3 (1283) on MacOS 10.7.5
    I can top- or bottom- post and do so when appropriate, generally in very simple email conversations. 
    BUT, for more complex threads, I commonly want to open some space between each paragraph of each incoming message to insert my response.  (Incoming paragraphs are typicallly separated by a blank line or two.)  Mail.app provides horizontal bar quoting indicators at the left to mark the progress of the thread over many exchanges, though this mechanism often seems not to be very well supported by the email clients of my correspondents. (I often end up increasing the quoting manually to restore a semblance of the correct quoting of a thread.  Oh, well...)
    I've been using mail.app only since I installed 10.7, shortly after it was released.  With varying success, especially when using formatted as opposed to plain text. Exchanges with some people work more or less flawlessly.   The most common difficulty: I have trouble opening up vertical space below an incoming, quoted paragraph in which to type my response to that para. Up until today, I've always been able to find a way, by exeriment of where I put the cursor, using shift-enter instead of enter, etc, etc.
    But for a message I just received, I cannot.  Every attempt I make to open some vertical space results in ... trouble.  If I put the cursor on a blank line between incoming paragraphs and command "decrease quote level" I get 8 inches [!] or so of quoted vertical space, followed by 8 more inches or so of unquoted vertical space, followed by the following paragraph and the rest of the thread, apparently intact.  That's not right!  
    Fortunately, I can undo and resume ... to do what?  I get a similar result if I try placing the cursor that line and hit "enter".  Or "Enter".  Or "shift-enter".
    Yeah, it looks like I've opened 10 inches in which to insert my response to the first paragraph, but first I need to get rid of most of the inserted quoted vertical space -- an impossible task, as far as I can see.  If I put the cursor on the first line of unquoted space and backspace, the 10 quoted inches stay the same and characters delete from the end of the previous quoted parag.
    What's going on?   Are there any methods of recovering some semblance of normal operation so I can answer this incoming message? (OK, I've given up and responded by top-posting.)   I note that I can view the source of the incoming message, but I see no way to view the source of the response, to see what exactly is going on. What is actually being inserted in the formatted text source that creates the mess I observe?
    In this case, viewing the incoming source seems to reveal only one apparent client name: Zimbra.   Is that a client?  Could Zimbra and mail.app have ... issues with each other?
    Are there any mail.app add-ins that might help?   Work-arounds?   (Yeah, probably converting to plain text would solve the problem, but that has other issues.)   Any applicable help or articles?
    Am I missing anything incredibly obvious?
    TIA

    mail.app version 5.3 (1283) on MacOS 10.7.5
    I can top- or bottom- post and do so when appropriate, generally in very simple email conversations. 
    BUT, for more complex threads, I commonly want to open some space between each paragraph of each incoming message to insert my response.  (Incoming paragraphs are typicallly separated by a blank line or two.)  Mail.app provides horizontal bar quoting indicators at the left to mark the progress of the thread over many exchanges, though this mechanism often seems not to be very well supported by the email clients of my correspondents. (I often end up increasing the quoting manually to restore a semblance of the correct quoting of a thread.  Oh, well...)
    I've been using mail.app only since I installed 10.7, shortly after it was released.  With varying success, especially when using formatted as opposed to plain text. Exchanges with some people work more or less flawlessly.   The most common difficulty: I have trouble opening up vertical space below an incoming, quoted paragraph in which to type my response to that para. Up until today, I've always been able to find a way, by exeriment of where I put the cursor, using shift-enter instead of enter, etc, etc.
    But for a message I just received, I cannot.  Every attempt I make to open some vertical space results in ... trouble.  If I put the cursor on a blank line between incoming paragraphs and command "decrease quote level" I get 8 inches [!] or so of quoted vertical space, followed by 8 more inches or so of unquoted vertical space, followed by the following paragraph and the rest of the thread, apparently intact.  That's not right!  
    Fortunately, I can undo and resume ... to do what?  I get a similar result if I try placing the cursor that line and hit "enter".  Or "Enter".  Or "shift-enter".
    Yeah, it looks like I've opened 10 inches in which to insert my response to the first paragraph, but first I need to get rid of most of the inserted quoted vertical space -- an impossible task, as far as I can see.  If I put the cursor on the first line of unquoted space and backspace, the 10 quoted inches stay the same and characters delete from the end of the previous quoted parag.
    What's going on?   Are there any methods of recovering some semblance of normal operation so I can answer this incoming message? (OK, I've given up and responded by top-posting.)   I note that I can view the source of the incoming message, but I see no way to view the source of the response, to see what exactly is going on. What is actually being inserted in the formatted text source that creates the mess I observe?
    In this case, viewing the incoming source seems to reveal only one apparent client name: Zimbra.   Is that a client?  Could Zimbra and mail.app have ... issues with each other?
    Are there any mail.app add-ins that might help?   Work-arounds?   (Yeah, probably converting to plain text would solve the problem, but that has other issues.)   Any applicable help or articles?
    Am I missing anything incredibly obvious?
    TIA

  • Find feature looses focus while typing a phrase, after typing the first space character.

    The find feature now looses focus while I am entering a phrase. After entering the first word of a phrase and the space character, the find box will reposition itself to a possible result on the web page on EVERY CHARACTER and I have to reposition the cursor BACK to the find box to enter every subsequent character in the phrase I am searching for. Is there a way I can turn this useless (for me) *feature* off?
    I used to be able to key the phrase I was looking for, and the box would turn red as I typed if the phrase did not exist. I would really appreciate being able to do this again. It now seems that Firefox 'jumps the gun' to find the phrase before I have completed typing it in.
    Thanks.

    *If you have many extensions then first enable half of the extensions to test which half has the problem.
    *Continue to divide the bad half that still has the issue until you find which one is causing it.

  • Remove space character

    I have a string. I want to replace the first occured space character after a valid character in comma character and the following space character I want to remove them.
    ex: "a b c d e" => "a,b,c,d,e"
    the string method replace(char, char) cannot do replace(' ', '')
    can somebody help me?
    thank you.

    import java.util.regex.*;
    class B  {
       public static void main(String[] args) {
         String INPUT = "a b c         d   e";
         String REGEX = "\\b\\s+\\b";
        Pattern p = Pattern.compile(REGEX);
        Matcher m = p.matcher(INPUT);
        StringBuffer sb = new StringBuffer();
        while(m.find()){
                 String REPLACE = ",";
                 m.appendReplacement(sb,REPLACE);
            m.appendTail(sb);
            System.out.println(sb.toString());
    }

  • White space character issue in PSA

    Hi All,
    I am loading master data full load from R3 to BW.The load is failing by giving the Error Message: "Too many error records - update terminated" and "Error 4 in the update"
    In details tab it is showing red entries as "Record 4857 :Value 'ATF-34143-TR1G         ' for characteristic 0VEND_MAT contains invalid character".
    This is due to extra white space character added to the value of the field.
    I can edit the record from PSA and reconstruct it.But as it is a full load, the error is repeating daily.
    Any body help me in resolving this issue permanently.
    (I think RSKC will not accept white space character )
    Thanks
    Rama

    Rama,
    Actually the system treats space as allowed character:
    Execute SE37, type in RSKC_ALLOWED_CHAR_GET.
    Double click in the statement
    E_DEFAULT_CHAR = G_C_ALLOWED_CHAR
    on the right part.
    You'll be brought to LRSKCTOP include.
    There you can see the default allowed chars:
    ' !"%&''()*+,-./:;<=>?_0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'
    As you can see, there is a space as a first character.
    So, in order to help you try to answer questions I asked in my first post.
    Best regards,
    Eugene

  • How to find out how many space character in setence (string var) ?

    Dear all Master,
    I need Your help please.
    Topic:
    Script Editor.
    My System:
    -CUCM 7.0
    -UCCX 7.0 premium
    -Nuance recognizer 9.0
    Question:
    ABC = string var.
    ABC = "this is sample"
    2 space character in ABC string var.
    How to find out how many space character in ABC var ?
    Regards,
    Susanto

    Hi
    Create a int variable called whatever you want, then insert a SET step.
    Set the variable to the new int you created, and then paste this into the 'value' field:
    String[] myarray = teststring.split(" ");
    return myarray.length -1 ;
    Basically it splits the string into chunks each time it hits the " " character.
    This results in an array of the resulting chunks (i.e. words), which is one more than the number of spaces. -1 from that, and you have your int variable set to the number of spaces.
    Regards
    Aaron
    Please rate helpful posts...

  • How can I find out those files whose name has space character?

    Hi
    How can I find out the files whose name has space character in a whole file system?
    Thanks
    Jerry

    thank you all
    I can use this command to find out like
    $find ./ -type f -exec ls -1 {} \; 2>/dev/null | grep " "
    ./space in name
    while, I modify above a little to find out a spcific file systems like below:
    $find /bbj* -type f -exec ls -1 {} \; 2>/dev/null | grep " "
    /bbj14/appl/oracle/prdrep/S_STATIC_TAB_05.dbf
    --while, I didn't see any space character in file name "S_STATIC_TAB_05.dbf"
    what is wrong?
    thanks

  • When Firefox is open the zoom function (option/command/space bar) does not work in Adobe programs (InDesign, Photoshop, Illustrator)

    Mac OS X 10.6.7
    CS 5.5
    When Firefox is open the zoom function (option/command/space bar) does not work in Adobe programs (InDesign, Photoshop, Illustrator). This happens only when Firefox is open and when I close it the zoom functions work fine again without having to restart the applications.
    This is intermittent but happens quite frequently each day if Firefox is active.

    MDN doesn't mention -chrome being used for ordinary web pages: https://developer.mozilla.org/docs/Mozilla/Command_Line_Options#Chrome
    When I use
    firefox.exe -chrome about:permissions
    I get a usable window, but zoom doesn't work as you noted.
    How about using an intermediate page and window.open() for the target page? You can (mostly) restrict the chrome of windows opened that way, but it will leave behind the intermediate window...
    https://developer.mozilla.org/docs/Web/API/Window.open

  • Extra vertical space in FF2

    http://www.emergencypettemecula.com/temp.html
    I am using an image at the bottom of this page to simulate a
    drop shadow. In
    IE6 this displays perfectly. In FF2 there is a small vertical
    space between
    the #footer div and the image. I can't see where the space is
    coming from. I
    have set margin:0 for img in my CSS.
    Any suggestions?
    Thanks
    Walt

    Michael Fesser wrote:
    > .oO(Osgood)
    >
    >> Michael Fesser wrote:
    >>> .oO(Osgood)
    >>>
    >>>> Not really sure why you're using a 'strict'
    doc type.
    >>> Better and cleaner code.
    >> It can be..... depends how well you know html.
    There's no point in using
    >> a strict doctype if you don't know it that well and
    if you do know it
    >> well theres still really no point...
    >
    > I see it this way: If I want to write clean and
    efficient code, I don't
    > want to use old and deprecated stuff. So why use
    transitional HTML?
    > Doing it in "Strict" has all I need.
    If you CAN write clean an efficient code theres no difference
    in how a
    page performs whatever the doctype as long as it complies. If
    youre not
    well versed in writing clean and efficient code its probably
    not a good
    idea to use a strict doctype.
    In the end you either know how to write good html/xhtml OR
    you don't.
    >> other than to 'pretend' you're in a
    >> different league to others.
    >
    > Sure, I am. I always try to write as valid and
    meaningful code as
    > possible. For me it's not only about "working" in the
    browsers - the
    > code itself has to be of some kind of quality. Doing it
    the "Strict" way
    > helps a lot with this.
    Not really. I can write validate and compliant code that
    works x browser
    without using a 'strict' doc type.
    >> Use what you want but I wouldn't be telling those
    who are new to html to
    >> be using it.
    >
    > Especially those who are new to HTML should learn it
    correctly, right
    > from the beginning. They should learn how to write
    meaningful and
    > properly structured code without relying on deprecated
    1980's stuff.
    Transitional is far more applicable for beginners in my
    opinion. I guess
    you're the kind of person that would set out for the North
    Pole before
    being fully equipped with the knowledge you need.
    >> As you say it requires a little more thought that
    isn't
    >> strictly necessary. A well composed 'transitional'
    page will display and
    >> perform equally as well as a 'strict' page with less
    issues involved.
    >
    > Browsers will (try to) display even the worst crap.
    Enough said. What appears in the browser is what really
    counts.

  • Sync Outlook 2003 / Nokia 6120 - space character i...

    Hi guys - I store my contact mobile phone #s in international format (ie +61 4xx xxxxxx) so they are accessable from overseas when I travel without having to edit.  Outlook 2003 seems to put a space character by default after the country code, so these appear as +61 4xxxxxxxx in Outlook.  When I sync my Nokia 6120 to Outlook this space then gets transferred across to the phone as the # for the contact.  When I receive anything from the contact (phone call, SMS etc), the number I have saved for them does not exactly match the number that comes through (either because of the extra space, or because it will come through in Australian format ie 04xx xxxxxx) and the contact does not get recognised by the phone, and simply appears as the #, not the contact name.  If I send an SMS first & this is replied to, it comes back correctly identified, but new messages etc from contacts are not identified.
    Is there any way to remove the space that Outlook seems to put after the country code by default?  And is there any way for the phone to recognise +61 4xxxxxxxx and +614xxxxxxxx and 04xxxxxxxx all as the same number for the same contact?

    maybe it can be accomplished using a macro or modifying this one
    http://www.tandasoft.com/software/outlook-nokia-pc-sync-fix/

Maybe you are looking for