Specials characters in navigation menu

I have a site host at MobileMe made with iWeb 08. In my navigation menu I have a word written in my language (Portuguese) which has a non english letter " ç " . It has no problem at all in directing and opening the needed page but I am moving this same site to another Host (Host Excellence) and there I had to take that letter out if I want it working. The same letter used in Text Boxes has no problems. It shows perfectly. Another non-english signs in letters " í " (we called it accent) used in a HTML Snipet, shows different in Firefox.
Does anybody has a clue to solve it ?
Thanks.

"MobileMe has not problem with non-ascii filenames, but some servers have problems with them."
Thanks for that information. I didn't know that.
But unfortunatly Cyberduck is the one I use. I have just found the solution for those letters used in the HTML Snipets. There are several sites over the internet informing HTML codes that "writes" these special characters, like:
http://www.utexas.edu/learn/html/spchar.html
http://www.degraeve.com/reference/specialcharacters.php
http://www.webmonkey.com/reference/Special_Characters
In the snipet I had just to use the codes instead of the "real" letter.
But at the navigation menu, as I don't have access to "codes" I don't know how to solve.
I was thinking in not use the "pre formated" of iWeb and instead of it, write my own.

Similar Messages

  • I have a MacBook purchased in 2009 with Snow Leopard. I tried to access "special characters" from the Finder menu and an intermittent blank pop ups and will not stop. It also happens when I run Word or Pages.

    The blank pop up began as I tried to access "special characters" from the finder menu. I restarted, turned off and restarted and it did not work. It interferes with any application because I cannot work fast. Every new step takes a few seconds longer such as saving, finding text, check spelling and many more. I am desperate to solve this. Thanks in advance for any help given.
    Consuelo Corretjer

    Use the trackpad to scroll, thats what it was designed for. The scroll bars automatically disappear when not being used and will appear if you scroll up or down using the trackpad.
    This is a user-to-user forum and most people will post on here if they have problems. You very rarely get people posting to say there update went smooth. The fact is the vast majority of Mountain Lion users will not be experiencing any major problems with the OS, or maybe with apps which are not compatible, but thats hardly Apple's fault if developers don't update their apps.

  • Can't open "special characters" in any Edit menu; have a constantly flashing empty window labelled 'characters' that i can't stop. window flashes then disappears every time i click on anything.  any suggestions? tru thanx !

    i can't open "special characters" in any Edit pull down menu.  i have a constantly flashing empty window labelled 'characters' that i haven't been able to stop.
    it appears every time i click on anything.  any suggestions?  tru thanx

    I, too, have found Bridge very unstable. I find this to be extremely disappointing, seeing as it's literally the most expensive piece of software I've ever purchased for personal use. I've seen these two symptoms:
    1. When running in full screen mode, Bridge crashes periodically. This happened on Vista, so I blamed Vista (of course), but even after regressing to XP SP2, I see the same symptoms.
    2. Although I didn't see this on Vista, running on XP I see the problem described earlier in this thread, where clicking on a thumbnail displays the wrong image preview. When this happens the image displayed is one from a different folder! I solve the problem by clearing the cache, and it's OK for a while, but the problem keeps returning.
    3. Even when exiting cleanly from Bridge (using File->Exit), Bridge often forgets where I was working in my previous session. I need to re-navigate from the very top level directory down through the hierarchy to my photo directory.
    Again, it's very disappointing to invest so much in a single software package only to see such basic operations malfunction.

  • Edit menu and special characters

    With Maverick the iWorks apps were upgraded. I noticed that in iNumbers going to the edit menu and pulling up special characters draws a blank.
    In iPages and iText all works as expected (I have not tried Keynote), the favorite characters window appears at the cursor position.
    A general work around is to use the 'Show Character Viewer' from the top menu bar.
    I wonder, is that a feature of iNumbers'09 version 2.3 (554), or is there a hanging cache file, which should be deleted.
    Thanks
    Gerfried

    Thanks, I tried more and here is what I found.
    opening a Numbers file, selecting a field without seeing an input cursor and selecting special characters from the edit menu or keyboard shortcut, nothing happens. The special character window does not show, but the system thinks the window is there (the keyboard viewer is set to 'Hide Character Viewer'). In this situation, even with an input field having a cursor the popup window of the favorite characters will not show when requested.
    After clicking in the keyboard viewer 'Hide Character Viewer', it works fine: at the input cursor the popup window
    comes up.
    At two different Macs this behavior is reproducible.
    The special characters pane is not showing up if in a selected field the cursor is not set! That confused me.
    Only once and I could not reproduce it, the whole special character pane came up when clicking the edit -> menu -> special Characters.
    Gerfried

  • Dealing with special characters in  PHP part deux

    Something else is confusing me about special characters.  I am doing some troubleshooting/maintenaince on my files. On one files I have my navigation bar on a separte file and use the include function to use it. 
    For the other file, I took the include out and just copy and pasted what was in the inculde file directly on to the file. 
    The words that contain special characters in the include appear funny in the browser. However the menu that is not included (but copied from the include) appears normal.
    Any thoughts?
    One is copied and pasted from the other, yet the look different

    Sorry, my head's been swimming today:
    Here is the include file (minus much of the list)
    The Beers
    Recent Additions
    Recommended
    Hybrid        
    06 Light Hybrid            
    06a Cream Style
    06b Blonde Ale
    06c Kölsch
    06d American Wheat/Rye
    07 Amber Hybrid            
    07a Northern German Altbier
    07b California Common
    07c Düsseldorf Altbier
    And the above include is put in here:
    This is all the code north of the content.
    Also, all I did to copy and paste this was hit ctrl A and crtl C on the sidebar include page, and ctrl V on the file below.
    <?php require_once('Includes/connection.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    ?>
    <?php require_once('Includes/mysql_prep.php'); ?>
    <?php
    $colname_DetailRS1 = "-1";
    if (isset($_GET['listID'])) {
      $colname_DetailRS1 = $_GET['listID'];
    mysql_select_db($database_beer_diary, $beer_diary);
    $query_list_beer = sprintf("SELECT * FROM beer ORDER BY date_tasted_01 DESC LIMIT 15", GetSQLValueString($colname_DetailRS1, "text"));
    $list_beer = mysql_query($query_list_beer, $beer_diary) or die(mysql_error());
    $row_list_beer = mysql_fetch_assoc($list_beer);
    $total_rows = mysql_num_rows($list_beer);
    ?>
    <html>
    <head>
    <title>Recent Additions</title>
    <link href="stylesheets/style.css" rel="stylesheet" type="text/css" />
    <link href="stylesheets/table_and_forms.css" rel="stylesheet" type="text/css" />
    <link rel="shortcut icon" href="images/beer.jpg">
    </head>
    <body>   
    <div id="container">
    <div id="header">
    <?php include('Includes/header.php');?>
    </div>
    <div id="sidebar">   
    <!----------------SPRY NAVIGATION MENU CODE FOR FORMS-------------------------------------------------------------->
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css">
    <ul id="Beer_Navi" class="MenuBarVertical">
    <h1>The Beers</h1>
    <li><a href="recent_list.php">Recent Additions</a></li>
          <li><a href="recommend_list.php">Recommended</a></li>
          <li><a class="MenuBarItemSubmenu" href="#">Beer by Country</a>
            <ul>
              <li><a href="country_list.php?listID=USA">America</a></li>
              <li><a href="country_list.php?listID=BEL">Belgium</a></li>
              <li><a href="country_list.php?listID=DEU">Germany</a></li>
              <li><a href="country_list.php?listID=GBR">Great Britain</a></li>
              <li><a href="country_list.php?listID=JPN">Japan</a></li>
              <li><a href="oth_list">Other Countries</a></li>
            </ul>
      </li>
          <li><a href="#" class="MenuBarItemSubmenu">Lager</a>
            <ul>
              <li><a href="style_list.php?listID=01">01 Light Lager</a>
                <ul>
                  <li><a href="substyle_list.php?listID=01a">01a Lite American Lager</a></li>
                  <li><a href="substyle_list.php?listID=01b">01b Standard American Lager</a></li>
                  <li><a href="substyle_list.php?listID=01c">01c Premium American Lager</a></li>
                  <li><a href="substyle_list.php?listID=01d">01d Munich Helles</a></li>
                  <li><a href="substyle_list.php?listID=01e">01e Dortmunder Export</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=02">02 Pilsner</a>
                <ul>
                  <li><a href="substyle_list.php?listID=02a">02a German Pilsner (Pils)</a></li>
                  <li><a href="substyle_list.php?listID=02b">02b Bohemian Pilsner</a></li>
                  <li><a href="substyle_list.php?listID=02c">02c Classic American Pilsner</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=03">03 European Amber Larger</a>
                <ul>
                  <li><a href="substyle_list.php?listID=03a">03a Vienna Lager</a></li>
                  <li><a href="substyle_list.php?listID=03b">03b Oktoberfest/Märzen</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=04">04 Dark Lager</a>
                <ul>
                  <li><a href="substyle_list.php?listID=04a">04a Dark American Lager</a></li>
                  <li><a href="substyle_list.php?listID=04b">04b Munich Dunkel</a></li>
                  <li><a href="substyle_list.php?listID=04c">04c Schwarzbier</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=05">05 Bock</a>
                <ul>
                  <li><a href="substyle_list.php?listID=05a">05a Maibock/Helles Bock</a></li>
                  <li><a href="substyle_list.php?listID=05b">05b Traditional Bock</a></li>
                  <li><a href="substyle_list.php?listID=05c">05c Doppelbock</a></li>
                  <li><a href="substyle_list.php?listID=05d">05d Eisbock</a></li>
                </ul>
              </li>
            </ul>
          </li>
          <li><a href="#" class="MenuBarItemSubmenu">Hybrid</a>
            <ul>
              <li><a href="style_list.php?listID=06">06 Light Hybrid</a>
                <ul>
                  <li><a href="substyle_list.php?listID=06a">06a Cream Style</a></li>
                  <li><a href="substyle_list.php?listID=06b">06b Blonde Ale</a></li>
                  <li><a href="substyle_list.php?listID=06c">06c Kölsch</a></li>
                  <li><a href="substyle_list.php?listID=06d">06d American Wheat/Rye</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=07">07 Amber Hybrid</a>
                <ul>
                  <li><a href="substyle_list.php?listID=07a">07a Northern German Altbier</a></li>
                  <li><a href="substyle_list.php?listID=07b">07b California Common</a></li>
                  <li><a href="substyle_list.php?listID=07c">07c Düsseldorf Altbier</a></li>
                </ul>
              </li>
            </ul>
          </li>
          <li><a href="#" class="MenuBarItemSubmenu">Ales</a>
            <ul>
              <li><a href="style_list.php?listID=08">08 English Pale Ale</a>
                <ul>
                  <li><a href="substyle_list.php?listID=08a">08a Standard/Ordinary Bitter</a></li>
                  <li><a href="substyle_list.php?listID=08b">08b Special/Best/Premium</a></li>
                  <li><a href="substyle_list.php?listID=08c">08c Extra Special/Strong</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=09">09 Scottish & Irish Ale</a>
                <ul>
                  <li><a href="substyle_list.php?listID=09a">09a Scottish Light 60/-</a></li>
                  <li><a href="substyle_list.php?listID=09b">09b Scottish Heavy 70/-</a></li>
                  <li><a href="substyle_list.php?listID=09c">09c Scottish Export 80/-</a></li>
                  <li><a href="substyle_list.php?listID=09d">09d Irish Red Ale</a></li>
                  <li><a href="substyle_list.php?listID=09e">09e Strong Scotch Ale</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=10">10 American Ale</a>
                <ul>
                  <li><a href="substyle_list.php?listID=10a">10a American Pale Ale</a></li>
                  <li><a href="substyle_list.php?listID=10b">10b American Amber Ale</a></li>
                  <li><a href="substyle_list.php?listID=10c">10c American Brown Ale</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=11">11 English Brown Ale</a>
                <ul>
                  <li><a href="substyle_list.php?listID=11a">11a Mild</a></li>
                  <li><a href="substyle_list.php?listID=11b">11b Southern English Brown</a></li>
                  <li><a href="substyle_list.php?listID=11c">11c Northern English Brown</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=12">12 Porter</a>
                <ul>
                  <li><a href="substyle_list.php?listID=12a">12a Brown Porter</a></li>
                  <li><a href="substyle_list.php?listID=12b">12b Robust Porter</a></li>
                  <li><a href="substyle_list.php?listID=12c">12c Baltic Porter</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=13">13 Stout</a>
                <ul>
                  <li><a href="substyle_list.php?listID=13a">13a Dry Stout</a></li>
                  <li><a href="substyle_list.php?listID=13b">13b Sweet Stout</a></li>
                  <li><a href="substyle_list.php?listID=13c">13c Oatmeal Stout</a></li>
                  <li><a href="substyle_list.php?listID=13d">13d Foreign Extra Stout</a></li>
                  <li><a href="substyle_list.php?listID=13e">13e American Stout</a></li>
                  <li><a href="substyle_list.php?listID=13f">13f Russian Imperial Stout</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=14">14 India Pale Ale</a>
                <ul>
                  <li><a href="substyle_list.php?listID=14a">14a English IPA</a></li>
                  <li><a href="substyle_list.php?listID=14b">14b American IPA</a></li>
                  <li><a href="substyle_list.php?listID=14c">14c Imperial IPA</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=15">15 German Wheat & Rye</a>
                <ul>
                  <li><a href="substyle_list.php?listID=15a">15a Weizen/Weissbiet</a></li>
                  <li><a href="substyle_list.php?listID=15b">15b Dunkelweizen</a></li>
                  <li><a href="substyle_list.php?listID=15c">15c Weizenbock</a></li>
                  <li><a href="substyle_list.php?listID=15d">15d Roggenbeir (Rye)</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=16">16 Belgian & French Ale</a>
                <ul>
                  <li><a href="substyle_list.php?listID=16a">16a Witbier</a></li>
                  <li><a href="substyle_list.php?listID=16b">16b Belgian Pale Ale</a></li>
                  <li><a href="substyle_list.php?listID=16c">16c Saison</a></li>
                  <li><a href="substyle_list.php?listID=16d">16d Bière de Garde</a></li>
                  <li><a href="substyle_list.php?listID=16e">16e Belgian Specialty Ale</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=17">17 Sour Ale</a>
                <ul>
                  <li><a href="substyle_list.php?listID=17a">17a Berliner Weisse</a></li>
                  <li><a href="substyle_list.php?listID=17b">17b Flanders Red Ale</a></li>
                  <li><a href="substyle_list.php?listID=17c">17c Flanders Brown Ale</a></li>
                  <li><a href="substyle_list.php?listID=17d">17d Straight Lambic</a></li>
                  <li><a href="substyle_list.php?listID=17e">17e Gueuze</a></li>
                  <li><a href="substyle_list.php?listID=17f">17f Fruit Lambic</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=18">18 Belgian Strong Ale</a>
                <ul>
                  <li><a href="substyle_list.php?listID=18a">18a Belgian Blond Ale</a></li>
                  <li><a href="substyle_list.php?listID=18b">18b Belgian Dubbel</a></li>
                  <li><a href="substyle_list.php?listID=18c">18c Belgian Tripel</a></li>
                  <li><a href="substyle_list.php?listID=18d">18d Belgian Golden Strong Ale</a></li>
                  <li><a href="substyle_list.php?listID=18e">18e Belgian Dark Strong Ale</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=19">19 Strong Ale</a>
                <ul>
                  <li><a href="substyle_list.php?listID=19a">19a Old Ale</a></li>
                  <li><a href="substyle_list.php?listID=19b">19b English Barleywine</a></li>
                  <li><a href="substyle_list.php?listID=19c">19c American Barleywine</a></li>
                </ul>
              </li>
            </ul>
          </li>
          <li><a href="#" class="MenuBarItemSubmenu">Specialty Beers</a>
            <ul>
              <li><a href="style_list.php?listID=20">20 Fruit Beer</a></li>
              <li><a href="style_list.php?listID=21">21 Spice/Herb/Vegetable Beer</a>
                <ul>
                  <li><a href="substyle_list.php?listID=21a">21a Spice, Herb, or Vegetable</a></li>
                  <li><a href="substyle_list.php?listID=21b">21b Christmas/Winter Specialty</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=22">22 Smoked/Wood-aged Beer</a>
                <ul>
                  <li><a href="substyle_list.php?listID=22a">22a Classic Rauchbeir</a></li>
                  <li><a href="substyle_list.php?listID=22b">22b Other Smoked Beer</a></li>
                  <li><a href="substyle_list.php?listID=22c">22c Wood-Aged Beer</a></li>
                </ul>
              </li>
              <li><a href="style_list.php?listID=23">23 Specialty Beer</a></li>
            </ul>
          </li>
    </ul>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("Beer_Navi", {imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </div><!-- end #sidebar -->
    <div id="content">

  • XML Gateway - Hub Definition Password - Special Characters

    Our Marketplace provider is about implement mandatory special characters in the hub access user accounts. Our current configuration does not allow special characters in the hub definition.
    It there anyway to enter any symbol in the XML Gateway>Hub Definition>Password field.
    1) Are there any symbols that are not deemed "Special Characters", I have tried various without success.
    2) Can the password type be changes to allow symbols?
    Any help welcomed,
    Simon
    Swansea
    UK

    Actually this is the right forum to be in
    There are a few steps you need to do to configure BPEL with XML Gateway. This is what you did in 11i, may have changed for R12
    Here are the steps to setup BPEL output
    1. Choose responsibility 'XML Gateway' from left panel.
    2. From right panel choose 'Define Lookup Values' . Oracle forms application would open up.
    3. On XML Gateway Lookups form , press F11.
    4. In 'Type' field enter 'COMM_METHOD'(without quotes.
    5. Press CTRL+F11 . Form would fill from already present look ups. We are going to create new Lookup Value.
    6. On new row create look up as (Values without quotes) :
    - Code = 'BPEL'
    - Meaning = 'BPEL'
    - Description = 'Used for Apps Adapter Integration using BPEL'
    - Check 'Enabled' checkbox.
    7. Save form from File--> Save from menu bar. you can close this form.
    8. XML Gateway Navigator form would be presented.
    9. From right panel choose 'Define Trading Partners' .
    10. On Trading Partner Setup form , press F11 .
    11. In field 'Trading Partner Type' enter 'Supplier (without quotes).
    12. In field 'Trading Partner Name' enter ‘VENDOR-1' (without quotes).
    13. Go to Trading partner details and create new transaction as (Values without quotes)
    - Connection/Hub = 'DIRECT'
    - Protocol Type = 'BPEL'
    - Protocol Address = 'http://appsadapter.sample.com'
    cheers
    James

  • How do I use a font variation in a pages document. I no longer have the "viewer" -glyph option in special characters pane only new mbPro with Lion. I know the variation is available because I can see it in the font book. so now what I just want to be

    How do I use a font variation in a pages document? or other app for that matter? I no longer have the "viewer" - glyph option in the special characters pane (under edit  in toolbar). I know the varaition ia available because I can see it in my font book. I depended on that alot so I need to find a way to still use character and embellishments. I don't want to have to go back to my od computer (from2007) Please Help!

    I really don't understand.
    The menu item is available :
    Maybe, you didn't activate the tool :
    Yvan KOENIG (VALLAURIS, France) mardi 2 août 2011 23:10:17
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • Why does text on certain portions of websites, usually when adjacent text contains special characters, become jumbled into seemingly random sets of characters that are not in any way jumbled when viewing the source of the webpage? How can I fix this?

    When viewing most text on most websites, it displays properly. However, there are two instances where text will either tend to, or consistently, become jumbled into a mess of seemingly random characters. Oddly enough, these seemingly random characters are not, in fact, random. The same weird character will be used to replace the same regular English text character consistently across the entire area that has been jumbled.
    The two instances where this tends to occur most often, or consistently in some cases, are, first, when a paragraph or particular section of formatted text contains special characters, such as Chinese or Japanese characters, or accented letters. When this happens, usually the paragraph that contains the special characters is completely jumbled, while the rest of the text on the page will have intermittent jumbling on a word or two. Most often, the word "the" is jumbled in this case.
    The second instance where this happens is when a website uses specially formatted text in some form or another. I, not being an expert at web development, am not sure what kind of formatting causes it, but I can provide consistent examples in lieu of my experience:
    - Example 1:
    [http://img408.imageshack.us/img408/9564/firefoxcharencodingissu.jpg]
    Example 1 shows a portion of a screen-shot of the website "Joystiq.com". Every single article title on the front page of this blog is consistently jumbled, while the text of the article itself remains untouched. Please note that when this jumbled text is highlighted, it is visible un-jumbled in the right-click menu as well as in the source code of the page. Other consistent instances can be found within many search fields on various websites. For instance, the search bar located at the top right of "Kotaku.com" consistently displays jumbled characters both on its default text of "Search" and on any text that is typed into the search box itself.
    - Example 2:
    [http://img822.imageshack.us/img822/9564/firefoxcharencodingissu.jpg]
    Example 2 shows both the jumbling of the paragraph containing the character "☆" as well as the subsequent peppering of the rest of the article's text with small jumbled words. Below this is the DOM Source of the selected text which shows how the text itself is being rendered properly within the site's source. Additionally, for convenience, I have edited on to the bottom of the image a small snippet of what the search bar on the same page looks like. Notice how the grayed-out text that normally would read "Search" is instead jumbled.
    This issue has been plaguing my browser for the past year or so, and I had hoped that it would go away with subsequent Firefox updates. It has not gone away.
    Thank you for reading! Please help!

    This issue can be caused by an old bitmap version of the Helvetica or Geneva font or (bitmap) fonts that Firefox can't display in that size.
    Firefox can't display some old bitmap fonts in a larger size and displays gibberish instead.
    You can test that by zooming out (View > Zoom > Zoom Out, Ctrl -) to make the text smaller.
    Uninstall (remove) all variants of that not working font to make Firefox use another font or see if you can find a True type version that doesn't show the problem.
    There have also been fonts with a Chinese name reported that identify themselves as Helvetica, so check that as well.
    Use this test to see if the Helvetica font is causing it (Copy & Paste the code in the location bar and press Enter):
    <pre><nowiki>data:text/html,
    Helvetica<br><font face="Helvetica" size="25">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</font><br>
    Helvetica Neue<br><font face="Helvetica Neue" size="25">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</font>
    </nowiki></pre>
    You should reset the network.http prefs that show user set on the about:config page.<br />
    Not all websites support http pipelining and if they do not then you can have issues with images or other problems.
    See also http://kb.mozillazine.org/Images_or_animations_do_not_load#First_steps

  • How to display special characters in Script...

    hi all,
    Can any one tell me how to display special characters in script...
    how to write in text element
    thanks in advance,
    prashant

    Hi Prashant ,
      What special characters would you like to include .
    There are a set of characters / icons /symbols that can be included in Script , for that open a window in edit mode and in the menu there will be an option called Insert  , here you can find a lot of characters/symbols that can be included .
    Regards,
    Arun

  • How can I enter special characters in a text title?

    Hello to all!
    Have been trying to get in a special character [the tick mark] onto a text title on my current project. Had gone to the special character option under EDIT menu, and added the desired special character to the 'favourite' list, but after that I do not know how to move ahead. Would like help.
    Thanks to all.
    Dr. Somanna

    Thank you for your reply.
    However I am afraid that neither double click nor drag/drop is adding the character to the text.
    Is there any other method to get special characters into FCPX?

  • Special characters in Web Services

    I have developed a Web Service in Java using JBuilder 2005 and deployed it on BEA Weblogic 8.1 SP5. Weblogic is configured to use the ISO-8859-1 encoding as well as JBuilder. I am living in South Africa and we need to cater for special characters. A typical test string is "MOK�ENA��������������A".
    I have also developed a little test class to test this Web Service. The only parameter is a String type and it returns a String type. This String type must be able to handle special characters.
    I understand that the String in Java is unicode with no encoding. How do I pass a string containing special characters to this web service. I am getting the error "SOAP Fault:javax.xml.rpc.soap.SOAPFaultException: Internal Error: unable to process your request: javax.xml.soap.SOAPException: weblogic.xml.stream.XMLStreamException: Malformed UTF-8 char -- is an XML encoding declaration missing? - with nested exception:
    [weblogic.xml.stream.XMLStreamException: Malformed UTF-8 char -- is an XML encoding declaration missing? - with nested exception:
    [java.io.CharConversionException: Malformed UTF-8 char -- is an XML encoding declaration missing?]]" .
    Currently I am converting the string to a byte[] array and encode it with the .getBytes("ISO-8859-1") method of the String class and replace the String parameter in the Web Service with a byte[] type. This results in a longer than needed parameter that needs to go over the wire.
    I want to do it the wright way using string type if possible.
    What is the correct way of dealing with this special characters.
    Regards

    In theory you should be able to enter them via a special small pop up window. In System Preferences -> Keyboard -> and you can switch to show keyboard layout and such in the menu bar (assuming you're running SL).
    Then you can open a glyphs window accessing all possible unicode characters:
    ⠫⠳⠭⠹㉢㈚↳↬ ䷑䷪䷬䷜
    volker

  • Problems with special characters like "u00F6" "u00E4" "u00FC"

    Hi,
    we currently face some major problems with special characters like "ö" "ä" "ü". First I thought it is a SP02 specific problem but it still doesn't work with SP03.
    When I start an import the import manager shows correct converted value. "ö"s "ä"s "ü"s are displayed correctly. But after I've done the import I look into the Data manager and I see instead of these characters charcaters like "&#776;". (note: the character should show a little square box - but the forum cannot desplay it)
    How can I solve this problem?
    Regards
    Nico

    Hi Nico
      Just try it out the following steps, hope it solves ur issue.
    <b>To set one or more values back to their original values:</b>
    1. In the Import Manager Source Values grid, select the values that you want to set back to their original values.
    2. Right-click on one of the values and choose Set to Original Value from the context menu, or choose Values > Apply Value Conversion Filter > Set to Original Value from the main menu.
    3. MDME sets each value back to its original value, which appears in black in the Source Values grid.
    <b>NOTE : You can use the Set to Original Value filter only at the value-level and not at the field level.</b>
    thanks
    Alexander

  • Problems with Turkish special characters

    Hello!
    We are producing Oracle Help with WebWorks Publisher 2003 Professional for FrameMaker. There are some problems with the Turkish version of our online help: The Turkish special characters (for example the dotless i) aren´t displayed correctly in the navigation panes TOC and index. They are replaced by other characters (for example by a "y")
    Has anyone an idea how to solve this problem?
    Thank you very much.
    Kind regards,
    Miriam Rassenhofer

    Miriam,
    What encoding are the TOC and index XML files being generated in? You should use UTF-8 for the minimum of problems. I presume WebWorks has an option for this. Other than that, make sure the top of those XML files has the proper XML declaration with the encoding:
    <?xml version="1.0" encoding="UTF-8"?>You may want to try opening the XML files in an XML-aware text editor to ensure they look right there (JDeveloper is one such editor).
    If all of that is working, post back and we can talk offline about getting a snippet of one of those XML files for us to look at.
    -brian

  • Preview typing special characters only

    I'm having troubling typing text w/ Preview.
    When I try to type, it only types special characters. I'm thinking if I accidently used some shortcut combination to type special characters.
    It is not letting me type normal language at all now. Does anyone have any idea?
    If there is a way to uninstall preview and reinstall, would anyone let me know? Thanks!!!

    Why is everyone going on about the Character Pallette when most of the required symbols are available from the keyboard?
    Using the option key, these are the standard symbols for US and UK keyboards (lower case followed by upper case with the addition of the shift key) Starting with the numeric row;
    ¡€#¢∞§¶•ªº–≠
    ⁄™‹›fifl‡°·‚—±
    œ∑´®†¥¨^øπ“‘
    Œ„‰ÂÊÁËÈØ∏”’
    åß∂ƒ©˙∆˚¬…æ«
    ÅÍÎÏÌÓÔÒÚÆ»
    `Ω≈ç√∫~µ≤≥÷
    ŸÛÙÇ◊ıˆ˜¯˘¿
    Enable the Keyboard viewer by checking 'show keyboard and character viewer in the menu bar' in System Preferences > Keyboard > keyboard tab.
    Open the keyboard viewer from the flag menu and press the opt key - you'll see all the available symbols and accents. Some of them are highlighted in orange - these can be used with multiple letter combinations.
    For instance, opt+e followed by e = é, opt+e followed by a = á, opt+u followed by o = ö.
    Message was edited by: noondaywitch

  • Problem with special characters getting converted into '#'  in portal

    Hi All,
    The special characters like " - ", " ' ", " ` ",  are getting converted into '#' when the smartform is displayed in portal.
    I have a smart form in which the text contains the above special characters and they are getting displayed as  ' # ', when the form is invoked in portal. We are not able to trace the problem.
    I need your input on this ASAP.
    Thanks in Advance,
    Sowmya

    This could be caused by conversion routine on the field.
    in sapscript, can use &FIELD-NAME(K)& to ignore conversion routine
    To see this and other options, in text edit of script select menu option Insert>Symbols>New  and then type field name and select desired check box options - field will be placed in script with relevant formatting characters
    Andrew

Maybe you are looking for