Localized forms won't show properly on punctuations (Arabic)

Hi All,
I am encountering continuously (when working with Arabic) problems with localized forms.
See screenshots:
1 .This is what I want to get (localized form for colon) but the ® mark must be superscripted.
2. When superscripting ® mark, localized style is gone and colon appear to be regular ('square') version.
3. Same happen with brackets, full stops and so on:
Now, I can resolve the issue by using Body Text paragraph style with [No Language] and then use nested GREP with Character Style set to English to keep punctuation consistent (Arabic may randomly leave localized forms and un-localized). However English or any other language may not apply non-localized forms to the punctuations in effect we will be left with random punctuation forms across the text. Also even when character style have 'Localized Forms' function checked (IndicPlus Plug-In):
the function doesn't work at all.
Problem usually appear when we have Latin (Roman) character around the punctuation - that forces next character to be non-localized form. Sometimes help to place Non-joiner (or even hair space) between those character but chances that we get correct form for punctuation are very small.
I can recognize this as a bug? Maybe someone came across this issue and know any work-around?
Described issue appears at:
InDesign CS4 with IndicPlus Plug-in 2.0
I can confirm that issue persist when using:
InDesign CS6 ME version.
Regards
Peter

Hi again,
I found quite robust workaround, however this is something I would avoid at any chance.
The trick is:
1. Starting with problematic Non-localized colon (or other [[:punct:]] mark):
2. Place Arabic Fatha (Unicode: 064E) in-between:
3. Change that character colour to Paper:
This can be easily done with GREP but placing extra character within the text isn't something I would like to do (as mentioned before), the reason is that text is checked against supplied Word Doc (using text verification software), hence more deviations will appear.
Could anyone do some test and confirm that this is a bug?
Peter

Similar Messages

  • Text in editable fields in PDF form won't show up once attached to email

    This is probably something new to Acrobat 9 and just don't know enough about it yet. I had previously been using Acrobat 5 and made the big jump to 9. I use Acrobat to create editable fields for an invoice template that I occasionally email to customers. I open my blank template, type in invoice information (template was created in QuarkXpress then saved as a PDF) and resave renaming the file by the invoice number, then usually print a copy for mailing. Sometimes customers want the invoice emailed to them instead. Now, on my new iMac whenever I email the invoice, the customer gets it ok, but the fields appear to be blank or only show the blue field box. I emailed one to myself at another computer running XP Professional and the same thing happens only I can click on one of the blue fields and the information I typed there appears, but only one box at a time. Once I click another field the previous one disappears again. Anyone have any ideas why this is happening?

    Most likely you used the Preview application to fill and save the PDF, rather than Acrobat. The behavior you describe is a known problem. I recently wrote a small article that has more information: http://kb2.adobe.com/community/publishing/885/cpsid_88564.html
    Although the site seems to be a bit slow at the moment.
    Here's a link to a recent topic here where this was discussed: http://forums.adobe.com/message/3268674

  • Local printers won't show up in Remote Desktop Connection Manager 2.7

    Hi everybody
    I really need help. I connect to a server through RDC Man 2.7 on my Surface Pro 3 to use the installed accounting software. Now I want to print stuf such as journals but when I print, I cannot choose my locally installed wirless Printer. I used to be able
    to do it using RDC Man on my iMac in OSX.
    I have ticked printers on the local resources tab in settings to no avail. I hope somebody can help me with this issue as I really need to be able to print.
    Thanks a million.
    Best regards
    Ben

    Hello Ben,
    Do you mean that the Surface Pro 3 can’t find the local wireless printer when you remote desktop to a server? And when you remote from a iMac at the same time, the Surface Pro 3 can find the printer?
    Can the surface pro 3 printer when it is not connected with the remote server?
    Please take the following steps for troubleshooting:
    1. Check if you can normally ping the IP address of the printer when you can’t printer.
    About the command ping, please take a look at the following article.
    https://technet.microsoft.com/en-us/library/bb490968.aspx?f=255&MSPPError=-2147217396
    2. Go to Control Panel\All Control Panel Items\Troubleshooting\All Categories
    and run printer troubleshooter
    3. Please try to update the driver from the manufacturer website and check if the issue still exists
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • IPhone 5 previously would not sync properly, now I updated to iTunes 11.1.3 and it won't show at all!

    I've been having trouble getting my phone to sync. It's been a real pain... Previously, I deleted all the music off the phone and re-synced my library. I recently added some new music, and I was getting the same issue, so I tried my old trick, and it wouldn't remove the music properly. I reset the phone and the music remained (at least, it showed, but skipping through the songs, none of them played... so theoretically it removed the actual MUSIC while the song listings stayed in my 'music' app).
    Poking around, I found suggestions that maybe updating to the new iTunes would fix the problem. I updated... and now, suddenly, my iPhone won't show up in iTunes at all! It was just connecting BEFORE the update, so it's definitely not the cable. I'm really not sure what to do now.
    Currently restarting my computer to be sure that isn't part of the issue. Will report back, but can anyone help me in the meantime?
    Edit:
    Restarting the computer solved the problem of the device not showing in iTunes, but when it synced, the music was STILL messed up. Trying the remove and re-sync again.

    Removed. Re-synced. Still not working. Factory reset the phone, re-installed music... made a GIANT "Other" file instead of actually adding any songs.
    Factory resetting again. Any other solutions?
    EDIT: If It helps, I'm doing this all over USB connection, not trying to sync music through wifi or anything.

  • GetAppletContext().showDocument() won't show local files for some people

    Hi,
    I have a reporting function that creates a pdf and stores on the users computer in the local temp drive and then displays the created pdf in a new browser window. Everything works fine except for some users it won't show local files. This is a signed applet and everyone has the same policy file. I can't work out why it works for some users and not for others, there doesn't seem to be a pattern in o/s, configurations etc. When i run the code locally on tomcat it works for me but when i upload to server it doesn't. There is no error message either. The pdf is definitely being created as well as you can check it in the temp directory. Code is below:
    void btnReport_actionPerformed(ActionEvent e) {
    try {
    String args[] = {"-pdf"};
    File f = File.createTempFile("SCReport", ".pdf");
    FileOutputStream fos = new FileOutputStream(f);
    JCPrinter printer = SCPrintManager.getPrinter(args, fos);
    if (printer == null) {
    System.out.println("Printer is equal to null");
    // What has been selected?
    SCReport report = new SCReport(printer);
    Vector vectSubConsultant = createVectorFromScreenInfo();
    if (vectSubConsultant == null)
    return;
    report.addSectionForSC(vectSubConsultant, true);
    SCPrintManager.printDocument(report.getDocument(), printer);
    printer.getOutputStream().close();
    URL reportURL = f.toURL();
    URLConnection con = reportURL.openConnection();
    ReDirector().getAppletContext().showDocument(reportURL,"report");
    catch (Exception ex) {
    System.out.println("Error producing report");
    ex.printStackTrace();
    }

    Did you have any luck? As I am trying to do the same thing...

  • Mission control won't show windows properly.

    Mission control (expose) won't show windows properly. It's really annoying when I'm working and need to see what I've got opened or switch between apps. Sometimes it'll display them correctly, other times it won't. See the 2 screenshots open 3 windows:
    1st screenshot: http://cl.ly/image/0U0q1N3J0Z2f
    - chrome browser
    - finder
    - messages
    2nd screenshot:http://cl.ly/image/2F0T3o1z0e3Z
    only icons of chrome and finder are shown, but no windows. No messages not even the icon.
    I'd really love all the help you can provide.

    My problem started when the update to 10.7.5 ran. Mission Control in the Dock continued to work as before the update.
    In System Settings>Mouse, the side buttons on my Might Mouse had been changed to 'Expose - App Windows.' I  had to change the setting back to Mission Control.
    Perhaps MtnLion suffered a similar glitch.

  • My new Macbook Pro 13" won't register properly on our school's projectors when I try to run PPT!, My new Macbook Pro 13" won't register properly on our school's projectors when I try to run PPT!

    My new Macbook Pro 13" won't register properly on our school's projectors when I try to run PPT (Epson EB510)!  Instead, colored bars go across the screen against a black background.  No matter how much I try to adjust the displays, PPT won't show on it.  However, my friend's Macbook Air works fine. She's 10.7.2, I'm 10.7.4, so we're both more or less OS X Lion.  What could be wrong?  Can I do anything to fix it?

    Make sure that your display is not mirrored. Mirroring forces you into "lowest common denominator" screen resolutions that can safely be displayed on BOTH screens, which may not be good enough for the projector.
    When you turn off Mirroring, you get Extended Desktop, where the two screens are joined along an edge to form a larger Extended Desktop. To use this, drag a window onto the "other" screen.

  • My ipod won't show up on my computer. I have another ipod touch, that works fine. What should I do? Do I need a different ipo usb cord for the nano?

    my ipod won't show up on my computer. I have another ipod touch, that works fine. What should I do? Do I need a different ipo usb cord for the nano?

    iTunes never displays the iPod in the left pane?
    iTunes is shipped with a "helper application" called the "iPod Service" that runs and is used by iTunes to communicate with the iPod device. This service may be disabled.
    If your system is Microsoft Windows XP and you are logged in as an Administrator:
    1. Quit iTunes and, if your iPod is currently connected to your computer, safely remove it using the system tray application to manage removable devices.
    2. Right click on "My Computer"
    3. Select "Manage"
    4. In the "Computer Management" window, left pane (tree view), follow this path:
    +Computer Management (local) > Services and Applications > Services+.
    5. In the right pane, scroll down to "iPod Service" and double click it.
    6. If the service is listed as "Disabled" and "Stopped," change to "Manual" and "Start" it. ("Manual" will cause it to start when iTunes starts and "Start" starts the service right now.)
    7. Close "Computer Management"
    8. Restart iTunes and wait for it to completely come up.
    9. Reconnect your iPod.
    Does your iPod show up in iTunes?

  • IPod won't show up on itunes or mac, freezes, and doesn't play bought songs

    Okay i have four issues with my iPod
    1. It won't show up on iTunes or on Mac desktop
    2. When i plug it into the USB port it freezes and say 'Do Not Disconnect'. It will not come out of this
    3. Every single song i have bought won't play on my iPod. They transfer fine, but when i click on a bought song it simply skips over it
    4. I authorized this computer but songs still need authorizing, and i have already authorized them
    So we bought a new Mac and i plugged in my 30 GB video iPod for the first time. It showed up in iTunes then so i synced it to our new computer. Then i tried to listen to my bought songs and they simply wouldn't play. The iPod just skipped over them. I had one song out of three hundred or so that were bought actually play. Then i tried reauthorizing my new computer and getting rid of all the old computers that had been authorized. That didn't work, and the songs that actually needed to be authorized wouldn't be authorized even when i clicked on them.
    So then i unplug and just listen to it as is for awhile but then i try plugging it in again and it just doesnt show up on my Mac desktop or iTunes. And the screen becomes frozen with the same message, 'Do Not Disconnect' I wait for a half an hour for it to show up and it never does. I have no choice to unplug it and then it is still frozen with that same message. Five hours pass, and it is still like that. It finally goes off and then it simply doesnt work. So i plug it in to my charger and its fine except the whole not playing bought songs business.
    Please i beg if you have any answers to any of these problems HELP!!!!!

    Have you had a chance to look at these troubleshooting pages? They may be of some help:
    iPod's battery doesn't charge
    iPod missing in My Computer and in iTunes
    iPod is not recognized properly by computer when USB drivers are not installed properly or are out of date
    Microsoft Support - A computer that is running Windows XP cannot detect a USB thumb drive, an Apple iPod, or an external hard disk drive
    If you are using a laptop, this page might help: iPod not recognized when connected to Windows laptop over USB

  • My iPod won't show up on my computer or iTunes

    I have a major problem. I just bought a new 4GB 3rd gen nano from Hastings. It charges fine and there are no problems, except one. It won't show up on iTunes (I have the latest version) and I checked My Computer, and it doesn't show up there either. I tried reseting it and everyting, and I reinstalled iTunes, and I restarted my computer. But nothing works.
    It might help to know that this isn't my fist iPod, I also had a 1st gen nano, bu it got messed up.
    Help me?

    iTunes never displays the iPod in the left pane?
    iTunes is shipped with a "helper application" called the "iPod Service" that runs and is used by iTunes to communicate with the iPod device. This service may be disabled.
    If your system is Microsoft Windows XP and you are logged in as an Administrator:
    1. Quit iTunes and, if your iPod is currently connected to your computer, safely remove it using the system tray application to manage removable devices.
    2. Right click on "My Computer"
    3. Select "Manage"
    4. In the "Computer Management" window, left pane (tree view), follow this path:
    +Computer Management (local) > Services and Applications > Services+.
    5. In the right pane, scroll down to "iPod Service" and double click it.
    6. If the service is listed as "Disabled" and "Stopped," change to "Manual" and "Start" it. ("Manual" will cause it to start when iTunes starts and "Start" starts the service right now.)
    7. Close "Computer Management"
    8. Restart iTunes and wait for it to completely come up.
    9. Reconnect your iPod.
    Does your iPod show up in iTunes?

  • HT1353 Ipod won't sync properly and refuses to play certain songs

    My Ipod Nano 5th gen won't sync properly and when I choose a song it shows the title of a different song and plays a song different to the song title shown or chosen.

    What do you mean it won't sync properly? Do you get any error messages in iTunes?
    Have you tried any of the usual 5 R's of troubleshooting yet?
    http://www.apple.com/support/ipod/five_rs/nano5gen/
    B-rock

  • Won't show firefox since last night

    It crashed. Tried to restart and it won't show. Did a full scan. Uninstalled and reinstalled over 6 times. It says that I must close firefox that is currently in use but it isn't. When I use explorer to download firefox, explorer will sometimes crash.

    Sometimes when FF is closing, not all of it shuts down properly. On
    Windows, start the '''''Task Manager''''' (Other systems may have different
    names). Select '''''Applications''''' (list of what user programs are running).
    If you see
    Firefox listed, try to shut it down normally. If it does not shut down, then on
    the '''''Task Manager''''' right click FF, and select '''''End Task'''''. However, if FF
    still does not shut down, or FF is not listed as running; on the
    '''''Task Manager''''', select '''''Processes'''''. Look down the list for Firefox.
    Right click and select '''''End Task'''''.
    If this problem keeps coming up, ask for more help.

  • Spry Menu Bar Submenu won't show in Safari or Dreamweaver LiveView

    I am trying to get my submenu to show up on my website's spry menu bar. It will show up when I test the site using firefox or IE but it won't show when I try LiveView in Dreamweaver or when I test using Safari. The site is www.fuseut.com/fuse
    Here are is the CSS for the menubar:
    @charset "UTF-8"; /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */ /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */ /******************************************************************************* LAYOUT INFORMATION: describes box model, positioning, z-order *******************************************************************************/ /* The outermost container of the Menu Bar, an auto width box with no margin or padding */ ul.MenuBarHorizontal {      margin: 0;      padding: 0;      list-style-type: none;      font-size: 100%;      cursor: default;      width: auto; } /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */ ul.MenuBarActive {      z-index: 1000; } /* Menu item containers, position children relative to this container and are a fixed width */ ul.MenuBarHorizontal li {      margin: 0;      padding: 0;      list-style-type: none;      font-size: 100%;      position: relative;      text-align: left;      cursor: pointer;      width: 125px;      float: left;      font-family: "MS Serif", "New York", serif;      overflow: visible; } /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */ ul.MenuBarHorizontal ul {      margin: 0;      padding: 0;      list-style-type: none;      font-size: 100%;      z-index: 50;      cursor: default;      width: 7em;      position: absolute;      left: -1000em; } /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */ ul.MenuBarHorizontal ul.MenuBarSubmenuVisible {      left: auto; } /* Menu item containers are same fixed width as parent */ ul.MenuBarHorizontal ul li {      width: 7em; } /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */ ul.MenuBarHorizontal ul ul {      position: absolute;      margin: -5% 0 0 95%; } /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */ ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible {      left: 0;      top: 0; } /******************************************************************************* DESIGN INFORMATION: describes color scheme, borders, fonts *******************************************************************************/ /* Submenu containers have borders on all sides */ ul.MenuBarHorizontal ul {      border: 1px solid #CCC; } /* Menu items are a light gray block with padding and no text decoration */ ul.MenuBarHorizontal a {      display: block;      cursor: pointer;      padding: 0.5em 0.75em;      color: #FFF;      text-decoration: none;      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;      text-align: center;      background-image: url(../menubgdefault.png); } /* Menu items that have mouse over or focus have a blue background and white text */ ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus {      color: #FFF002;      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; } /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */ ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible {      color: #FFF002;      text-decoration: underline;      font-weight: bold; } /******************************************************************************* SUBMENU INDICATION: styles if there is a submenu under a given menu item *******************************************************************************/ /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */ ul.MenuBarHorizontal a.MenuBarItemSubmenu {      background-image: url(SpryMenuBarDown.gif);      background-repeat: no-repeat;      background-position: 95% 50%;      background-color: #999; } /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */ ul.MenuBarHorizontal ul a.MenuBarItemSubmenu {      background-image: url(SpryMenuBarRight.gif);      background-repeat: no-repeat;      background-position: 95% 50%; } /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */ ul.MenuBarHorizontal a.MenuBarItemSubmenuHover {      background-image: url(SpryMenuBarDownHover.gif);      background-repeat: no-repeat;      background-position: 95% 50%; } /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */ ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover {      background-image: url(SpryMenuBarRightHover.gif);      background-repeat: no-repeat;      background-position: 95% 50%; } /******************************************************************************* BROWSER HACKS: the hacks below should not be changed unless you are an expert *******************************************************************************/ /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */ ul.MenuBarHorizontal iframe {      position: absolute;      z-index: 1010;      filter:alpha(opacity:0.1); } /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */ @media screen, projection {      ul.MenuBarHorizontal li.MenuBarItemIE      {           display: inline;           f\loat: left;           background: #FFF;      } }
    And here is the HTML code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xmlns:spry="http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>FUSE UT</title>
    <link href="stylesheet.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryAccordion.js" type="text/javascript"></script>
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    <script src="SpryAssets/xpath.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryData.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryAccordion.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    #apDiv1 {
         position:absolute;
         left:0px;
         top:135px;
         width:551px;
         height:269px;
         z-index:2;
         visibility: visible;
    #apDiv2 {
         position:absolute;
         left:685px;
         top:150px;
         width:203px;
         height:270px;
         z-index:1;
    #apDiv3 {
         position:absolute;
         left:684px;
         top:149px;
         width:200px;
         height:267px;
         z-index:2;
    #HomeEvents {
         position:fixed;
         left:683px;
         top:151px;
         width:200px;
         height:263px;
         z-index:1;
         background-image: url(Components/EventsPic.png);
         visibility: visible;
         overflow: hidden;
    #HomeEvents {
         position:absolute;
         left:550px;
         top:-1px;
         width:200px;
         height:265px;
         z-index:2;
    #EventsXML {
         position:absolute;
         left:1px;
         top:43px;
         width:199px;
         height:223px;
         z-index:3;
         visibility: visible;
         overflow: scroll;
    #apDiv4 {
         position:absolute;
         left:-1px;
         top:265px;
         width:753px;
         height:325px;
         z-index:3;
         background-image: url(home1.png);
    -->
    </style>
    <script type="text/javascript">
    <!--
    var event = new Spry.Data.XMLDataSet("events.xml", "catalog/event", {sortOnLoad: "date", sortOrderOnLoad: "descending"});
    var event2 = new Spry.Data.XMLDataSet("events.xml", "catalog/event", {sortOnLoad: "date", sortOrderOnLoad: "ascending"});
    event2.setColumnType("date", "date");
    //-->
    </script>
    <meta name="Keywords" content="fuse ut utk university of tennessee tommy jervis avery howard ross rowland angie sessoms sga campaign elections" />
    </head>
    <body>
    <div id="container">
    <div id="header">
    </div>
    <div id="menubarparent" style="z-index: 20; position: absolute; overflow: visible;">
    <div id="menubar" style="z-index: 10;">
    <ul id="MenuBar1" class="MenuBarHorizontal">
        <li><a href="index.html">FUSE</a>      </li>
        <li><a href="senators.html" class="MenuBarItemSubmenu">Senators</a>
          <ul>
            <li><a href="#">Untitled Item</a></li>
          </ul>
        </li><li><a href="executive.html">Executive</a>      </li>
        <li><a href="policy.html">Policy</a></li>
        <li><a href="organizations.html">Organizations</a></li>
        <li><a href="bios.html" class="MenuBarItemSubmenu">Bios</a>
          <ul>
            <li><a href="#">Untitled Item</a></li>
          </ul>
        </li>
      </ul>
      </div>
      </div>
      <p>
      <p>
      <div id="apDiv1">
        <div id="apDiv4"></div>
        <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="550" height="265" wmode="transparent">
          <param name="movie" value="Components/CandidatesHomeSlideshow.swf" />
          <param name="quality" value="high" />
           <param name="wmode" value="transparent" />
          <param name="swfversion" value="6.0.65.0" />
          <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
          <param name="expressinstall" value="Scripts/expressInstall.swf" />
          <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
          <!--[if !IE]>-->
          <object type="application/x-shockwave-flash" data="Components/CandidatesHomeSlideshow.swf" width="550" height="265" wmode="transparent">
            <!--<![endif]-->
            <param name="quality" value="high" />
              <param name="wmode" value="transparent" />
            <param name="swfversion" value="6.0.65.0" />
            <param name="expressinstall" value="Scripts/expressInstall.swf" />
            <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
            <div>
              <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
              <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
            </div>
            <!--[if !IE]>-->
          </object>
          <!--<![endif]-->
        </object><div id="HomeEvents">
          <p> </p>
          <p> </p>
          <div id="EventsXML">
            <div spry:region="event2">
              <dl spry:repeatchildren="event2">
                <dt>{date}</dt>
                <dd>{title}</dd>
                <dd>{location}</dd>
              </dl>
            </div>
          </div>
        </div>
      </div>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
    </div>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    swfobject.registerObject("FlashID");
    //-->
    </script>
    </body>
    </html>
    Sorry if it's something really basic...I'm a noob to web design.
    Thanks!

    Don't use reserved words in JS
    var event = new Spry.Data.XMLDataSet("events.xml", "catalog/event", {sortOnLoad: "date", sortOrderOnLoad: "descending"});
    event is such a reserved word. If you change this to event1 then all is well.
    I hope this helps.
    Ben

  • My IPod apps won't open. So I looked it up, and it said to sync the apps to itunes, i tried this, but when i try to sync, the apps won't show up on Itunes. It keeps saying "0 apps". What do i do?

    Ever since yesterday, my Ipod apps won't open properly. I googled it, and couldn't find anything accurate. So i deleted all of the apps, and re-downloaded them. Now they're doing it again. When i tap on it, it looks like it wants to open, but then it goes back to the main menu. I googled it again, and got an answer saying to go to Itunes, uncheck the "sync apps" box, and sync. Then after that, recheck the box, and sync again. Many people said this worked, but it didn't for me. Also whenI go to sync my apps, they don't show up in Itunes. How do I get them to show up in Itunes?

    I had the same issue. After searching around online I found out that you can try downloading another app (it can be any app) onto your ipod. After it finishes downloading see if your other apps open. You don't even have to keep the new app. Just see if your other ones work and you can delete the new one. That should work. If not, try to hard reset it. Here is another apple support link for steps on hard reseting it (http://support.apple.com/kb/HT1430). 

  • Exporting: iPhoto won't show all edits and modifications when exporting

    Hi there,
    A problem recently cropped up in my iPhoto album.
    I'm using at 12" PowerBook G4, 1.5GHz, 250GB HD / 1.25GB RAM / OS 10.5.6 / iPhoto 8.0.2 (iPhoto '09). My iPhoto library contains 29,654 photos and 333 movies in 474 events and measures 119.2GB, including content since 1999. It's stored on a LaCie external FireWire drive.
    The problem I'm experiencing is as follows:
    Certain photos, no matter how I export them, be it via the +File -> Export+ command (to +File Export+ or Facebook (having installed the plug-in) or by dragging-and-dropping from iPhoto to the Finder, will not export with all (or sometimes any) of my edits (a.K.a., enhancements,changes or adjustments) made.
    This is to say, for certain photos, I cannot figure out how to get the version of the photo I can see within iPhoto out of iPhoto so it can be shared or used elsewhere.
    These +certain photos+ which won't export properly seem to be ones which have had more extensive editing done to them, specifically having had extensive shadows, highlights, definition or de-noise work done.
    I have searched the Support Discussions and the web for other case and have found a several. Unfortunately, all of the helpful Support Discussions regarding this issue were archived (and closed) before they reached a solution.
    Here is an example of such a case where the various Support Discussions users went to extensive effort to solve the problem but ended without a solution in August of 2008:
    http://discussions.apple.com/thread.jspa?threadID=1519734
    Thanks in advance for any support.
    AE

    LarryHN,
    Thanks for responding so quickly.
    LarryHN wrote:
    1 - if you have not try file ==> export and set kind = current
    Yes, unfortunately I've tried this. I also tried exporting in every different format, without any luck.
    LarryHN wrote:
    2 - select the photo in iPhoto and right click (control click) on it and select show file - this will open a finder window - see if the file it brings up has your modifications
    This takes me to a file within a sub-folder of the Modified folder. This is an incorrect version of the photo. Choosing +Show Original File+ from the secondary-click menu takes me to another incorrect version of the file within a sub-folder of the Originals folder, as expected.
    LarryHN wrote:
    3 - go to your iPhoto library and right click (control click) on it and show package contents - look in the modified folder (be very careful not to make any changes of any sort) and look at the photo there with preview and see if the changes show up
    Here I ended up at another incorrect version of the photo, which was in a sub-folder of the Modified folder... I think this is the same file I was directed to when I secondary-clicked and selected +Show File+.
    Thanks for the help -please let me know if you have any further suggestions.

Maybe you are looking for

  • Offline editing in Premiere CS6

    Hi! I'm thinking about to edit a feature film in Premiere putting together all the episodes of my webserie. It's an action webserie and has a lot of cuts. It is in H.264 from 7d so is very difficult to play in real time. Are there any way to make pro

  • Css layout issues in IE

    Hi have put together my first full css site -2 divs in a content div - but columns don't go right down to footer. http://www.person2person.net.au/" Also content div does not go al the way down - colour missing. Also text in entry page seems to move r

  • OVI SUITE does not display PHOTOS as thumbnails.

    HELP! Ovi suite does not display Photos as thumbnails, see screenshot attached. 12-May-2011 01:19 PM Hi, please help. Ovi Suite does not display Photos saved in my computer. Just getting Default grey image for everything on the thumbnails. OS XP home

  • Building New SQL Server To Migrate from Old one and need to figure out how I need to license it.

    So my head is spinning on setting up a New SQL Server. Current setup is Microsoft Server 2003 Standard and Microsoft SQL Server 2000 Standard. Nothing was maintained with Software assurance. Environment: Database is Limited to 2008 R2 Standard as Hig

  • Deployment failed: J2EE application: *** has already been deployed

    Hi, I have a half deployed app I need to get rid of. Enterprise manager failed to re-deploy it (memory problem) and now tells me it's already deployed if I try to deploy it but doesn't show it in the list of applications, so I can't undeploy it. I ha