Problems with menubar

Hello,
is it possible to use another icon for the selected item
<f:facet name="menu2">
<afh:rowLayout width="100%">
<af:menuBar>
<af:commandMenuItem text="Hardware" selected="true"/>
<af:commandMenuItem text="Software"/>
</af:menuBar>
</afh:rowLayout>
</f:facet>
in my css I have
af|menuBar::start-icon
content:url(/skins/mycompany/skin_images/menuBarStart.png);
width: 17px;
height: 20px;
af|menuBar::end-icon
content:url(/skins/mycompany/skin_images/menuBarEnd.png);
width: 38px;
height: 20px;
af|menuBar::background-icon
content:url(/skins/mycompany/skin_images/menuBarBackground.png);
width: 1px;
height: 20px;
}

I have sloved it with a menutab in a menubar
<af:menuBar>
<af:menuTabs>
<af:commandMenuItem text="Hardware" />
<af:commandMenuItem text="Software" selected="true"/>
<af:commandMenuItem text="trala trala"/>
<af:commandMenuItem text="traliere"/>
</af:menuTabs>
</af:menuBar>

Similar Messages

  • Problem with Menubars

    I'v got an enormous problem with my menu bar...
    I can put code here...but it's so messy that nobody but me can read it :p
    So what i wanted to ask is...does anyone got a little project... with a menubar and the possibility to switch from one menu and the other menu.
    Description of my project->
    1) Logging in as administrator-logging in as user
    2) Frame with lots of options
    3) Underneath the frame: tabbed Panes...
    --->biggest problem: to activate one tabbed pane by pressing a button on the menubar, in the meanwhile another tabbed pane is deactivated.
    --->smaller problem:some buttons has to be disabled if you are logged in as a normal user.
    If you can help me...
    Thanx in advance

    when you click on the menu item (via actionPerformed) use xxxxTabbedThingy.setEnabled(false) on one tabbed pane and true on the other.
    I think just using the .setEnabled for these items will help you out.

  • IE6 (not IE7) problem with menubar

    I have found a lot of topics discussing Spry menubar
    probblems on IE browsers, but I have not been able to find the
    exact issue I have.
    I he created a Spry menubar (without any css o js
    modifications) using the buttons of Dreamweaver (really simple
    procedure no place for mistakes). It displays well in Firefox and
    IE7, but it does not in IE6. Using that browser the menu does not
    appear in the possition is supposed to be and moves freely all over
    the page when you rollover it or scroll the page.
    I believe the solution for this problem is very simple once
    you know it, so if anyone knows how to solve this issue I will be
    bery gratefull.

    HI and welcome to Apple Discussions...
    Try deleting this file.
    com.apple.systemiuserver.plist
    ~/Library/Preferences.
    Move that file to the Trash and restart your Mac.
    If you need help finding .plist files and their paths... go here.
    http://web.me.com/carolynssamit/CarolynsMac_Blog/Path_for_.plistfiles.html
    Carolyn

  • Internet Explorer Problem with Spry Menu Bar

    http://www.cloud9industries.com/clients/jewelryworld/index4.html
    OK here we go
    #1) In IE, the toolbar doesn't appear with the same decreased
    opacity as it does in Firefox and Safari. I'm using a png
    background image with a transparent background and I've defined the
    background color the same as the lower layer's color. Any ideas?
    #2) THE BIG ISSUE - IE doesn't display the drop down portions
    of the menu properly as they display horizontally. If the cursor
    moves into the <li> from another <li> the menu displays
    as aforementioned. If the cursor moves into the <li> from
    outside the menu bar, the menu bar behaves properly.
    This is the first page I've done with a Spry menu bar as it
    seems the former navigation bar process has been removed from
    Dreamweaver. Any tips will be greatly appreciated.
    Thanks,
    cloud9industries

    Hi,
    I took a look over your page and I noticed that you are using
    a very old spry version 1.4. The current released version is Spry
    1.6 and contains some major bug fixes for Menu Bar widget.
    Please update to this last Spry version. You can download the
    new files from
    here.
    The problem with the transparent background is an IE6 problem
    which doesn't support transparent backgrounds. This problem is
    fixed on IE7 and I check it and it works there.
    Please let us know if you still have problems with MenuBar
    after updating it to the new version
    Thanks,
    Diana

  • Problem with the MenuBar and how can i delete a own component out of the storage

    Hello,
    I opened this thread in the category "Flex Builder 2", but
    under this category my questions fit better.
    I have a problem with the MenuBar and a question to delete a
    component out of storage.
    1. We have implemented the MenuBar, which was filled
    dynamically with XML data.
    Sporadically it will appear following fault, if we "mousover"
    the root layer.
    RangeError: Error #2006: Der angegebene Index liegt
    außerhalb des zulässigen Bereichs.
    at flash.display::DisplayObjectContainer/addChildAt()
    at mx.managers::SystemManager/
    http://www.adobe.com/2006/flex/mx/internal::rawChildren_addChildAt()
    at mx.managers::SystemManager/addChild()
    at mx.managers::PopUpManager$/addPopUp()
    at mx.controls::Menu/show()
    at mx.controls::MenuBar/::showMenu()
    at mx.controls::MenuBar/::mouseOverHandler()
    Here a abrid ged version of our XML to create the MenuBar:
    <Menuebar>
    <menu label="Artikel">
    <menu label="Artikel anlegen" data="new_article" />
    <menu label="Artikel bearbeiten" data="edit_article" />
    <menu label="Verpackung">
    <menu label="Verpackung anlegen" data="new_package" />
    <menu label="Verpackung bearbeiten" data="edit_package"
    />
    </menu>
    <menu label="Materialgruppe">
    <menu label="Materialgruppe anlegen"
    data="new_materialgroup" />
    <menu label="Materialgruppe bearbeiten"
    data="edit_materialgroup" />
    </menu>
    </menu>
    </Menuebar>
    It is a well-formed XML.
    2. Delete a component out of storage
    We have some own components (basically forms), which will be
    created and shown by an construct e.g.
    var myComponent : T_Component = new T_Component ;
    this.addChild(myComponent)
    Some of our forms will be created in an popup. On every call
    of the popup, we lost 5 mb or more, all childs on the windows will
    be removed by formname.removeAllChild();
    What cann we do, that the garbage collector will dispose this
    objects.
    Is there a way to show all objects with references (NOT
    NULL)?
    I have read in the Flex Help, that
    this.removeChild(myComponent) not delete the form and/or object out
    of the storage.
    Rather the object must be destroyed.
    It is sufficient to call delete(myComponent) about remove
    this object out of the storage as the case may be that the
    garbage-collector remove this object at any time?
    Or how can I destroy a component correctly. What happens with
    the widgets on this component e.g. input fields or datagrids?
    Are they also being deleted?
    Thanks for your help.
    Matze

    If you mena the "photo Library" then you cannot delete it.
    This is how iphone handles photos.  There are not two copies.  There a re simply two places from which to access the same photos.  ALL photos synced to iphone can be accessed via Photo Library.  Those same pics can be accessed via their individual folder.

  • Having problems with submenus displaying on MenuBar

    I've been inserted the MenuBar several times and have no problem with the main menus, but the submenus will not display.  They show up in the property box, but not on the page.  Any ideas?

    Thank you for posting the link, this saves us a lot of time.
    When I try to find
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    or
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    I get an Error 404-Not Found message.
    This simply means that you have either not uploaded the files or uploaded them to the wrong ditectory.
    Gramps

  • Problem with an update page.

    I have a problem with an update page on my website
    Here's how it work
    values are defualted in from the advert table  - this works fine
    I should then be able to change the fields and click on the update button
    This works fine but ONLY when the O_year field is populated. 
    There doesn't seem to be anything special about the O_year field
    I thought spry text validation would of been causing the issues, but I removed them and have the same problem.
    For some reason the POST_MMupdate value is not being set to 'form4', which it is doing if O_year is set.
    Please can someone have a look at this, code,
    Also, is there a way of 'stepping through' dreamweaver code to debug it?
    Thanks
    Adam
    $colname_Advert = "-1";
    if (isset($_GET['advert_id'])) {
      $colname_Advert = $_GET['advert_id'];
    mysql_select_db($database_guitarswap_db, $guitarswap_db);
    $query_Advert = sprintf("SELECT * FROM advert WHERE advert_id = %s", GetSQLValueString($colname_Advert, "int"));
    $Advert = mysql_query($query_Advert, $guitarswap_db) or die(mysql_error());
    $row_Advert = mysql_fetch_assoc($Advert);
    $totalRows_Advert = mysql_num_rows($Advert);
    if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "form4"))
        //Сheck that we have a file
    if((!empty($_FILES["PictureLocation"])) && ($_FILES['PictureLocation']['error'] == 0))
          //Check if the file is JPEG image and it's size is less than 350Kb
          $filename = basename($_FILES["PictureLocation"]["name"]);
          $ext = substr($filename, strrpos($filename, '.') + 1);
          if (($ext == "jpg") && ($_FILES["PictureLocation"]["type"] == "image/jpeg") &&
        ($_FILES["PictureLocation"]["size"] < 350000))
            //Determine the path to which we want to save this file
              $newname = dirname(__FILE__).'/upload/'.$filename;
              //Check if the file with the same name is already exists on the server
              if (!file_exists($newname))
                //Attempt to move the uploaded file to it's new place
                if ((move_uploaded_file($_FILES['PictureLocation']['tmp_name'],$newname)))
                       // echo "It's done! The file has been saved as: ".$newname;
                else
                       // echo "Error: A problem occurred during file upload!";
            else
                 // echo "Error: File ".$_FILES["PictureLocation"]["name"]." already exists";
          else
             // echo "Error: Only .jpg images under 350Kb are accepted for upload";
        else
         // echo "Error: No file uploaded";
        $filename=$row_Advert['PictureLocation'];
        // set default opentoalloffers
    if (!isset($_POST['checkopentoalloffers']))
        $_POST['checkopentoalloffers'] = 'n';
      $updateSQL = sprintf("UPDATE advert SET PictureLocation=%s, O_Make=%s, O_Model=%s, O_Country=%s, O_Year=%s, O_Colour=%s, O_Body=%s, O_Neck=%s, O_Fingerboard=%s, O_Pickups=%s, `value`=%s, `condition`=%s,  W_Make=%s, W_Model=%s, W_Country=%s, W_Year=%s, W_Colour=%s, W_Body=%s, W_Neck=%s, W_Fingerboard=%s, W_Pickups=%s, Comments=%s, opentoalloffers=%s, ChangeFlg = %s  WHERE advert_id=%s",
                           GetSQLValueString($filename, "text"),
                           GetSQLValueString($_POST['O_Make'], "text"),
                           GetSQLValueString($_POST['O_Model'], "text"),
                           GetSQLValueString($_POST['O_Country'], "text"),
                           GetSQLValueString($_POST['O_Year'], "date"),
                           GetSQLValueString($_POST['O_Colour'], "text"),
                           GetSQLValueString($_POST['O_Body'], "text"),
                           GetSQLValueString($_POST['O_Neck'], "text"),
                           GetSQLValueString($_POST['O_Fingerboard'], "text"),
                           GetSQLValueString($_POST['O_Pickups'], "text"),
                           GetSQLValueString($_POST['value'], "int"),
                           GetSQLValueString($_POST['condition'], "text"),
                           GetSQLValueString($_POST['W_Make'], "text"),
                           GetSQLValueString($_POST['W_Model'], "text"),
                           GetSQLValueString($_POST['W_Country'], "text"),
                           GetSQLValueString($_POST['W_Year'], "date"),
                           GetSQLValueString($_POST['W_Colour'], "text"),
                           GetSQLValueString($_POST['W_Body'], "text"),
                           GetSQLValueString($_POST['W_Neck'], "text"),
                           GetSQLValueString($_POST['W_Fingerboard'], "text"),
                           GetSQLValueString($_POST['W_Pickups'], "text"),
                           GetSQLValueString($_POST['Comments'], "text"),
                           GetSQLValueString($_POST['checkopentoalloffers'], "text"),
                           GetSQLValueString('y', "text"),
                           GetSQLValueString($_POST['advert_id'], "int"));
      mysql_select_db($database_guitarswap_db, $guitarswap_db);
      $Result1 = mysql_query($updateSQL, $guitarswap_db) or die(mysql_error());
        $updateGoTo = "Member2.php";
         if (isset($_SERVER['QUERY_STRING'])) {
           $updateGoTo .= (strpos($updateGoTo, '?')) ? "&" : "?";
           $updateGoTo .= $_SERVER['QUERY_STRING'];
         header(sprintf("Location: %s", $updateGoTo));
    ?>
    <!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">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <link href="Layout3.css" rel="stylesheet" type="text/css" /><!--[if IE 5]>
    <style type="text/css">
    /* place css box model fixes for IE 5* in this conditional comment */
    .twoColFixLtHdr #sidebar1 { width: 230px; }
    </style>
    <![endif]--><!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .twoColFixLtHdr #sidebar1 { padding-top: 30px; }
    .twoColFixLtHdr #mainContent { zoom: 1; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]-->
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    body {
        background-color: #FFF;
        margin-left: 20px;
    .twoColFixLtHdr #container #main3 #form1 div fieldset {
        border: thin ridge #CCC;
    -->
    </style>
    <script type="text/javascript">
    <!--
    function MM_goToURL() { //v3.0
      var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
      for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
    //-->
    </script>
    <link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" />
    </head>
    <body class="twoColFixLtHdr">
    <div id="container">
      <div id="header">
        <div id="Righty">
          <ul id="MenuBar2" class="MenuBarHorizontal">
        <li><a href="index.php">Search</a>      </li>
        <li><a href="Member2.php">Members</a></li>
      </ul>
      <p> </p>
    </div>
    <span id="LoginDiv">
        <?php
          if (isset($_SESSION['MM_Username']))
            echo "hello ". $_SESSION['MM_Username']. "";
            echo " <a href='Logout.php'>Log out</a> ";
        else
            echo "
                <a href='Login.php'>Login</a> / <a href='Register.php'>Register</a>
        ?>
        </a></span>
    <div id="Middle">
      <h1 align="center">GuitarSwap</h1>
    </div>
      </div>
      <div id="sidebar1">
        <h4>Members Area</h4>
        <ul id="MenuBar1" class="MenuBarVertical">
          <li><a href="Member2.php">My Adverts</a></li>
          <li><a href="NewAdvert.php">Create new Advert</a></li>
          <li><a href="UpdateUserDets.php">My Account</a></li>
        </ul>
        <h3>  </h3>
      </div>
      <div id="mainContent">
        <h4>Update Advert</h4>
        <!-- end #mainContent -->
      </div>
      <!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats -->
      <div id="main3">
        <div id="main">
          <fieldset>
            <legend>Please update advert details and confirm</legend>
            <form action="<?php echo $editFormAction; ?>" enctype="multipart/form-data" method="post" name="form4" id="form4">
              <input type="hidden" name="advert_id" value="<?php echo $row_Advert['advert_id']; ?>" />
              <p></p>
              <table width="650" align="center">
                <tr valign="baseline">
                  <td width="17" rowspan="15" valign="middle" nowrap="nowrap"><?php echo "<img src='upload/" .$row_Advert['PictureLocation']."' width='64' height='180'/>" ?></td>
                  <td width="133" align="right" nowrap="nowrap"> </td>
                  <td width="240" align="center" bgcolor="#CCCCCC"><strong>Offered</strong></td>
                  <td width="240" align="center" bgcolor="#CCCCCC"><strong>Wanted</strong></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"><strong>Make:</strong></td>
                  <td bgcolor="#CCFFCC"><input name="O_Make" type="text" value="<?php echo $row_Advert['O_Make']; ?>" size="30" maxlength="15" /></td>
                  <td bgcolor="#CCFFFF"><input name="W_Make" type="text" value="<?php echo $row_Advert['W_Make']; ?>" size="30" maxlength="15" /></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"><strong>Model:</strong></td>
                  <td bgcolor="#CCFFCC"><input name="O_Model" type="text" value="<?php echo $row_Advert['O_Model']; ?>" size="30" maxlength="30" /></td>
                  <td bgcolor="#CCFFFF"><input name="W_Model" type="text" value="<?php echo $row_Advert['W_Model']; ?>" size="30" maxlength="30" /></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"><strong>Country:</strong></td>
                  <td bgcolor="#CCFFCC"><input name="O_Country" type="text" value="<?php echo $row_Advert['O_Country']; ?>" size="30" maxlength="15" /></td>
                  <td bgcolor="#CCFFFF"><input name="W_Country" type="text" value="<?php echo $row_Advert['W_Country']; ?>" size="30" maxlength="15" /></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"><strong>Year:</strong></td>
                  <td bgcolor="#CCFFCC"><span id="sprytextfield1">
                  <input name="O_Year" type="text" value="<?php echo $row_Advert['O_Year']; ?>" size="4" maxlength="4" />
    <span class="textfieldInvalidFormatMsg">Invalid format.</span><span class="textfieldMinValueMsg">The entered value is less than the minimum required.</span><span class="textfieldMaxValueMsg">The entered value is greater than the maximum allowed.</span></span></td>
                  <td bgcolor="#CCFFFF"><span id="sprytextfield2">
                  <input name="W_Year" type="text" value="<?php echo $row_Advert['W_Year']; ?>" size="4" maxlength="4" />
    <span class="textfieldInvalidFormatMsg">Invalid format.</span><span class="textfieldMinValueMsg">The entered value is less than the minimum required.</span><span class="textfieldMaxValueMsg">The entered value is greater than the maximum allowed.</span></span></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"><strong>Colour:</strong></td>
                  <td bgcolor="#CCFFCC"><input name="O_Colour" type="text" value="<?php echo $row_Advert['O_Colour']; ?>" size="30" maxlength="15" /></td>
                  <td bgcolor="#CCFFFF"><input name="W_Colour" type="text" value="<?php echo $row_Advert['W_Colour']; ?>" size="30" maxlength="15" /></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"><strong>Body:</strong></td>
                  <td bgcolor="#CCFFCC"><input name="O_Body" type="text" value="<?php echo $row_Advert['O_Body']; ?>" size="30" maxlength="15" /></td>
                  <td bgcolor="#CCFFFF"><input name="W_Body" type="text" value="<?php echo $row_Advert['W_Body']; ?>" size="30" maxlength="15" /></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"><strong>Neck:</strong></td>
                  <td bgcolor="#CCFFCC"><input name="O_Neck" type="text" value="<?php echo $row_Advert['O_Neck']; ?>" size="30" maxlength="15" /></td>
                  <td bgcolor="#CCFFFF"><input name="W_Neck" type="text" value="<?php echo $row_Advert['W_Neck']; ?>" size="30" maxlength="15" /></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"><strong>Fingerboard:</strong></td>
                  <td bgcolor="#CCFFCC"><input name="O_Fingerboard" type="text" value="<?php echo $row_Advert['O_Fingerboard']; ?>" size="30" maxlength="15" /></td>
                  <td bgcolor="#CCFFFF"><input name="W_Fingerboard" type="text" value="<?php echo $row_Advert['W_Fingerboard']; ?>" size="30" maxlength="15" /></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"><strong>Pickups:</strong></td>
                  <td bgcolor="#CCFFCC"><input name="O_Pickups" type="text" value="<?php echo $row_Advert['O_Pickups']; ?>" size="30" maxlength="15" /></td>
                  <td bgcolor="#CCFFFF"><input name="W_Pickups" type="text" value="<?php echo $row_Advert['W_Pickups']; ?>" size="30" maxlength="15" /></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"><strong>Condition:</strong></td>
                  <td bgcolor="#CCFFCC"><label for="condition">
                    <select name="condition" size="1" id="condition">
                      <option selected="selected" value="" <?php if (!(strcmp("", $row_Advert['condition']))) {echo "selected=\"selected\"";} ?>>---select---</option>
                      <option value="immaculate" <?php if (!(strcmp("immaculate", $row_Advert['condition']))) {echo "selected=\"selected\"";} ?>>immaculate</option>
                      <option value="excellent" <?php if (!(strcmp("excellent", $row_Advert['condition']))) {echo "selected=\"selected\"";} ?>>excellent</option>
                      <option value="good" <?php if (!(strcmp("good", $row_Advert['condition']))) {echo "selected=\"selected\"";} ?>>good</option>
                      <option value="well used" <?php if (!(strcmp("well used", $row_Advert['condition']))) {echo "selected=\"selected\"";} ?>>well used</option>
                      <option value="poor" <?php if (!(strcmp("poor", $row_Advert['condition']))) {echo "selected=\"selected\"";} ?>>poor</option>
                  </select>
                  </label></td>
                  <td bgcolor="#FFFFFF"> </td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"><strong>Value:</strong></td>
                  <td bgcolor="#CCFFCC"><span id="sprytextfield3">
                  <input name="value" type="text" value="<?php echo $row_Advert['value']; ?>" size="11" maxlength="11" />
    <span class="textfieldInvalidFormatMsg">Invalid format.</span></span></td>
                  <td bgcolor="#FFFFFF"> </td>
                </tr>
                <tr valign="baseline">
                  <td align="right" valign="top" nowrap="nowrap"><strong>Comments:</strong></td>
                  <td bgcolor="#CCFFCC"><textarea name="Comments" cols="25" rows="3"><?php echo $row_Advert['Comments']; ?></textarea></td>
                  <td bgcolor="#FFFFFF"> </td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"><strong>Picture location</strong></td>
                  <td bgcolor="#CCFFCC"><label for="checkopentoalloffers"></label>                <input type="file" name="PictureLocation" value="<?php echo $row_Advert['PictureLocation']; ?>" size="20" /></td>
                  <td bgcolor="#FFFFFF"> </td>
                </tr>
                <tr valign="baseline">
                  <td height="26" align="right" nowrap="nowrap"><strong>Open to all offers:</strong></td>
                  <td bgcolor="#CCFFCC"><input name="checkopentoalloffers" type="checkbox" id="checkopentoalloffers" value="y" <?php if (!(strcmp($row_Advert['opentoalloffers'],"y"))) {echo "checked=\"checked\"";} ?> /></td>
                  <td bgcolor="#FFFFFF"> </td>
                </tr>
              </table>
              <p> </p>
              <div id="submitdiv">
                <input type="hidden" name="MM_update" value="form4" />
                <input name="submit button" type="submit" id="submit button" value="Update Advert" />
              </div>
              <div id="exitdiv">
                <label for="button15"></label>
                <input name="button" type="button" id="button15" onclick="MM_goToURL('parent','Member2.php');return document.MM_returnValue" value="Exit" />
                <label for="button16"></label>
              </div>
              <p> </p>
            </form>
          </fieldset>
          <script type="text/javascript">
    var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1", "integer", {validateOn:["blur"], minValue:1900, maxValue:2010, isRequired:false});
    var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1", "integer", {validateOn:["blur"], minValue:1900, maxValue:2010});
    var sprytextfield2 = new Spry.Widget.ValidationTextField("sprytextfield2", "integer", {minValue:1900, maxValue:2010, validateOn:["blur"], isRequired:false});
    var sprytextfield3 = new Spry.Widget.ValidationTextField("sprytextfield3", "currency", {validateOn:["blur"], isRequired:false});
          </script>
          <br class="clearfloat" />
      <!-- end #container -->
    </div></div></div>
    <script type="text/javascript">
    <!--
    var  = new Spry.Widget.MenuBar("", {imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    var MenuBar2 = new Spry.Widget.MenuBar("MenuBar2", {imgDown:"../SpryAssets/SpryMenuBarDownHover.gif", imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </body>
    </html>
    <?php
    mysql_free_result($Advert);
    if (is_resource($Result1)) mysql_free_result($Result1);
    ?>

    Please note,
    Removing I investigated spry a little more, in the end I settled for removing spry altogether,
    Maybe it was because the text field in a $GET (for the default) AND a $PUT (for the update)

  • Problem with .css for Spry menu

    Hi,
    I am having a problem with the Spry menu I have created and edited. All looks great in the Design view of Photoshop however under the Live view or opened using a browser the menu reverts to a list of hyperlinks!
    I have checked the .css link but when using Firefox CSS editor the CSS file for the menu is simply blank?
    Any suggestions would be great!
    Thanks,
    Ozan

    Your SpryMenuBarHorizontal.css needs to be within your SpryAssets folder, which is where it would have been put automatically when you inserted the SpryMenuBar. You can move it back in there using the Files Panel.
    Here is what the file structure needs to look like:
    SpryAssets
    SpryMenuBar.js
    SpryMenuBarHorizontal.css
    cssstyletemplate.css
    index.html (or whatever the name of your page is)
    Hierarchally, the top level of your root folder will show folders for SpryAssets and css and the html pages will be on the same level.
    The Spry assets themselves will be down a level IN the SpryAssets folder, as the styletemplate.css file will be down a level IN the css folder.
    In the head of the document, you will have
         <link rel="stylesheet" type="text/css" href="css/styletemplate.css" />
         <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"> </script>
         <link rel="stylesheet" type="text/css" href="SpryAssets/SpryMenuBarHorizontal.css" />
    At the end, remove the slash before Spry inside the imgDown and imgRight sections:
         <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    Compare these with your files and file structure and correct any small typos, and they should be correctly linked.
    Beth

  • Problem with Twitter for Mac notifications

    Hello,
    I have a strange problem with Twitter for Mac. On both my home and office Macs. New posts appear in app window but there aren't any notifications even though notifications are set in preferences to show in both dock and menubar. Perhaps anyone noticed similar strange behaviour? I didn't find anything similar on Twitter forums.
    Thanks in advance.

    Solved by
    Dr.AvituvOct 20, 2014 11:09 PM
    go to Terminal and post this:
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchSe rvices.framework/support/lsregister -kill -seed
    if it doesn't have that specific directory try this:
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchSe rvices.framework/Versions/A/Support/lsregister -kill -seed
    once the scanning is done (can be short or long, depends on how heavy your system is) RESTART the computer.
    when you're back, go to Apple>system preferences>extensions.... guess who's there.
    I hope it helped.
    The Doctor.
    iMac, OS X Yosemite (10.10)
    To restore Actions extensions for good and other stuff
    THANKS!

  • Problem with SystemUIServer

    Greetings:
    I am having a problem with SystemUIServer - it keeps crashing. The error log is displayed below:
    Process: SystemUIServer [67034]
    Path: /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
    Identifier: com.apple.systemuiserver
    Version: 1.5.5 (248.9)
    Build Info: SystemUIServer-2480900~13
    Code Type: X86 (Native)
    Parent Process: launchd [65]
    Date/Time: 2009-05-30 04:29:04.022 -0400
    OS Version: Mac OS X 10.5.7 (9J61)
    Report Version: 6
    Anonymous UUID: 20D97D81-51AD-4556-B42E-1E666316B8AC
    Exception Type: EXC_ARITHMETIC (SIGFPE)
    Exception Codes: EXCI386DIV (divide by zero)
    Crashed Thread: 6
    Thread 0:
    0 libSystem.B.dylib 0x96995286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9699ca7c mach_msg + 72
    2 com.apple.CoreGraphics 0x95ee2f09 _CGSSetWindowShapeInline + 232
    3 com.apple.CoreGraphics 0x95e2b7fb CGSShapeWindow + 1242
    4 com.apple.CoreGraphics 0x95e2b31c CGSSetWindowShapeWithWeighting + 76
    5 com.apple.AppKit 0x932018ee _NXPlaceWindow + 183
    6 com.apple.AppKit 0x93139829 -[NSWindow _setFrame:updateBorderViewSize:] + 614
    7 com.apple.AppKit 0x93139166 -[NSWindow _oldPlaceWindow:] + 1146
    8 com.apple.AppKit 0x93138a23 -[NSWindow _setFrameCommon:display:stashSize:] + 1569
    9 com.apple.AppKit 0x931383fa -[NSWindow setFrame:display:] + 78
    10 com.apple.AppKit 0x930ddd40 _NXAllocateImageCache + 2196
    11 com.apple.AppKit 0x930dd265 -[NSCachedImageRep _initWithSize:depth:separate:alpha:allowDeep:] + 323
    12 com.apple.AppKit 0x930e0497 -[NSImage _focusOnCache:creatingWithSizeInPixels:] + 659
    13 com.apple.AppKit 0x930dffe5 -[NSImage _cacheRepresentation:toSizeInPixels:stayFocused:] + 128
    14 com.apple.AppKit 0x930d87f7 -[NSImage drawInRect:fromRect:operation:fraction:] + 5345
    15 com.apple.AppKit 0x9351bbb3 -[NSImage _createCGImageAndRect:forDrawingInRect:inReferenceContext:] + 1928
    16 com.apple.AppKit 0x9351c078 -[NSImage _copyCGImageAndRect:needsFlip:isCached:forDrawingInRect:inReferenceContext:requ ireNoFlipNecessary:] + 883
    17 com.apple.AppKit 0x9351de8c -[NSImage _drawMappingAlignmentRectToRect:withState:backgroundStyle:operation:fraction:fl ip:] + 1395
    18 com.apple.AppKit 0x93457296 NSDrawImage + 446
    19 com.apple.AppKit 0x9311a901 -[NSCell drawInteriorWithFrame:inView:] + 657
    20 ...apple.menuextra.TimeMachine 0x14f9d39b _HandleProgressNotify + 11277
    21 ...apple.menuextra.TimeMachine 0x14f9d499 _HandleProgressNotify + 11531
    22 com.apple.AppKit 0x9314c22c -[NSView _drawRect:clip:] + 3853
    23 com.apple.AppKit 0x9314ad23 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1050
    24 com.apple.AppKit 0x9314b0ba -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969
    25 com.apple.AppKit 0x9314b0ba -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969
    26 com.apple.AppKit 0x9314b0ba -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969
    27 com.apple.AppKit 0x93149679 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 759
    28 com.apple.AppKit 0x93231929 -[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 340
    29 com.apple.AppKit 0x93145adf -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3090
    30 com.apple.AppKit 0x930864b3 -[NSView displayIfNeeded] + 933
    31 com.apple.AppKit 0x93086061 -[NSWindow displayIfNeeded] + 189
    32 com.apple.AppKit 0x93085e84 _handleWindowNeedsDisplay + 436
    33 com.apple.CoreFoundation 0x91a5d942 __CFRunLoopDoObservers + 466
    34 com.apple.CoreFoundation 0x91a5ec9c CFRunLoopRunSpecific + 844
    35 com.apple.CoreFoundation 0x91a5fc78 CFRunLoopRunInMode + 88
    36 com.apple.HIToolbox 0x966bb28c RunCurrentEventLoopInMode + 283
    37 com.apple.HIToolbox 0x966bafde ReceiveNextEventCommon + 175
    38 com.apple.HIToolbox 0x966baf19 BlockUntilNextEventMatchingListInMode + 106
    39 com.apple.AppKit 0x93083d0d _DPSNextEvent + 657
    40 com.apple.AppKit 0x930835c0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    41 com.apple.AppKit 0x9307c5fb -[NSApplication run] + 795
    42 com.apple.systemuiserver 0x00005d84 0x1000 + 19844
    43 com.apple.systemuiserver 0x00005886 0x1000 + 18566
    Thread 1:
    0 libSystem.B.dylib 0x9699c46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x969c6dcd pthreadcondwait$UNIX2003 + 73
    2 ...e.ImageCaptureNotifications 0x000d4e9e _StaticProcessIOObjectsArray + 95
    3 libSystem.B.dylib 0x969c6155 pthreadstart + 321
    4 libSystem.B.dylib 0x969c6012 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x969c59c6 kevent + 10
    1 libSystem.B.dylib 0x969c6155 pthreadstart + 321
    2 libSystem.B.dylib 0x969c6012 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x96995286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9699ca7c mach_msg + 72
    2 com.apple.CoreFoundation 0x91a5f04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x91a5fc78 CFRunLoopRunInMode + 88
    4 com.apple.audio.CoreAudio 0x92fe25f8 HALRunLoop::OwnThread(void*) + 160
    5 com.apple.audio.CoreAudio 0x92fe2480 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x969c6155 pthreadstart + 321
    7 libSystem.B.dylib 0x969c6012 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x9699c46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x969c6dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.Foundation 0x903c8942 -[NSCondition wait] + 210
    3 com.apple.Foundation 0x9038128a -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 938
    4 com.apple.Foundation 0x903d48f8 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 184
    5 com.apple.systemuiserver 0x0002d837 0x1000 + 182327
    6 com.apple.Foundation 0x90380e0d -[NSThread main] + 45
    7 com.apple.Foundation 0x903809b4 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x969c6155 pthreadstart + 321
    9 libSystem.B.dylib 0x969c6012 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x9699c46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x969c6dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.QuartzCore 0x91d9aa09 fefragmentthread + 54
    3 libSystem.B.dylib 0x969c6155 pthreadstart + 321
    4 libSystem.B.dylib 0x969c6012 thread_start + 34
    Thread 6 Crashed:
    0 com.apple.systemuiserver 0x0002595d 0x1000 + 149853
    1 com.apple.systemuiserver 0x00025bea 0x1000 + 150506
    2 com.apple.systemuiserver 0x000267c6 0x1000 + 153542
    3 com.apple.DiskArbitration 0x9418a6df _DADispatchCallback + 273
    4 com.apple.DiskArbitration 0x9418a2d9 _DASessionCallback + 309
    5 com.apple.CoreFoundation 0x91a3b1c5 __CFMachPortPerform + 117
    6 com.apple.CoreFoundation 0x91a5f888 CFRunLoopRunSpecific + 3896
    7 com.apple.CoreFoundation 0x91a5fc78 CFRunLoopRunInMode + 88
    8 com.apple.systemuiserver 0x00026a6c 0x1000 + 154220
    9 com.apple.Foundation 0x90380e0d -[NSThread main] + 45
    10 com.apple.Foundation 0x903809b4 _NSThread__main_ + 308
    11 libSystem.B.dylib 0x969c6155 pthreadstart + 321
    12 libSystem.B.dylib 0x969c6012 thread_start + 34
    Thread 6 crashed with X86 Thread State (32-bit):
    eax: 0x00007e9b ebx: 0x0055cc60 ecx: 0x00000000 edx: 0x00000000
    edi: 0x0059cd20 esi: 0x0059c450 ebp: 0xb033b468 esp: 0xb033b200
    ss: 0x0000001f efl: 0x00010246 eip: 0x0002595d cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x15023000
    Binary Images:
    0x1000 - 0x52ff3 com.apple.systemuiserver 1.5.5 (248.9) <f8a92b652c2aa54f46f8f5c32449c1eb> /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
    0x6a000 - 0x6efff com.apple.framework.SystemUIPlugin 1.5 (20) <693b3808ff85a09a6c5fb1de9a24cc3f> /System/Library/PrivateFrameworks/SystemUIPlugin.framework/Versions/A/SystemUIP lugin
    0x78000 - 0xa3fff com.apple.framework.NetworkConfig 2.3 (2.3) <d31639730be1f32d1ee71dbd8ffcf09e> /System/Library/PrivateFrameworks/NetworkConfig.framework/Versions/A/NetworkCon fig
    0xcc000 - 0xd8ffb com.apple.ImageCaptureNotifications 4.0.1 (4.0.1) /System/Library/PrivateFrameworks/ICANotifications.framework/Versions/A/ICANoti fications
    0xf6000 - 0xfafff com.apple.iPod 1.5 (15) <808d4802c643ebbf266f508935200c99> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
    0x101000 - 0x103fff com.apple.BezelServicesFW 1.4.929 (1.4.929) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x10a000 - 0x1d3fe5 com.apple.DiscRecording 4.0.5 (4050.4.1) <503c77a4da92eb3262d3fbfe46e74f20> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x23e000 - 0x337fe0 com.apple.DiskImagesFramework 10.5.5 (199) <221119fb6b335af96fb0e85a9403cbc5> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x39d000 - 0x3c7ff8 com.apple.framework.Apple80211 5.2.7 (527.2) <5982190f9caa25fca18b8753671d0d64> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x3d8000 - 0x3e2ffc com.apple.framework.AppleTalk 1.2.0 (???) <e8d0dc99744c2eb3aafefe463d3daf43> /System/Library/Frameworks/AppleTalk.framework/Versions/A/AppleTalk
    0x3e9000 - 0x41ffff com.apple.MediaKit 9.1 (401) <62f8d49f7d7eb4096d74377d0b7b51d5> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x430000 - 0x45bffb libcurl.4.dylib ??? (???) <92c23039fbe46c86a58d55d4b9d2d3e2> /usr/lib/libcurl.4.dylib
    0x4aa000 - 0x4adfff com.apple.audio.AudioIPCPlugIn 1.0.6 (1.0.6) <63c9ef8da77eb8768e03991ec0e413fd> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x4b3000 - 0x4b8fff com.apple.audio.AppleHDAHALPlugIn 1.6.8 (1.6.8a3) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x14e6e000 - 0x14e7fffa com.apple.menuextra.airport 5.3.2 (532.3) <dde78ca7918d3edfb70b8b6fe57d2cb2> /System/Library/CoreServices/Menu Extras/AirPort.menu/Contents/MacOS/AirPort
    0x14e8a000 - 0x14e95ff7 com.apple.menuextra.bluetooth 2.1.6 (2.1.6f8) <8ecdc9f49ac25d3053470e757298fa13> /System/Library/CoreServices/Menu Extras/Bluetooth.menu/Contents/MacOS/Bluetooth
    0x14e9f000 - 0x14f13ff7 com.apple.Bluetooth 2.1.6 (2.1.6f8) <2efdc5543023a1c9b534269d1153d8d8> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x14f61000 - 0x14f7dfff com.apple.BluetoothUI 2.1.6 (2.1.6f8) <89d3e2503e2255d40fc25886bb4a8019> /System/Library/Frameworks/IOBluetoothUI.framework/Versions/A/IOBluetoothUI
    0x14f98000 - 0x14fa4ff7 com.apple.menuextra.TimeMachine 10.5.7 (10.5) <ba85317e0c9608ccdba50230c833d2c2> /System/Library/CoreServices/Menu Extras/TimeMachine.menu/Contents/MacOS/TimeMachine
    0x14ff1000 - 0x14ff6ff3 libCGXCoreImage.A.dylib ??? (???) <3a78abc535c80f9819931b670da804a2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <1c2a016b2ac25fe8b7575f51e49b9334> /usr/lib/dyld
    0x90003000 - 0x90027feb libssl.0.9.7.dylib ??? (???) <8084593b773bec8f2b9614fd23c5ed73> /usr/lib/libssl.0.9.7.dylib
    0x9005f000 - 0x90083fff libxslt.1.dylib ??? (???) <6a58a8724941e8a0cfeb0cae28ea3f37> /usr/lib/libxslt.1.dylib
    0x90089000 - 0x90089ff8 com.apple.ApplicationServices 34 (34) <ee7bdf593da050bb30c7a1fc446eb8a6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x900d5000 - 0x900e5fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <273d96ff861dc68be659c07ef56f599a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x900e6000 - 0x9010eff7 com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x9010f000 - 0x90138fff libcups.2.dylib ??? (???) <1b0435164b9dc6c773d0b1f24701e554> /usr/lib/libcups.2.dylib
    0x90139000 - 0x90221ff3 com.apple.CoreData 100.2 (186.1) <8fb61e1714a4b8d587ce97605ad32547> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90222000 - 0x902c9feb com.apple.QD 3.11.56 (???) <a94d0f5438b730e88e5efdb233295c52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x902ca000 - 0x902e0fff com.apple.DictionaryServices 1.0.0 (1.0.0) <7d20b8d1fb238c3e71d0fa6fda18c4f7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x902e1000 - 0x90374fff com.apple.ink.framework 101.3 (86) <d4c85b5cafa8027fff042b84a8be71dc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x90376000 - 0x905f2fe7 com.apple.Foundation 6.5.8 (677.24) <aa84b0383891378c348ffa4a94853082> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x906f8000 - 0x90754ff7 com.apple.htmlrendering 68 (1.1.3) <1c5c0c417891b920dfe139385fc6c155> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x90755000 - 0x90b13fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x90b1c000 - 0x90ba8ff7 com.apple.framework.IOKit 1.5.2 (???) <97b9f9d584f48891377f0481b9104434> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90bf9000 - 0x90ed3ff3 com.apple.CoreServices.CarbonCore 786.11 (786.13) <9e2d85d52e5e2951aa4dd53c48ccc52f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90eda000 - 0x90fa1ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90fa2000 - 0x90fe1fef libTIFF.dylib ??? (???) <d4bcc9b9c508e53849d2d46bb6900922> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91015000 - 0x910c5fff edu.mit.Kerberos 6.0.13 (6.0.13) <804bd1b3f08fb57396781f012006367c> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x91195000 - 0x91228ff3 com.apple.ApplicationServices.ATS 3.7 (???) <a535fc4982d3acff6530ec25c402e679> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x91229000 - 0x9136fff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <b407f06ff9b6893899e2e399cb65c953> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91370000 - 0x91841fbe libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x91842000 - 0x9184eff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x9184f000 - 0x9187afe7 libauto.dylib ??? (???) <2e44c523b851e8e25f05d13a48070a58> /usr/lib/libauto.dylib
    0x9187b000 - 0x9195cff7 libxml2.2.dylib ??? (???) <068cab13eb4608a7c6a5fad807ee0e33> /usr/lib/libxml2.2.dylib
    0x9195d000 - 0x9195dffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9195e000 - 0x9197dffa libJPEG.dylib ??? (???) <b822342bcc764c83d4557a8b67fa0c1c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x919b0000 - 0x919b3fff com.apple.help 1.1 (36) <1a25a8fbb49a830efb31d5c0a52939cd> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x919b4000 - 0x919ccfff com.apple.openscripting 1.2.8 (???) <0129d2f750f5ddcb92f4acf8a3541952> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x919ec000 - 0x91b1ffef com.apple.CoreFoundation 6.5.6 (476.18) <2d52bab73660117571bd6486dc318f8e> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91b20000 - 0x91b9dfef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91b9e000 - 0x91bd8fe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x91ca6000 - 0x92043fef com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x92044000 - 0x9207effe com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9207f000 - 0x92109fe3 com.apple.DesktopServices 1.4.8 (1.4.8) <3065de6531ce839c7cb5b6dd70e03f4f> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9210a000 - 0x9225cff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9234f000 - 0x92350ffc libffi.dylib ??? (???) <eaf10b99a3fbc4920b175809407466c0> /usr/lib/libffi.dylib
    0x9236f000 - 0x9239cfeb libvDSP.dylib ??? (???) <4daafed78a471133ec30b3ae634b6d3e> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x923f6000 - 0x92450ff7 com.apple.CoreText 2.0.4 (???) <f0b6c1d4f40bd21505097f0255abfead> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x92451000 - 0x924a2ff7 com.apple.HIServices 1.7.0 (???) <67988718780a0a367b1bde62f5a67c4b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x924a8000 - 0x924f1fef com.apple.Metadata 10.5.2 (398.25) <7eb2df3e510cd308e91a6cf6d8e9fba5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x924f2000 - 0x924f2ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x92523000 - 0x9252fffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x926bf000 - 0x926c8fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <da2d8411921a3fd8bc898dc753b7f3ee> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x926e6000 - 0x928b7ffb com.apple.security 5.0.5 (36371) <c13e0bb1acfdcf94be4d3ee118ef190e> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x928b8000 - 0x9293fff7 libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x92d9f000 - 0x92daafe7 libCSync.A.dylib ??? (???) <9e3544fe087bb4dc760b7afe0850dd6c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x92dab000 - 0x92e4ffec com.apple.CFNetwork 438.10 (438.12) <fde64bbb20532794396fb21911ccaa98> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x92e50000 - 0x92e60ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <bc7eb703ddc37bf85adf93e35efd3947> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x92fc5000 - 0x93042feb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <5a4e6329f8dbca5dcd70924525afd24a> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93043000 - 0x93841fef com.apple.AppKit 6.5.7 (949.46) <a80f8cb62f6bdcb3bed3c8675d55881d> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93842000 - 0x93842ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x93843000 - 0x938f5ffb libcrypto.0.9.7.dylib ??? (???) <9d714c92872a93dd127ea8556b2c8945> /usr/lib/libcrypto.0.9.7.dylib
    0x938f7000 - 0x9390cffb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x939fe000 - 0x93ac9fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x93b1b000 - 0x93bfbfff libobjc.A.dylib ??? (???) <400e943f9e8a678eea22a1d1205490ee> /usr/lib/libobjc.A.dylib
    0x93bfc000 - 0x93d35ff7 libicucore.A.dylib ??? (???) <cac059ebdac7d9a63ee0f7a648c9f6cf> /usr/lib/libicucore.A.dylib
    0x93d36000 - 0x94146fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x94147000 - 0x94162ffb libPng.dylib ??? (???) <0d6b991afc831ea06f2958e5933d33dd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x94169000 - 0x94187fff libresolv.9.dylib ??? (???) <9ed809256ce8913cddc3269c2e364654> /usr/lib/libresolv.9.dylib
    0x94188000 - 0x94190fff com.apple.DiskArbitration 2.2.1 (2.2.1) <2664eeb3a4d0c95a21c089892a0ae8d0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x941ce000 - 0x941dafff libbz2.1.0.dylib ??? (???) <1922ca2214a131073cd1c7ef3ee76398> /usr/lib/libbz2.1.0.dylib
    0x941db000 - 0x9420afe3 com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9529f000 - 0x9529fff8 com.apple.Cocoa 6.5 (???) <a1bc9247cf65c20f1a44d0973cbe649c> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x952a0000 - 0x952aeffd libz.1.dylib ??? (???) <a98b3b221a72b54faf73ded3dd7000e5> /usr/lib/libz.1.dylib
    0x952f4000 - 0x952f4ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x95368000 - 0x9536afff com.apple.securityhi 3.0 (30817) <b3517782ad664a21e4fd60242e92723e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x955e1000 - 0x955f9ff7 com.apple.CoreVideo 1.6.0 (20.0) <464fc6630b483a693d1dfeff144c4733> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x95c4c000 - 0x95c59fe7 com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x95c5a000 - 0x95c5afff com.apple.Carbon 136 (136) <eb3c292d5544512f86e1e4e743c23f8e> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x95c5b000 - 0x95ce7ff7 com.apple.LaunchServices 290.3 (290.6) <bdba267184df88bd5b8e2116ea903872> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x95ce8000 - 0x95d45ffb libstdc++.6.dylib ??? (???) <f75e5133d72769de5ce6c06153fc65f6> /usr/lib/libstdc++.6.dylib
    0x95d46000 - 0x95dc5ff5 com.apple.SearchKit 1.2.1 (1.2.1) <f28f8dd0f155a6453411a0c9b5702764> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x95dd6000 - 0x95e17fe7 libRIP.A.dylib ??? (???) <69bd09fcd8d8b235cee7a405290d6818> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x95e18000 - 0x964b8fe3 com.apple.CoreGraphics 1.409.3 (???) <25dceb14af3455b768f56e8765ecf3ca> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x964b9000 - 0x964c0ffe libbsm.dylib ??? (???) <fa7ae5f1a621d9b69e7e18747c9405fb> /usr/lib/libbsm.dylib
    0x964c1000 - 0x964c1ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x96581000 - 0x96587fff com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x96588000 - 0x9658dfff com.apple.CommonPanels 1.2.4 (85) <c135f02edd6b2e2864311e0b9d08a98d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x96594000 - 0x965d2fff libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x965d3000 - 0x965d5ff5 libRadiance.dylib ??? (???) <82d606c49f5dc77231f9d0e2be9ed6ab> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x965ee000 - 0x96647ff7 libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x96648000 - 0x9668afef com.apple.NavigationServices 3.5.2 (163) <72cdc9d21f6690837870923e7b8ca358> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9668b000 - 0x96993fff com.apple.HIToolbox 1.5.5 (???) <b17766e3d8800a73f534c41f624f5ac4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x96994000 - 0x96afbff3 libSystem.B.dylib ??? (???) <b47c8e6e45aef620730710a732bf1930> /usr/lib/libSystem.B.dylib
    0x96bf1000 - 0x96cabfe3 com.apple.CoreServices.OSServices 227 (227) <30cebcb68b1b571df7d77474e0c31556> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x96cac000 - 0x96cb3fe9 libgcc_s.1.dylib ??? (???) <e280ddf3f5fb3049e674edcb109f389a> /usr/lib/libgcc_s.1.dylib
    0x96cb4000 - 0x96cebfff com.apple.SystemConfiguration 1.9.2 (1.9.2) <eab546255ac099b9616df999c9359d0e> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x96fc6000 - 0x96fd0feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <df077a8048afc3075c6f2d9e7780e78e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x96fd1000 - 0x96fd1ffa com.apple.CoreServices 32 (32) <373d6a888f9204641f313bc6070ae065> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9718f000 - 0x97193fff libGIF.dylib ??? (???) <7714ae24eb64b48fa719fb99bcbe34f3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x97238000 - 0x972b2ff8 com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x972b3000 - 0x972b7fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
    The menubar items keep blinking on and off and I cannot display the time on the menu bar.
    I tried deleting the com.apple.systemuiserver.plist file and rebooting, but the problem persists.
    I do not have any additional menubar items installed.
    Judging from looking at the log above, there is a a problem that I cannot see. Does anyone have any ideas?
    Thank you.
    EA

    Greetings:
    Thank you for the reply. I tried repairing the Disk permissions; unfortunately, the problem is still there. I am including the error log below:
    Process: SystemUIServer [406]
    Path: /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
    Identifier: com.apple.systemuiserver
    Version: 1.5.5 (248.9)
    Build Info: SystemUIServer-2480900~13
    Code Type: X86 (Native)
    Parent Process: launchd [112]
    Date/Time: 2009-05-30 19:03:43.644 -0400
    OS Version: Mac OS X 10.5.7 (9J61)
    Report Version: 6
    Anonymous UUID: 20D97D81-51AD-4556-B42E-1E666316B8AC
    Exception Type: EXC_ARITHMETIC (SIGFPE)
    Exception Codes: EXCI386DIV (divide by zero)
    Crashed Thread: 6
    Thread 0:
    0 libSystem.B.dylib 0x95a24286 machmsgtrap + 10
    1 libSystem.B.dylib 0x95a2ba7c mach_msg + 72
    2 com.apple.CoreGraphics 0x90304a8f _CGSSynchronizeWindowBackingStore + 139
    3 com.apple.CoreGraphics 0x902f7a6b _CGSLockWindow + 4600
    4 com.apple.CoreGraphics 0x903045bb CGSDeviceLock + 450
    5 libRIP.A.dylib 0x9366ad60 ripd_Lock + 61
    6 libRIP.A.dylib 0x93669eee ripl_BltShape + 438
    7 libRIP.A.dylib 0x9364e213 ripc_Render + 386
    8 libRIP.A.dylib 0x936576bd ripc_DrawRects + 689
    9 com.apple.CoreGraphics 0x9030157e CGContextFillRects + 162
    10 com.apple.CoreGraphics 0x903562ae CGContextFillRect + 32
    11 com.apple.AppKit 0x94841c3b NSRectFill + 240
    12 com.apple.AppKit 0x948d322c -[NSView _drawRect:clip:] + 3853
    13 com.apple.AppKit 0x948d1d23 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1050
    14 com.apple.AppKit 0x948d0679 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 759
    15 com.apple.AppKit 0x949b8929 -[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 340
    16 com.apple.AppKit 0x948ccadf -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3090
    17 com.apple.AppKit 0x9480d4b3 -[NSView displayIfNeeded] + 933
    18 com.apple.AppKit 0x9480d061 -[NSWindow displayIfNeeded] + 189
    19 com.apple.AppKit 0x9480ce84 _handleWindowNeedsDisplay + 436
    20 com.apple.CoreFoundation 0x9020d942 __CFRunLoopDoObservers + 466
    21 com.apple.CoreFoundation 0x9020ec9c CFRunLoopRunSpecific + 844
    22 com.apple.CoreFoundation 0x9020fc78 CFRunLoopRunInMode + 88
    23 com.apple.HIToolbox 0x926d928c RunCurrentEventLoopInMode + 283
    24 com.apple.HIToolbox 0x926d8fde ReceiveNextEventCommon + 175
    25 com.apple.HIToolbox 0x926d8f19 BlockUntilNextEventMatchingListInMode + 106
    26 com.apple.AppKit 0x9480ad0d _DPSNextEvent + 657
    27 com.apple.AppKit 0x9480a5c0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    28 com.apple.AppKit 0x948035fb -[NSApplication run] + 795
    29 com.apple.systemuiserver 0x00005d84 0x1000 + 19844
    30 com.apple.systemuiserver 0x00005886 0x1000 + 18566
    Thread 1:
    0 libSystem.B.dylib 0x95a2b46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x95a55dcd pthreadcondwait$UNIX2003 + 73
    2 ...e.ImageCaptureNotifications 0x000d4e9e _StaticProcessIOObjectsArray + 95
    3 libSystem.B.dylib 0x95a55155 pthreadstart + 321
    4 libSystem.B.dylib 0x95a55012 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x95a549c6 kevent + 10
    1 libSystem.B.dylib 0x95a55155 pthreadstart + 321
    2 libSystem.B.dylib 0x95a55012 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x95a24286 machmsgtrap + 10
    1 libSystem.B.dylib 0x95a2ba7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9020f04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9020fc78 CFRunLoopRunInMode + 88
    4 com.apple.audio.CoreAudio 0x96a0a5f8 HALRunLoop::OwnThread(void*) + 160
    5 com.apple.audio.CoreAudio 0x96a0a480 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x95a55155 pthreadstart + 321
    7 libSystem.B.dylib 0x95a55012 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x95a2b46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x95a55dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.Foundation 0x957f0942 -[NSCondition wait] + 210
    3 com.apple.Foundation 0x957a928a -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 938
    4 com.apple.Foundation 0x957fc8f8 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 184
    5 com.apple.systemuiserver 0x0002d837 0x1000 + 182327
    6 com.apple.Foundation 0x957a8e0d -[NSThread main] + 45
    7 com.apple.Foundation 0x957a89b4 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x95a55155 pthreadstart + 321
    9 libSystem.B.dylib 0x95a55012 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x95a2b46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x95a55dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.QuartzCore 0x9415aa09 fefragmentthread + 54
    3 libSystem.B.dylib 0x95a55155 pthreadstart + 321
    4 libSystem.B.dylib 0x95a55012 thread_start + 34
    Thread 6 Crashed:
    0 com.apple.systemuiserver 0x0002595d 0x1000 + 149853
    1 com.apple.systemuiserver 0x00025bea 0x1000 + 150506
    2 com.apple.systemuiserver 0x000267c6 0x1000 + 153542
    3 com.apple.DiskArbitration 0x9118e6df _DADispatchCallback + 273
    4 com.apple.DiskArbitration 0x9118e2d9 _DASessionCallback + 309
    5 com.apple.CoreFoundation 0x901eb1c5 __CFMachPortPerform + 117
    6 com.apple.CoreFoundation 0x9020f888 CFRunLoopRunSpecific + 3896
    7 com.apple.CoreFoundation 0x9020fc78 CFRunLoopRunInMode + 88
    8 com.apple.systemuiserver 0x00026a6c 0x1000 + 154220
    9 com.apple.Foundation 0x957a8e0d -[NSThread main] + 45
    10 com.apple.Foundation 0x957a89b4 _NSThread__main_ + 308
    11 libSystem.B.dylib 0x95a55155 pthreadstart + 321
    12 libSystem.B.dylib 0x95a55012 thread_start + 34
    Thread 6 crashed with X86 Thread State (32-bit):
    eax: 0x00007e99 ebx: 0x00577e10 ecx: 0x00000000 edx: 0x00000000
    edi: 0x005950b0 esi: 0x0059b2d0 ebp: 0xb033e468 esp: 0xb033e200
    ss: 0x0000001f efl: 0x00010246 eip: 0x0002595d cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x1500c000
    Binary Images:
    0x1000 - 0x52ff3 com.apple.systemuiserver 1.5.5 (248.9) <f8a92b652c2aa54f46f8f5c32449c1eb> /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
    0x6a000 - 0x6efff com.apple.framework.SystemUIPlugin 1.5 (20) <693b3808ff85a09a6c5fb1de9a24cc3f> /System/Library/PrivateFrameworks/SystemUIPlugin.framework/Versions/A/SystemUIP lugin
    0x78000 - 0xa3fff com.apple.framework.NetworkConfig 2.3 (2.3) <d31639730be1f32d1ee71dbd8ffcf09e> /System/Library/PrivateFrameworks/NetworkConfig.framework/Versions/A/NetworkCon fig
    0xcc000 - 0xd8ffb com.apple.ImageCaptureNotifications 4.0.1 (4.0.1) /System/Library/PrivateFrameworks/ICANotifications.framework/Versions/A/ICANoti fications
    0xf6000 - 0xfafff com.apple.iPod 1.5 (15) <808d4802c643ebbf266f508935200c99> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
    0x101000 - 0x103fff com.apple.BezelServicesFW 1.4.929 (1.4.929) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x10a000 - 0x1d3fe5 com.apple.DiscRecording 4.0.5 (4050.4.1) <503c77a4da92eb3262d3fbfe46e74f20> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x23e000 - 0x337fe0 com.apple.DiskImagesFramework 10.5.5 (199) <221119fb6b335af96fb0e85a9403cbc5> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x39d000 - 0x3c7ff8 com.apple.framework.Apple80211 5.2.7 (527.2) <5982190f9caa25fca18b8753671d0d64> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x3d8000 - 0x3e2ffc com.apple.framework.AppleTalk 1.2.0 (???) <e8d0dc99744c2eb3aafefe463d3daf43> /System/Library/Frameworks/AppleTalk.framework/Versions/A/AppleTalk
    0x3e9000 - 0x41ffff com.apple.MediaKit 9.1 (401) <62f8d49f7d7eb4096d74377d0b7b51d5> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x430000 - 0x45bffb libcurl.4.dylib ??? (???) <92c23039fbe46c86a58d55d4b9d2d3e2> /usr/lib/libcurl.4.dylib
    0x4aa000 - 0x4adfff com.apple.audio.AudioIPCPlugIn 1.0.6 (1.0.6) <63c9ef8da77eb8768e03991ec0e413fd> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x4b3000 - 0x4b8fff com.apple.audio.AppleHDAHALPlugIn 1.6.8 (1.6.8a3) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x7e0000 - 0x7f1ffa com.apple.menuextra.airport 5.3.2 (532.3) <dde78ca7918d3edfb70b8b6fe57d2cb2> /System/Library/CoreServices/Menu Extras/AirPort.menu/Contents/MacOS/AirPort
    0x14e6e000 - 0x14e79ff7 com.apple.menuextra.bluetooth 2.1.6 (2.1.6f8) <8ecdc9f49ac25d3053470e757298fa13> /System/Library/CoreServices/Menu Extras/Bluetooth.menu/Contents/MacOS/Bluetooth
    0x14e83000 - 0x14ef7ff7 com.apple.Bluetooth 2.1.6 (2.1.6f8) <2efdc5543023a1c9b534269d1153d8d8> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x14f45000 - 0x14f61fff com.apple.BluetoothUI 2.1.6 (2.1.6f8) <89d3e2503e2255d40fc25886bb4a8019> /System/Library/Frameworks/IOBluetoothUI.framework/Versions/A/IOBluetoothUI
    0x14f85000 - 0x14f91ff7 com.apple.menuextra.TimeMachine 10.5.7 (10.5) <ba85317e0c9608ccdba50230c833d2c2> /System/Library/CoreServices/Menu Extras/TimeMachine.menu/Contents/MacOS/TimeMachine
    0x14fda000 - 0x14fdfff3 libCGXCoreImage.A.dylib ??? (???) <3a78abc535c80f9819931b670da804a2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <1c2a016b2ac25fe8b7575f51e49b9334> /usr/lib/dyld
    0x90003000 - 0x9013cff7 libicucore.A.dylib ??? (???) <cac059ebdac7d9a63ee0f7a648c9f6cf> /usr/lib/libicucore.A.dylib
    0x9013d000 - 0x90144ffe libbsm.dylib ??? (???) <fa7ae5f1a621d9b69e7e18747c9405fb> /usr/lib/libbsm.dylib
    0x90145000 - 0x90155ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <bc7eb703ddc37bf85adf93e35efd3947> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x90156000 - 0x90162fff libbz2.1.0.dylib ??? (???) <1922ca2214a131073cd1c7ef3ee76398> /usr/lib/libbz2.1.0.dylib
    0x90163000 - 0x9019afff com.apple.SystemConfiguration 1.9.2 (1.9.2) <eab546255ac099b9616df999c9359d0e> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9019b000 - 0x9019bffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9019c000 - 0x902cffef com.apple.CoreFoundation 6.5.6 (476.18) <2d52bab73660117571bd6486dc318f8e> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x902d0000 - 0x902e5ffb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x902e6000 - 0x90986fe3 com.apple.CoreGraphics 1.409.3 (???) <25dceb14af3455b768f56e8765ecf3ca> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90987000 - 0x90c61ff3 com.apple.CoreServices.CarbonCore 786.11 (786.13) <9e2d85d52e5e2951aa4dd53c48ccc52f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90e30000 - 0x91001ffb com.apple.security 5.0.5 (36371) <c13e0bb1acfdcf94be4d3ee118ef190e> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91069000 - 0x910fcfff com.apple.ink.framework 101.3 (86) <d4c85b5cafa8027fff042b84a8be71dc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x910fd000 - 0x91106fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <da2d8411921a3fd8bc898dc753b7f3ee> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x91107000 - 0x91161ff7 com.apple.CoreText 2.0.4 (???) <f0b6c1d4f40bd21505097f0255abfead> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9118c000 - 0x91194fff com.apple.DiskArbitration 2.2.1 (2.2.1) <2664eeb3a4d0c95a21c089892a0ae8d0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x911b4000 - 0x911eefe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x92304000 - 0x92314fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <273d96ff861dc68be659c07ef56f599a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x92315000 - 0x92315fff com.apple.Carbon 136 (136) <eb3c292d5544512f86e1e4e743c23f8e> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92316000 - 0x92320feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <df077a8048afc3075c6f2d9e7780e78e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92321000 - 0x92339fff com.apple.openscripting 1.2.8 (???) <0129d2f750f5ddcb92f4acf8a3541952> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x924fd000 - 0x925b7fe3 com.apple.CoreServices.OSServices 227 (227) <30cebcb68b1b571df7d77474e0c31556> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9269a000 - 0x926a8ffd libz.1.dylib ??? (???) <a98b3b221a72b54faf73ded3dd7000e5> /usr/lib/libz.1.dylib
    0x926a9000 - 0x929b1fff com.apple.HIToolbox 1.5.5 (???) <b17766e3d8800a73f534c41f624f5ac4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x929c4000 - 0x929d0ffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x929d1000 - 0x929dcfe7 libCSync.A.dylib ??? (???) <9e3544fe087bb4dc760b7afe0850dd6c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x92ac4000 - 0x92b1dff7 libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92b2e000 - 0x92b49ffb libPng.dylib ??? (???) <0d6b991afc831ea06f2958e5933d33dd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x92cca000 - 0x92cf7feb libvDSP.dylib ??? (???) <4daafed78a471133ec30b3ae634b6d3e> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92cf8000 - 0x92d77ff5 com.apple.SearchKit 1.2.1 (1.2.1) <f28f8dd0f155a6453411a0c9b5702764> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x92d78000 - 0x92d78ffa com.apple.CoreServices 32 (32) <373d6a888f9204641f313bc6070ae065> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9335b000 - 0x9335dff5 libRadiance.dylib ??? (???) <82d606c49f5dc77231f9d0e2be9ed6ab> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9335e000 - 0x9339dfef libTIFF.dylib ??? (???) <d4bcc9b9c508e53849d2d46bb6900922> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9339e000 - 0x933dcfff libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x934f3000 - 0x9352dffe com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x935f2000 - 0x935feff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x935ff000 - 0x9360cfe7 com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9364a000 - 0x9368bfe7 libRIP.A.dylib ??? (???) <69bd09fcd8d8b235cee7a405290d6818> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x93744000 - 0x93744ff8 com.apple.ApplicationServices 34 (34) <ee7bdf593da050bb30c7a1fc446eb8a6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x93745000 - 0x93c16fbe libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x93c17000 - 0x93c17ff8 com.apple.Cocoa 6.5 (???) <a1bc9247cf65c20f1a44d0973cbe649c> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93c18000 - 0x94028fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x94066000 - 0x94403fef com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94404000 - 0x94409fff com.apple.CommonPanels 1.2.4 (85) <c135f02edd6b2e2864311e0b9d08a98d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9444f000 - 0x9452ffff libobjc.A.dylib ??? (???) <400e943f9e8a678eea22a1d1205490ee> /usr/lib/libobjc.A.dylib
    0x94530000 - 0x94676ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <b407f06ff9b6893899e2e399cb65c953> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x94677000 - 0x947c9ff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x947ca000 - 0x94fc8fef com.apple.AppKit 6.5.7 (949.46) <a80f8cb62f6bdcb3bed3c8675d55881d> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94fcf000 - 0x94ff3feb libssl.0.9.7.dylib ??? (???) <8084593b773bec8f2b9614fd23c5ed73> /usr/lib/libssl.0.9.7.dylib
    0x94ff4000 - 0x95051ffb libstdc++.6.dylib ??? (???) <f75e5133d72769de5ce6c06153fc65f6> /usr/lib/libstdc++.6.dylib
    0x95052000 - 0x95102fff edu.mit.Kerberos 6.0.13 (6.0.13) <804bd1b3f08fb57396781f012006367c> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x95103000 - 0x95121fff libresolv.9.dylib ??? (???) <9ed809256ce8913cddc3269c2e364654> /usr/lib/libresolv.9.dylib
    0x95122000 - 0x9513aff7 com.apple.CoreVideo 1.6.0 (20.0) <464fc6630b483a693d1dfeff144c4733> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x95205000 - 0x95209fff libGIF.dylib ??? (???) <7714ae24eb64b48fa719fb99bcbe34f3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9523f000 - 0x95241fff com.apple.securityhi 3.0 (30817) <b3517782ad664a21e4fd60242e92723e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9525f000 - 0x95260ffc libffi.dylib ??? (???) <eaf10b99a3fbc4920b175809407466c0> /usr/lib/libffi.dylib
    0x95261000 - 0x952aafef com.apple.Metadata 10.5.2 (398.25) <7eb2df3e510cd308e91a6cf6d8e9fba5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x952ab000 - 0x952caffa libJPEG.dylib ??? (???) <b822342bcc764c83d4557a8b67fa0c1c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9545b000 - 0x9545bffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x9545c000 - 0x95503feb com.apple.QD 3.11.56 (???) <a94d0f5438b730e88e5efdb233295c52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x95504000 - 0x9550afff com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9550b000 - 0x9550bffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x955c6000 - 0x95622ff7 com.apple.htmlrendering 68 (1.1.3) <1c5c0c417891b920dfe139385fc6c155> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x95623000 - 0x9569dff8 com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x956a4000 - 0x956ccff7 com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x956cd000 - 0x956f8fe7 libauto.dylib ??? (???) <2e44c523b851e8e25f05d13a48070a58> /usr/lib/libauto.dylib
    0x956f9000 - 0x956f9ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9579e000 - 0x95a1afe7 com.apple.Foundation 6.5.8 (677.24) <aa84b0383891378c348ffa4a94853082> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x95a1b000 - 0x95a22fe9 libgcc_s.1.dylib ??? (???) <e280ddf3f5fb3049e674edcb109f389a> /usr/lib/libgcc_s.1.dylib
    0x95a23000 - 0x95b8aff3 libSystem.B.dylib ??? (???) <b47c8e6e45aef620730710a732bf1930> /usr/lib/libSystem.B.dylib
    0x95bd2000 - 0x95bd6fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x95bd7000 - 0x95c28ff7 com.apple.HIServices 1.7.0 (???) <67988718780a0a367b1bde62f5a67c4b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x95c29000 - 0x95d0aff7 libxml2.2.dylib ??? (???) <068cab13eb4608a7c6a5fad807ee0e33> /usr/lib/libxml2.2.dylib
    0x95e32000 - 0x95e74fef com.apple.NavigationServices 3.5.2 (163) <72cdc9d21f6690837870923e7b8ca358> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x95ee8000 - 0x95f8cfec com.apple.CFNetwork 438.10 (438.12) <fde64bbb20532794396fb21911ccaa98> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x95f8d000 - 0x95f8dffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x95f8e000 - 0x96076ff3 com.apple.CoreData 100.2 (186.1) <8fb61e1714a4b8d587ce97605ad32547> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x96077000 - 0x960f4fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x96105000 - 0x961d0fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x961d1000 - 0x961e7fff com.apple.DictionaryServices 1.0.0 (1.0.0) <7d20b8d1fb238c3e71d0fa6fda18c4f7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x961e8000 - 0x96274ff7 com.apple.framework.IOKit 1.5.2 (???) <97b9f9d584f48891377f0481b9104434> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96275000 - 0x9629efff libcups.2.dylib ??? (???) <1b0435164b9dc6c773d0b1f24701e554> /usr/lib/libcups.2.dylib
    0x9629f000 - 0x962c3fff libxslt.1.dylib ??? (???) <6a58a8724941e8a0cfeb0cae28ea3f37> /usr/lib/libxslt.1.dylib
    0x9630e000 - 0x9639aff7 com.apple.LaunchServices 290.3 (290.6) <bdba267184df88bd5b8e2116ea903872> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x969ed000 - 0x96a6afeb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <5a4e6329f8dbca5dcd70924525afd24a> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96a6b000 - 0x96af5fe3 com.apple.DesktopServices 1.4.8 (1.4.8) <3065de6531ce839c7cb5b6dd70e03f4f> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x96bd7000 - 0x96c9eff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x96cf1000 - 0x96d20fe3 com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x96d21000 - 0x96d24fff com.apple.help 1.1 (36) <1a25a8fbb49a830efb31d5c0a52939cd> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96d2a000 - 0x970e8fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x970e9000 - 0x97170ff7 libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x97171000 - 0x97204ff3 com.apple.ApplicationServices.ATS 3.7 (???) <a535fc4982d3acff6530ec25c402e679> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x97205000 - 0x972b7ffb libcrypto.0.9.7.dylib ??? (???) <9d714c92872a93dd127ea8556b2c8945> /usr/lib/libcrypto.0.9.7.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
    I am still back at Square 1.
    I am curious - where can I find the Crash Reporter dialog that you mentioned earlier?
    Still, thank you for your reply.
    EA

  • A Problem with Layers

    I am having a problem with layers in different browsers. I
    have a menubar with some drop-down items. Some of these need to
    fall over other page objects such as GIFs. The problem is that in
    order for that to render correctly in IE, I have to set the z-index
    of the GIF to -1. However a GIF set to -1 doesn't render at all in
    Netscape. If I set the z-index to 0 it works fine in Netscape but
    not in IE. Has anyone dealt with this problem???

    Ugh. You are in deep doody.
    Your only option now is to hack mm_menu.js, and change all
    instances of -
    z-index="1"
    to -
    z-index="99"
    But - perhaps it would help if you read what the 'author' of
    that menu code
    (he adapted it, actually) says about the menus -
    http://www.losingfight.com/blog/2006/08/11/the-sordid-tale-of-mm_menufw_menujs/
    In addition, this page will show you the potential problem of
    building with
    only layers -
    http://www.great-web-sights.com/g_layer-overlap.asp
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "glen_nicholls" <[email protected]> wrote in
    message
    news:enm2cp$de7$[email protected]..
    > Yes, everything on my page is in layers. Is that OK?
    Also I created my
    > menu in Fireworks.

  • 802.11n 5ghz Connection Problem with OS X 10.4.11 Tiger

    I've searched the communities for answer to this vexing issue to no avail, so I am trying a post.
    Situation:
    I have a dual-band 1TB TC at home set up with three networks: 802.11g/b/a, 802.11n ((5ghz), and Guest Network (g/b).  There are four Macs accessing it: (2) mid-2009 15" MacBook Pros, 2009 MacBook Air, mid-2006 24" iMac.  All are running Snow Leopard 10.6.7 except the 24" iMac (Core 2 Duo) running 10.4.11.
    All Macs can connect to to all networks EXCEPT the iMac which has a problem with the 802.11n (5ghz) connection ONLY.  The iMac has the n-enabler installed (can see it registered when looking at Network Utility).  In fact, the iMac will connect but any attempt to access to the Internet or TC disk stalls the system.  Switch back to 802.11g and everything is fine.
    I've looked at the Console for guidance but cannot find anything problematic (to my eyes, anyway).  I booted this iMac to Snow Leopard from an external disk and the problem cannot be duplicated, so I am assuming this is not a hardware issue with the iMac.  I also, did a fresh install of Tiger and updated it to 10.4.11 plus all Airport updates and n-ebabler on an external drive, booted from this drive and have the same issue with the 5 ghz n-connection.
    By the way, when connected to 802.11n (5ghz) network with the iMac, I have full bars on the menubar fan, but then one bar drops after a minute or so.  When this happens, I cannot access the Internet nor the TC disk.
    I've tried various tweaks as described in the many, many discussion threads here: resets, establish new locations, clear/repair the keychain, and many others.
    I did not have this problem in the past with this iMac, so don't know what has changed with the system configuration.  The g-connection is rock-solid, so Internet access is fine, but file transfer speeds ober the network are obviously much slower now than with the 5ghz n-connection.
    Anyone have any ideas?  Without suggesting an upgrade to 10.6...clearly that should do the trick.  I have other reasons for running Tiger on the iMac.
    Thanks.

    I wonder if all the activity was too much for the hard drive and it failed....you might contact Apple about this repair extension program to see if you qualify...
    http://www.apple.com/support/macbook/hd/repairextension/

  • Having problem with spry menu bar in Internet Explorer.

    I'm having a problem with my spry menu bars in Internet Explorer.
    Here are the pictures:
    Firefox
    Internet Explorer
    HERE ARE THE CODES:
    HTML CODE:
    <style type="text/css">
    <!--
    #apDiv1 {
        position:absolute;
        width:160px;
        height:126px;
        z-index:1;
        left: 205px;
        top: 424px;
        margin: 0 auto;
    -->
    </style>
    <style type="text/css">
    #apDiv3 {
        position:absolute;
        width:254px;
        height:206px;
        z-index:2;
        left: 123px;
        top: 1529px;
    #apDiv4 {
        position:absolute;
        width:250px;
        height:194px;
        z-index:3;
        left: 381px;
        top: 1528px;
    #apDiv5 {
        position:absolute;
        width:256px;
        height:200px;
        z-index:4;
        left: 636px;
        top: 1529px;
    #apDiv6 {
        position:absolute;
        width:349px;
        height:205px;
        z-index:5;
        left: 889px;
        top: 1530px;
    </style>
    <style type="text/css">
    #apDiv7 {
        position:absolute;
        width:887px;
        height:204px;
        z-index:6;
        left: 324px;
        top: 905px;
    #apDiv8 {
        position:absolute;
        width:1295px;
        height:74px;
        z-index:1;
        left: 212px;
        top: 668px;
    </style>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    </script>
    <style type="text/css">
    #apDiv2 {
        position:absolute;
        width:209px;
        height:197px;
        z-index:2;
        top: 1220px;
        left: 171px;
    #apDiv9 {
        position:absolute;
        width:331px;
        height:97px;
        z-index:3;
        left: 385px;
        top: 1218px;
    #apDiv10 {
        position:absolute;
        width:292px;
        height:199px;
        z-index:4;
        left: 724px;
        top: 1218px;
    #apDiv11 {
        position:absolute;
        width:200px;
        height:115px;
        z-index:1;
    body {
        background-color: #000;
        background-image: url();
        text-align: center;
        color: #F00;
    .none {
        font-size: 80px;
        font-family: "Times New Roman", Times, serif;
        font-weight: bold;
    #apDiv12 {
        position:absolute;
        width:991px;
        height:60px;
        z-index:5;
        left: 198px;
        top: 192px;
    #apDiv13 {
        position:absolute;
        width:200px;
        height:115px;
        z-index:1;
        left: 588px;
        top: 322px;
    </style>
    <body onLoad="MM_preloadImages('images/WebConfroll.png','images/youthfootballroll.png','images/ statefbsweatshirt.png')">
    <p align="center" class="none"><img src="images/footballtitle.png" width="941" height="183"></p>
    <div align="center">
      <ul id="MenuBar2" class="MenuBarHorizontal">
        <li><a class="MenuBarItemSubmenu" href="#">[Placeholder]</a>
          <ul>
            <li><a href="#">[Placeholder]</a></li>
            <li><a href="#">[Placeholder]</a></li>
            <li><a href="#">[Placeholder]</a></li>
          </ul>
        </li>
        <li><a href="#" class="MenuBarItemSubmenu">[Placeholder]</a>
          <ul>
            <li><a href="#">[Placeholder]</a></li>
            <li><a href="#">[Placeholder]</a></li>
            <li><a href="#">[Placeholder]</a></li>
          </ul>
        </li>
        <li><a class="MenuBarItemSubmenu" href="#">Videos</a>
          <ul>
            <li><a class="MenuBarItemSubmenu" href="#">2008 Videos</a>
              <ul>
                <li><a href="videos/2009 videos/Glenbard part one/partone.html">Glenbard South Game</a></li>
                <li><a href="#">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# 160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;[Placeholder]</a></li>
              </ul>
            </li>
            <li><a href="#" class="MenuBarItemSubmenu">2009 Videos</a>
              <ul>
                <li><a href="#">[Placeholder]</a></li>
                <li><a href="#">[Placeholder]</a></li>
              </ul>
            </li>
            <li><a href="#" class="MenuBarItemSubmenu">2010 Videos</a>
              <ul>
                <li><a href="#">[Placeholder]</a></li>
                <li><a href="#">[Placeholder]</a></li>
              </ul>
            </li>
          </ul>
        </li>
      </ul>
    </div>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"><span class="cent"><img src="images/bulldoghelmit.png" width="150" height="99" /></span></p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p class="cent"> </p>
    <div align="center">
      <ul id="MenuBar1" class="MenuBarHorizontal">
        <li> <a class="MenuBarItemSubmenu" href="#">Football Season 2008</a>
          <ul>
            <li><a href="http://page.bps101.net/web/t1350/Football2009/2008%20Defense%20Stats.pdf">Defense Stats</a></li>
            <li><a href="http://page.bps101.net/web/t1350/Football2009/2008%20Offense%20Stats.pdf">Offense and Records</a></li>
            <li><a href="http://page.bps101.net/web/t1350/BHS%20All%20Time%20Stats.pdf">AllTime Data</a></li>
            <li><a href="http://page.bps101.net/web/t1350/Football2009/Western%20Sun%202009.pdf">Western Sun Final Standings</a></li>
          </ul>
        </li>
        <li> <a href="#" class="MenuBarItemSubmenu">Football Season 2009</a>
          <ul>
            <li><a href="http://page.bps101.net/web/t1350/Football%202010/2009%20Banquet%20Record%20and%20Stats.pdf">Defense Stats</a></li>
            <li><a href="http://page.bps101.net/web/t1350/Football%202010/2009%20Banquet%20Record%20and%20Stats.pdf">Record Book and Offense</a></li>
            <li><a href="http://page.bps101.net/web/t1350/Football%202010/All-Time%20Data%202009.pdf">Alltime Data</a></li>
          </ul>
        </li>
        <li> <a class="MenuBarItemSubmenu" href="#">Football Season 2010</a>
          <ul>
            <li><a href="http://page.bps101.net/web/t1350/Football%202011/2011%20Checklist.pdf">2010-2011 Offseason Checklist</a></li>
            <li><a href="http://page.bps101.net/web/t1350/Football%202011/2010%20Defense%20Stats%20Final.pdf">Defense Stats</a></li>
            <li><a href="http://page.bps101.net/web/t1350/Football%202011/2010%20Stats%20Packet.pdf">Record Book and Offense</a></li>
            <li><a href="http://page.bps101.net/web/t1350/Football%202011/2010%20ALL%20TIME.pdf">Alltime Data</a></li>
          </ul>
        </li>
      </ul>
    </div>
    <p align="center"> </p>
    <p align="center"> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"><img src="images/Batavia Youth football.png" alt="" width="869" height="200" /></p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image4','','images/WebConfroll.png',1)"></a></p>
    <div align="center">
      <div align="center"></div>
      <div align="center"><a href="http://www.athletics2000.com/upstate8/" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image7','','images/WebConfroll.png',1)"><img src="images/WebConf.png" name="Image7" width="206" height="194" border="0" id="Image7" /></a><a href="http://www.bataviayouthfootball.org/" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image6','','images/statefbsweatshirt.png',1)"><img src="images/statefbsweatshirt.jpg" name="Image6" width="375" height="199" border="0" id="Image6" /></a><a href="http://www.bataviayouthfootball.org/" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image8','','images/youthfootballroll.png',1)"><img src="images/youth football.png" name="Image8" width="329" height="197" border="0" id="Image8" /></a></div>
    </div>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image5','','images/youthfootballroll.png',1)"></a></p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"><img src="images/Logos.png" width="1167" height="199" /></p>
    <script type="text/javascript">
    var MenuBar2 = new Spry.Widget.MenuBar("MenuBar2", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    CSS CODE
    @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: auto 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        cursor: default;
        width: 54em;
        border-top: thick solid #00F;
        border-left: thick solid #00F;
        border-right: thick solid #00F;
        border-bottom: thick solid #00F;
        height: 2.2em;
    /* 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;
        cursor: pointer;
        width: 18em;
        float: left;
    /* 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: 1020;
        cursor: default;
        width: 18em;
        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: 18em;
    /* 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: auto;
        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;
        background-color: #000;
        padding: 0.5em 0.75em;
        color: #C96;
        text-decoration: none;
        text-align: center;
        height: 1.2em;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
        background-color: #900;
        color: #009;
    /* 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
        background-color: #900;
        color: #FFF;
        text-decoration: underline;
    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%;
        color: #FF0;
        font-family: "Lucida Console", Monaco, monospace;
    /* 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;
    The website is http://wwww.bataviabulldogfootball.tk

    Note that running your page through the W3C Validator gives this list of errors: http://validator.w3.org/check?uri=http%3A%2F%2Fwww.bataviabulldogfootball.tk%2F&charset=%2 8detect+automatically%29&doctype=Inline&group=0
    I see that you have a very thin doctype at the top. I suggest you create a new page in Dreamweaver and copy the bit at the top of the page:
    <!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">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    Then put that code in place of these lines from your current page:
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8" />
    I see that you have two opening <body> tags. Delete one; it is not needed. Add the preload images from the second into the first body tag and delete the second.
    I see code below the closing </html> tag. Re position it before the closing </body> tag.
    Because of these errors mentioned above, it was impossible to see the page. Fix and reply here when you have done so.
    Also, it is not possible for me to divine what difficulty you are having. If you can please also express it in English (LOL), I'll be happy to suggest a correction for you!
    Beth
    p.s. Posting entire blocks of code is NEVER as helpful as giving us a link to the pages in action. I seldom read through code dumps here in the Forum.
    Message was edited by: Zabeth69

  • Mac OS X 10.6.8 experiencing problems with Safari

    I'm using Mac OS X 10.6.8 snow leopard and Safari version 5.1.10 which claims to be up to date. On sights such as Folksy I'm getting error messages when I try to upload photos, saying that my browser isn't up to date. I have had problems with Facebook and the blue navigation bar appearing only intermittently. Can anyone suggest what I should do to fix these issues?

    Of course you may be able to upgrade to a higher OS version but that depends on your iMac variant. Some can run no higher than OS 10.6 and other are constrained to running no higher than 10.7. To see what is possible from OS 10.6, click on your Apple menu (left end of menubar) and, while the pulldown options are visible, press the OPTION key. The first item, normally "About this Mac," will change to "System Profiler." Launch it.
    The opening Profiler screen will show your Hardware Overview. In the image below, I have indicated with the red arrow a model code that will precisely identify your iMac variant:
    Also note the amount of "Memory" installed (the ninth line) and tell us what that is. Some older Macs did not ship with enough RAM for newer OS versions and more may need to be added.
    From the chart below, you can see if your model supports a higher OS version:

  • Problem with this Website : FilesFetche

    first i have macbook pro 10.7.5,
    i use google chrome,
    i have problem with this Website :
    FilesFetcher,
    i can't Surf the Internet Comfortably,
    if i open any Website be instead of it,
    after few Second,
    i need Surf the Internet Comfortably,
    - please help me -

    Are yo seeing ads?  The pages you are visiting are loaded with ads?
    1. If adware is installed without your knowledge,
        use  free  AdwareMedic by clicking “Download ” from here
         http://www.adwaremedic.com/index.php
       Install , open,  and run it by clicking “Scan for Adware” button   to remove adware.
       Once adware is removed, quit the app by clicking AdwareMedic in the menubar
        and selecting “Quit AdwareMedic”.
    Safari
    2. Safari > Preferences > Extensions
        Turn those off one by one and relaunch Safari again to test.

Maybe you are looking for

  • Details of all the sites.

    Hi All, We are using btexx easyWCM Content Management Tool for creating sites. Is it possible to extract a sheet containing all available active sites and sub-sites till date along with any other information that could be associated to these sites? I

  • How to identify default browser through a 'C' program on solaris 8

    I have a requirement to display a html page in the default browser installed on solaris 8 machine through a C program. through a C program, 1. How to identify the default browser installed on a solaris machine? 2 How to get the path of the default br

  • Installation stuck at "calculating"

    I am currently on Mountain Lion and am trying to update to Yosemite.  I have had troubles with the download - took a very long time. I restarted the pc and was prompted to install the update.   I started the installation and it is stuck on the messag

  • Iphone 4s battery exchange

    Hello ! A family member has an iPhone 4S which could use a new battery. I heard that it is possible to exchange it on my own. Though I would feel safer when this would be done by a professional. Does Apple still exchange iPhone 4S batteries? And how

  • HT3576 What for is the notification ? Is it a must? The battery will finish fast because of it ?

    Am new joiner into apple family. :) For notification , is it a must to select? Is the battery finish fast because of this function ?