Some Hebrew HTML displayed incorrectly (left to right) in outlook 2013

office 2013 with Hebrew language pack on windows 7 professional English version. Some messages in outlook display Hebrew HTML incorrectly (Left to Right). Not all of the message displayed incorrectly but just some parts of it. It offers me to view the
message in a browser and when I do, the browser displays the message correctly. I've extracted from the source code an example of code that is displayed incorrectly:
div
style="padding:2px 0;">
<
a
href="#job_5541828"
style="font-family:Arial;font-size:11pt;color:#006CC6;">מפתח/תnet.
עםניסיוןב++C
לצדהserver</a></div>
is there a way to fix that?
(by the way, here it is displayed correctly, right-to-left)
Gadi

Hi, If you are using Windows Vista or Windows 7, before you can use any of the right-to-left features in Microsoft Office, or even
correctly display right-to-left scripts, you must
Add an input language and
enable the keyboard layout for the right-to-left language.
Please also check if you have set Outlook to use UTF-8:
1. Click the orange "File" tab in the top left corner of the Outlook 2010 window and click "Options" on the pull-down menu. A new window titled "Outlook Options" appears.
2. Click the "Advanced" heading on the left side of the window and then scroll to the "International Options" heading near the bottom.
3. Place a check in the box labeled "Automatically select encoding for outgoing messages" and click "Unicode (UTF-8)" on the drop-down menu.
4. Place a check in the box labeled "Automatically select encoding for outgoing vCards" and click "Unicode (UTF-8)" on the drop-down menu.
5. Place a check in the box labeled "Allow UTF-8 support for the mailto: protocol."
6. Click "OK."
Please read Right-to-left language features to learn more:
http://office.microsoft.com/en-in/outlook-help/right-to-left-language-features-HA010354392.aspx#_Toc254700145
Regards.
Melon Chen
TechNet Community Support

Similar Messages

  • Display items left to right & limit items per column

    Hopefully these actually ARE basic questions with simple answers.
    1. By default requested values of repeating nodes stay in a vertical table setting. How do you to display a repeating spry {values} in a horzonital format?
         EX: Left to right <p /> Left to right <p /> etc. (see below)
    2. Once this is accomplished, if the value is text, will it 'word wrap' by default and treat the spry {value} as regular text? If so, how do you treat that text as a "whole" so the spaces aren't recognized?
    3. How do you LIMIT the number of repeated {values} a column (or div) contains and populate a new column if the {value} is more than your set limit?
         EX: Populate first 4 items  | create column | populate next 4 items | create column | etc.
    Still learning but hopefully simple answers will apply here. Example code is much appreciated.
    -LH-

    1, you have a couple of options..
    - use a table to loop horizontal
    example:
    <div spry:region="ds1">
         <table>
              <tr spry:repeatchildren="ds1">
                   <td>{item}</td>
              </tr>
         </table>
    </div>
    Or use floats to float all items left Combined..
    example:
    <div spry:region="ds1">
         <ul spry:repeatchildren="ds1">
              <li>{item}</li>
         </ul>
    </div>
    CSS:
    ul li { float: left; }
    2, i don't really understand what you mean with that.
    3. use spry:if statements for that..
    <div spry:region="ds1">
         <ul spry:repeatchildren="ds1">
              <li spry:if="{ds_RowID} < 5 ">{item}</li>
         </ul>
    <ul spry:repeatchildren="ds1">
              <li spry:if="{ds_RowID} > 5 && {ds_RowID} < 10  ">{item}</li>
         </ul>
    </div>

  • Arabic is displayed from left to right in disjointed letters in the web browser, not the case in pdfs

    I have this problem in DPT-S1. Is there a way to display Arabic correctly?
    Thanks.

    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings, disables most add-ons (extensions and themes).
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu:
    *In Firefox 29.0 and above, click the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and select ''Restart with Add-ons Disabled''.
    *In previous Firefox versions, click on the Firefox button at the top left of the Firefox window and click on ''Help'' (or click on ''Help'' in the Menu bar, if you don't have a Firefox button) then click on ''Restart with Add-ons Disabled''.
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".<br>
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.

  • Displaying assigned retention tag/policy in Outlook 2013 Inbox default vies

    Hi,
    I don't know if this is the right place to post this questions. If it is not please forgive me and direct me to the right forum. I know that I can check if the email message has a retention tag/policy applied if I open it in Inspector window. It is
    listed under subject.
    My problem is that I don't know the way how to display the retention tag/policy in the Inbox default view next to the the properties like: subject, from, received etc. So the users don't need to open the message to check if they applied the retention tag.
    This way they can look at every message in the inbox and see which message has the retention tag missing.  I assume I will have to employ some coding and I am OK with that.
    Can I write a outlook add-in that will query for retention tag for each message and display it in the column along with other mapi properties? I need a advice example how to programmatically extract the PR_POLICY_TAG and convert it from binary to string.
    Than I can change the default view xml to include this property I assume.
    Any help is greatly appreciated.
    Thanks,
    Goran

    If an item has been tagged for retention then they will be available you can see this using a Mapi editor like MFCmapi or OutlookSpy. The PolicyTag would only give you the GUID of the policy and you would have to pull the Name from the UserConfig item in
    the mailbox which can be little more complicated.  With CFG file's there is
    http://www.slipstick.com/exchange/adding-extended-mapi-fields-to-outlook/#trouble that's about all that I know off. There is also an Outlook development group you can ask this in
    http://social.msdn.microsoft.com/Forums/office/en-US/home?forum=outlookdev
    Cheers
    Glen

  • Filter -Different texts in left and right section in user help ( F4 )

    Hi Friends,
    When I try to filter values in Analyzer, different texts are shown in user help for selectable (left window section) and selected (right window section).
    In leftsection texts are shown as defined eg, text  short  , but sfter selecting the value, on the right section text long is displayed.
    Example:
    If a characteristic Z_IO1 with key 1234,
    text short T1
    mid.text     T123
    text long    T123456
    Now I try to filter:
    selectable value is shown as
    1234 T1 (setting key and text short)
    and after moving it to the right side with blue arrow it changes to
    1234 T123456 (same settings) if text long doesn't exist text mid. is shown.
    Did smomeone face this Issue or has any idea? Then let me know, please.
    And something different is strange : When I try to restrict in BEx Query Designer, system works as expected,
    display in left and right section of filter window don't differ.
    Thanks in advance for your input.
    Best Regards
    Joe

    Hi Venkat
    Thanks for reply. My problem isn't filter value selection controlled by rea mode, it's just the display of the filter value texts (descriptions) in the F$ window for selected items. For me it seems, that it is not to change, default is set. I.e. the longest text available is displayed (according to property in RSD1) without any dependence on required texts (short, medium, ling), as mentioned in my example.
    Regards
    Joe

  • How to split left and right sound signal from SI READ Stereo?

    How to split left and right sound signal from SI READ Stereo?
    I want to display the left and right sound signal in two graph separately,what shall I do?
    That is how to split 2D arry to two 1D arry?

    Hello,
    Here's another trick...although the "Index Array" suggestion will work, you should investigate using the "Delete from Array" function...you can tell it to delete one of the columns (or rows), leaving one column (or row)...the function will output both the resulting array AND the deleted array, which happens to be the other row/column...this method might not be as intuitive, but it only makes one copy of data in memory, while the Index Array method makes two copies.
    I hope this suggestion helps. I only found out about this trick with "Delete from Array" the other day.
    Have a great weekend!
    Sincerely,
    Darren Nattinger
    Applications Engineer
    National Instruments
    Darren Nattinger, CLA
    LabVIEW Artisan and Nugget Penman

  • Hi, While writing an email online using Firefox 3.6.3, I was using one of the "CTRL+left or right arrow" to move the cursor along the text. I must have pressed some other key because the display has become huge - and I can't scroll vertically or horizont

    Hi, While writing an email online using Firefox 3.6.3, I was using one of the "CTRL+left or right arrow" to move the cursor along the text. I must have pressed some other key because the display has become huge - and I can't scroll vertically or horizontally, which makes using the Mail pages of Hotmail impossible. I have since logged in using MSFT Explorer and it works fine. This problem occurs only on the Mail page of Hotmail Live not on the home page or others.
    Could you please let me know if this is a problem with Firefox, or if you have any advice on how to reset the appearance of Hotmail in Firefox?
    == This happened ==
    Just once or twice
    == While I was compiling an email in Hotmail Live

    Wow, lightning fast and absolutely right!
    Thank you so much!

  • Firefox displays hebrew reversed (left to right) no matter what encoding i use- help?

    every page that is in hebrew is displayed backwards (the letters are reversed, and is written left to right)- i tried changing my text encoding options but it did not help.
    i searched around the internet for help but couldnt find anything,
    i would appreciate an answer, as i do love using hte internet with firefox, and i find myself using other browsers for hebrew pages, which is a real bummer. thanks!

    So something like this from the Google.co.il page appears wrongly?
    תוכל לבחור את שפת החיפוש שלך<br />
    Are you using a custom theme or the default theme?
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    You can also check the bidi prefs on the <b>about:config</b> page to see if any have changed and show as bold.
    *http://kb.mozillazine.org/about:config

  • I hit some key or tab by accident and now my bookmarks are no longer in a list but viewable across a set of pages that I can scan left to right.  I would like to go back to the other display which is much easier for me.  Thanks for the help.

    I hit some key or tab by accident and now my bookmarks are no longer in a list but in a page format that can be scanned left to right.  I'd like to return to the listing format.  How do I do this?  Thanks!

    I'm having the same problem.  Did you find a solution?

  • Displaying (Chinese) Text Top to Bottom, Left to Right

    I would like to display text vertically in a JTextArea starting from the top-left, going down in columns and continuing from left-to-right in Chinese like this:
    G D A
    H E B
    I F C
    I looked at the API description of the ComponentOrientation class, which at first seemed to indicate that this could be done but there isn't static constant "ComponentOrientation TOP_TO_BOTTOM" that can be used.
    http://java.sun.com/j2se/1.5.0/docs/api/java/awt/ComponentOrientation.html
    I tried setting the locale of the JTextArea to TRADITIONAL_CHINESE, CHINESE, CHINA, JAPANESE, but with no luck. The best I could get is text going from left to right in rows rather than columns.
    Is it possible to (easily) do this or do I need to do something fancy.
    Thanks in advance,
    Puzzled.

    The core i18n libraries and Swing do not support vertical writing at this time. However, this is not an unreasonable request for some scripts.
    Regards,
    John O'Conner

  • My screen displays a shadow from left to right, being darker on the left and brighter on the right. Any advice about how to change this would be appreciated.

    My screen from the moment it starts any program appears to be shaded from left to right. The left hand side of the display appears to be darker than the right half of the screen. Can someone please advise what I can do to alter this. Have I pressed something I shouldn,t have? Or is there a problem with my display?
    Any help would be appreciated.
    Many thanks.

    Does not sound too healthy! You should take it to the Genius bar in the Apple store. May need the hardware looked at...
    It's most probably a backlight issue. Take some piccys of it while it isnt working now!!

  • I have a video I 'm editing and some of the shot taken (on the left and right) I would like to remove. Is this possible to do ? If so, how?

    I have a video I 'm editing and some of the shot taken (on the left and right) I would like to remove. Is this possible to do ? If so, how?

    If you mean there are parts of the picture at the sides you want to remove, you have at least 2 choices.
    You can mask the edges of the frame or enlarge it so that the left and right sides are outside the picture area.
    The latter suggestion will reduce the quality of the video and you will also lose an equal amount from the topand bottom, though you could slide the image up or down.

  • Some character display incorrect after unicode conversion

    Dear Experts,
    Currently we upgrade our SAP system from 4.6B NU to ECC6.0 UN.
    in 4.6B system we had implemented Simple Chinese and French language package to the system. after upgrade to ECC6.0 no-unicode system. we perform a MDMP unicode conversion.currently system running with ECC6.0 unicode interface with language 1EFD. SUMG releated tasks had been finished. Chinese and French language checked OK in ECC6 UN system.
    Our issue is. in the past time. some Spanish local end user typing some spanish character in some master date field when they login in 4.6B GUI choice english as login language.these kind of spanish characters could not display correct in current unicode environment.
    could you please given us some suggestion for how to fix this issue.
    I also sent this message in the Netweaver administrator forums with below links.
    Spanish display incorrect after unicode conversion

    Hello,
    I doubt that the data shown by you in the link was caused by Spanish users logged on in EN.
    I think this was rather caused by utf-8 data uploaded into the Non-Unicode system.
    In this case, you need to repair the according texts manually, I do not know any automatic repair.
    Best regards,
    Nils Buerckel
    SAP AG

  • Display resolution is different left and right sides

    Hi, my HP G42 laptop now has a different display resolution on the left and right sides. The left half seems to have less resolution than the right side, the right side looks like it's in HD, the left side looks washed out. I'm not sure if it is a hardware issue or a setting/software issue. The first time it appeared was after a windows 7 update was completed and installed, I'm not sure if that was just a coincidence. Any suggestions would be greatly appreciated. It works but is very annoying to look at.
    Thank you,
    Ray

    Hi Ray_M,
    Welcome to the HP Forums! I see that you are having a problem with two different resolutions on each half of your screen. The easiest way to determine where the problem lies is to connect it to an external monitor. If the image is normal then we know it is an issue with the display screen but if the issue occurs on the external monitor then we know it is a problem with the drivers or the video card itself.
    What is the product number for your g42? There are a number of different models in that series.
    Please click “Accept as Solution ” if you feel my post solved your issue.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Thank you,
    BHK6
    I work on behalf of HP

  • Remove left and right margin when display portlets

    What is the best way to remove the left and right margin when display portlets?
    I found a file called \portalpages\dotnet\prod\src\com\plumtree\portalpages\browsing\myportal\/
    MyPortalContentView.cs
    But I do not see a place for the left and right margins. What is the correct place to modify these margins? (How about the top and bottom margins too?)
    See the green highlight?

    That's it yeah, seems to curve upwards at the sides. Dunno whether leaving a heavy book on it might sway it back into position?!
    I had the display upgraded when I bought it so presumed it could have been done whilst 'in operation'. Apart from that there's nothing wrong with it really, doubt it's something they would take it back on anyway.

Maybe you are looking for