CL_GUI_HTML_VIEWER vs IE7

Hello Everyone,
I'm actually using the class CL_GUI_HTML_VIEWER to display some html. It was working nice until I tried to migrate to Internet Explorer 7. Does anyone know if there are some incompatibility with IE7, or what to do to make it work?
Thx,
Christophe

Yes there is an incompatibility with the SAP GUI 6.40 for any patch level below 20. Go to PL 20 or higher and your problem will be solved. This is what I found anyhow.
-Tim

Similar Messages

  • Using query strings works on every browser except IE7

    I made this file to pass the variables through the url and
    then use aps or java to append the variables either to the
    flashvars in ex: <param name="flashvars"
    value="'+document.location.search+'" or to the filename in ex:
    <embed src="swf/cpk_prod_kids.swf'+document.location.search+'"
    width="544" height="397" Both methods work on all browsers EXCEPT
    IE7 ???? below is all the Actionscript in the file: in advance
    thanks for any and all help!!!!
    // variables to hold common info....
    aspPage = "cpk_prod_kids.aspx?";
    sectionNSub ="&section=products&subs=mtcs";
    //watch the commercial link...
    wtcLink = "
    http://www.playalongtoys.com";
    // Product array
    //change values to store each file name / location. Add to
    the array as needed.
    prod_a = new Array;
    prod_a[0] = "productSWF/1.swf";// number of products in
    array. This feature is currently unused....
    prod_a[1] = "productSWF/1.swf";
    prod_a[2] = "productSWF/2.swf";
    prod_a[3] = "productSWF/3.swf";
    prod_a[4] = "productSWF/4.swf";
    prod_a[5] = "productSWF/5.swf";
    prod_a[6] = "productSWF/1.swf";
    prod_a[7] = "productSWF/2.swf";
    prod_a[8] = "productSWF/3.swf";
    prod_a[9] = "productSWF/4.swf";
    prod_a[10] = "productSWF/5.swf";
    prod_a[11] = "productSWF/1.swf";
    prod_a[12] = "productSWF/2.swf";
    //sets the dynamic text
    dt = new Array;
    dt[0] = 1;
    dt[1] = "this is text1";
    dt[2] = "this is text 2";
    dt[3] = "Lorem ipsum dolor sit amet, ";
    defaultText = "this is the standard text, either the correct
    text has not loaded or will load in a moment";
    // button functions
    button_mc.button1_but.onPress = function()
    getURL(aspPage+"p=1","_self");
    button_mc.button2_but.onPress = function()
    getURL(aspPage+"p=2","_self");
    button_mc.button3_but.onPress = function()
    getURL(aspPage+"p=3","_self");
    button_mc.button4_but.onPress = function()
    getURL(aspPage+"p=4","_self");
    button_mc.button5_but.onPress = function()
    getURL(aspPage+"p=5","_self");
    button_mc.button6_but.onPress = function()
    getURL(aspPage+"p=6","_self");
    button_mc.button7_but.onPress = function()
    getURL(aspPage+"p=7","_self");
    button_mc.button8_but.onPress = function()
    getURL(aspPage+"p=8","_self");
    // DO NOT EDIT BELOW THIS LINE THERE IS NO REASON YOU SHOULD
    HAVE TO !!!!!! *
    onLoad = function()
    productState();
    description();
    moveScroller();
    onEnterFrame = function()
    moveScroller();
    function productState()
    p = parseInt(p, 10); // parses the string "1" to a integer
    001 ( 10 = base 10)
    if( p >0) // if p = 0 then it defaults to the else
    statement below
    loader_mc.loadMovie(prod_a[p]); // places the parsed value
    of "p" in the selection for the array
    else
    loader_mc.loadMovie(prod_a[1]); // default product to load.
    // calculates the necessarry movement of the scroller when
    the page refreshes...
    numItems = .25;
    movement= p*numItems;
    pDivided = p/4;
    neededMove = parseInt(pDivided, 10);
    if (movement> neededMove)
    A= parseInt(movement, 10);
    //A= A-1;
    leftMove(281* A);
    else if (movement = neededMove)
    A= parseInt(movement, 10);
    A= A-1;
    leftMove(281* A);
    delete p; // deletes the var, if it is left in 2 p variables
    will be passed and the application won't work.
    // end Load logic
    function moveScroller()
    // generates temp vars to hold basic information and makes
    it easier to change later if necessary.
    tempA = button_mc._width;
    tempB = button_mc._x; // distance traveled where it started
    - how far it moved
    tempC = 168.5;
    tempD = tempB - 446.5; // distance traveled where it started
    - how far it moved - initial position and its length.
    tempE = tempC - tempA; // where it started - total length
    // Below actuates the buttons on the Left side of the
    screen.
    if(button_mc._x > 160)
    aRight_but._visible=false;
    aRight_mc._visible=false;
    aRight_mc._alpha=0;
    else
    aRight_but._visible=true;
    aRight_mc._visible=true;
    aRight_mc._alpha=100;
    // below statements make the button on the right actuate
    if(tempE < tempD)
    aLeft_but._visible=true;
    aLeft_mc._visible=true;
    aLeft_mc._alpha=100;
    else
    aLeft_but._visible=false;
    aLeft_mc._visible=false;
    aLeft_mc._alpha=0;
    wtcDisplay();
    // script to move the scroll left or right
    aLeft_but.onPress = function ()
    leftMove(281);
    aRight_but.onPress = function ()
    if(button_mc._x < 169)
    if( button_mc._width >= (button_mc._width-281))
    rightMove(281);
    function leftMove(distance)
    button_mc._x = (button_mc._x - distance);
    function rightMove(distance)
    button_mc._x = (button_mc._x + distance);
    // watch the commercials button
    wtc_mc.wtc_but.onPress = function()
    getURL(wtcLink,"_blank");
    function description()
    d = parseInt(d, 10);
    if(d>0)
    dynamicText = dt[d];
    else
    dynamicText = defaultText;
    function wtcDisplay()
    if(wtc == "yes")
    _root.wtc_mc._visible = true;
    _root.wtc_mc._alpha = 100;
    else
    _root.wtc_mc._visible = false;
    _root.wtc_mc._alpha = 0;
    // obligitory stop command.
    stop();

    Thanks for the advice, I have tried Javascript to resolve the
    problem. In response to the <object> tag missing, There is
    one I just included a snippet of the html code sorry for the
    confusion. Due to deadlines I abandoned the functionality of the
    script and "dumbed" down the script. Thank you again for the help

  • Spry Menu Bar css not compatible with IE7? or compatibility View on IE8?

    Well i've made my website
    . Swimmerbuddy.com
    Problem:I used the spry menu bar on a div tag. I've got it working fine on several browser and so on.. but hmm. i noticed that IE7 and only on compatibility view of IE8 it does not work...
    It seems like the drop down menus get cover by the main content underneath it..
    I started of with dwt i made my self.This is the DWT and the css that controll the dwt and the spry menu bar.
    PLZ HELP ME.. THANKS
    THIS IS THE DWT THAT THE PAGE RUNS ON
    <!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" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Untitled Document</title>
    <!-- TemplateEndEditable -->
    <link href="../CSS/main.css" rel="stylesheet" type="text/css" />
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <style type="text/css">
    a:link {
    color: #000;
    text-decoration: none;
    </style>
    <script src="../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    a:visited {
    color: #000;
    text-decoration: none;
    a:hover {
    text-decoration: none;
    color: #000;
    a:active {
    text-decoration: none;
    </style>
    </head>
    <body>
    <div id="wrapper">
      <div id="header">
        <div id="networkicons"><a href="http://www.facebook.com/?ref=logo#!/profile.php?id=100001554936595" target="_blank"><img src="../_images/facebook.png" alt="facebook.com" width="45" height="45" border="0" title="facebook.com"/></a><a href="http://www.myspace.com/swimmerbuddy" TARGET="_blank"> <img src="../_images/myspace.png" alt="myspace.com" width="44" height="45" border="0" title="myspace.com"/></a><a href="http://twitter.com/swimmerbuddy" TARGET="_blank"> <img src="../_images/twitter.png" alt="twitter.com" width="43" height="45" border="0" title="twitter.com"/></a><a href="http://www.youtube.com/swimmerbuddy1" TARGET="_blank"> <img src="../_images/youtube.png" alt="youtube.com" width="44" height="45" border="0" title="youtube.com"/></a></div>
        <div id="buyNow1">
          <p><a href="../order_now.html"><img src="../buynowbutton.png" alt="bt1" width="130" height="25" border="0" longdesc="Order Your Swimmer Buddy Today!!" /></a></p>
        </div>
      </div>
      <div id="mainNav">
        <ul id="mainNavcontent" class="MenuBarHorizontal">
          <li><a href="../index.htm">Home</a>        </li>
          <li><a href="../swimmer.html">Swimmer Buddy</a></li>
          <li><a href="../order_now.html">Order Now</a>        </li>
          <li><a href="#" class="MenuBarItemSubmenu">Gallery</a>
            <ul>
              <li><a href="../photo_gallery.html">Photos</a></li>
              <li><a href="../video_gallery.html">Videos</a></li>
            </ul>
          </li>
          <li><a href="#" class="MenuBarItemSubmenu">Zinger Products</a>
            <ul>
              <li><a href="http://www.winkyscoop.com/">Winky Scoop</a></li>
              <li><a href="http://www.1800succeed.com/">Hypmovation</a></li>
              <li><a href="http://www.1800succeed.org/">1800SUCCEED</a></li>
              <li><a href="http://www.zingerproducts.com">Zinger Store</a></li>
            </ul>
          </li>
          <li><a href="../about.html">About Us</a></li>
          <li><a href="../contact.html">Contact Us</a></li>
        </ul>
      </div>
      <!-- TemplateBeginEditable name="mainContent" -->
      <div id="pageInfo">
        <div id="info_page">
          <p class="regionID">Region ID</p>
          <hr class="breaklinePageInfo" />
          <p class="breadcrum">&gt; <a href="../index.htm">Breadcrum </a></p>
        </div>
        <div id="mainContent">
          <div id="content">
            <p>Main Content Goes her</p>
          </div>
        </div>
      </div>
      <!-- TemplateEndEditable -->
      <!-- TemplateBeginEditable name="buynow2" -->
       <div id="buyNow2"><a href="../order_now.html"><img src="../buynowbutton.png" width="130" height="25" /></a></div>
       <!-- TemplateEndEditable -->
      <div id="footer">
    <div id="footertext">
            <p class="footertextclass">Copyright © 2010 SwimmerBuddy.com. All rights reserved. SwimmerBuddy.com is part of <a href="http://www.zingerproducts.com" class="footertextclass">Zinger Products</a>. Designated Trademarks and brands are the property of their respective owners. This page was last modified Setember 28,2010. Swimmer Buddy - Pattent Pending 2010</p>
          </div>
        <div id="footerlinks">
            <p classs="footerlinkspacing"> <span class="footerlinkspacing"><a href="../Disclaimer.html">Disclaimer</a><a href="../terms.html"> Term of Service </a><a href="../contact.html">Contact Us</a></span>
    </div>
          </div>
    </div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("mainNavcontent", {imgDown:"../SpryAssets/SpryMenuBarDownHover.gif", imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>
    THIS IS THE MAIN.CSS
    @charset "utf-8";
    #networkicons {
    height: 50px;
    width: 200px;
    margin-top: 160px;
    margin-left: 15px;
    position: absolute;
    #wrapper {
    width: 933px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    text-align: left;
    position: relative;
    #mainNav {
    text-align: center;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    width: 934px;
    padding-bottom: 15px;
    clear: both;
    overflow: visible;
    #navwrapper {
    width: 935px;
    margin-right: auto;
    margin-left: auto;
    #mainContent {
    width: 910px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    padding-bottom: 20px;
    padding-top: 20px;
    #content {
    width: 910px;
    position: relative;
    #wrapper #footer #footerlinks p .footerlinkspacing a {
    margin-right: 20px;
    #footer {
    width: 930px;
    background-color: #fff;
    position: relative;
    margin-top: 5px;
    text-align: center;
    color: #000;
    padding-bottom: 10px;
    margin-bottom: 15px;
    #header {
    width: 930px;
    height: 209px;
    background-image: url(../_images/header.jpg);
    background-repeat: no-repeat;
    #buyNow1 {
    height: 25px;
    width: 140px;
    float: right;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-align: center;
    background-repeat: no-repeat;
    color: #666;
    padding: 5px;
    position: absolute;
    top: 160px;
    right: 150px;
    .buyNow1 {
    color: #666;
    #wrapper #pageInfo #info_page .breadcrum {
    color: #003;
    #wrapper #pageInfo #info_page .breadcrum a {
    color: #003;
    html, body {
    margin: 0px;
    padding: 0px;
    #buyNow2 {
    height: 25px;
    width: 130px;
    float: right;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    position: relative;
    #wrapper #buyNow2 a img {
    position: absolute;
    top: -30px;
    right: 50px;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    #pageInfo {
    width: 930px;
    background-image: url(../_images/pageinfobackground.jpg);
    background-repeat: repeat-x;
    background-color:#FFF;
    text-align: left;
    padding-bottom: 15px;
    margin-top: 18px;
    position: relative;
    overflow: visible;
    visibility: visible;
    #wrapper #mainNav #mainNavcontent {
    position: absolute;
    left: 0px;
    width: 930px;
    .regionID {
    font-size: 2em;
    font-weight: bold;
    color: #FFC;
    margin-top: 1em;
    margin-bottom: 0em;
    text-align: left;
    margin-left: 5px;
    .breaklinePageInfo {
    margin-top: 0.5em;
    color: #FAFEAB;
    .breadcrum {
    color: #003;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: underline;
    margin-top: -0.2em;
    margin-left: 15px;
    #breadcrum {
    font-weight: bold;
    color: #003;
    #footertext {
    width: 910px;
    font-size: 0.6em;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 10px;
    #footerlinks {
    width: 930px;
    font-size: 0.7em;
    font-weight: bold;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color: #000;
    position: relative;
    margin-top: 10px;
    margin-bottom: 5px;
    .footertextclass {
    color: #000;
    .footerlinkspacing {
    margin-top: -0.5em;
    color: black;
    height: 10px;
    font-style: normal;
    line-height: normal;
    font-variant: normal;
    letter-spacing: normal;
    p {
    margin: 0px;
    padding: 0px;
    body {
    text-align: center;
    margin-top: 5px;
    background-color: #073e78;
    background-image: url(../_images/background.jpg);
    background-repeat: repeat-x;
    background-attachment: scroll;
    font-size: 100%;
    THIS IS THE dropdown menu.css
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    cursor: default;
    width: auto;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
    z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
    margin: 0px;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    position: static;
    text-align: center;
    cursor: pointer;
    width: 132.8px;
    float: left;
    overflow: visible;
    visibility: visible;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    z-index: 1020;
    cursor: default;
    width: 132.8px;
    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: 8.2em;
    /* 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: #333;
    color: #FFF;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    background-color: #FFF;
    padding: 0.5em 0.75em;
    color: #333;
    text-decoration: none;
    background-image: url(../_images/bar-top.png);
    background-repeat: no-repeat;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
    color: #003;
    background-image: url(../_images/bar-Bottom.png);
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
    color: #003;
    background-image: url(../_images/bar-Bottom.png);
    background-position: bottom;
    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(../_images/bar-topsub.png);
    background-repeat: no-repeat;
    background-position: right top;
    /* 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(../_images/bar-topsubhover.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    /* 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(SpryMenuBarDownHover.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;

    Thanks a lot for that tip. It does improve it by a whole lot.. i c what my mistake was.. however, something is still off
    .. The Drop down menu is not behaving well...
    As you may c by the picture, the drop down menu now moves to the right. and is not because of the object to its left, i've modified that. Zinger Products Drop Down Menu also does the same.

  • HELP - CS5 - Site works in IE7 but not IE8 or Firefox?

    Hope some one can help or pint me in the right direction as i am a complete beginner.
    My webpage desplays perfectly in IE7 but not quite correctly in other browsers. Is there a bit of code i can add that will rectify this problem?
    My html code is:
    <!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>BDC Intranet</title>
    <link href="styles/check_cs5.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    body {
    background-image: url();
    </style>
    </head>
    <body>
    <div id="outerWrapper">
    <div id="container">
            <div id="header">
             <img src="images/logo.jpg" title="" alt="" class="logo" />
                <address>
                <p>Braintree District Council, Causeway House, Bocking End, CM7 9HB</p></address>
                <img src="images/email.jpg" title="" alt="" class="email" />
                <img src="images/bdclogo.jpg" title="" alt="" class="bdclogo" />
                <ul class="mainNavigation">
                 <li><a href="index.html">- Home</a></li>
              <li><a href="http://bdcintiis/intranet/">/ Library</a></li>
                    <li><a href="http://bdcintiis/Intranet/Library/">/ Directory</a></li>
                    <li><a href="http://bdcintiis/Intranet/PeopleDirectory/">/ Forum</a></li>
                    <li><a href="traffic.html">/ Traffic Report</a></li>
                    <li><a href="http://bdcintiis/intranet/">/ Local Weather</a></li>
         <li><a href="http://braintree-cp01/directory/directory.php?sID=10e1ae435af25009f959623e823f4a62&search= 1&SearchStr=&Items=1">/ Contacts</a></li>
                    <li><a href="http://bdcintiis/Intranet/Help/">/ Help</a></li>
                    </ul>
                <h1>You are currently at the intranet homepage</h1>
            </div>
            <div id="column1">
      <h2>Links</h2>
                <ul class="sideNavigation">
                 <li><a href="index.html">- Home</a></li>
                    <li><a href="http://bdcintiis/Intranet/Braintree-Colchester/">- BDC Working</a></li>
                    <li><a href="http://bdcintiis/Intranet/Organisational+Development+and+Learning/">- BDC Learning</a></li>
                    <li><a href="http://bdcintiis/Intranet/Social/">- BDC Social</a></li>
                    <li><a href="http://bdcintiis/intranet/">- Departments</a></li>
                    <li><a href="http://bdcintiis/intranet/">- Your Ideas</a></li>
                    <li><a href="http://bdcintiis/intranet/">- BDC Calendar</a></li>
                    <li><a href="http://bdcintiis/intranet/News/">- News & Events</a></li>
                    <li><a href="http://bdcintiis/intranet/">- Current Issue</a></li>
                </ul>
                  <div id="braintreeUpdate">       
                  <h5>Local News</h5>
                  <br />
    <script src="http://www.gmodules.com/ig/ifr?url=http://www.ajaxgaier.com/iGoogle/rss-reader%2B.xml&amp; up_title=&amp;up_feed=http%3A%2F%2Fwww.braintreeandwithamtimes.co.uk%2Fnews%2Fbraintree_ne ws%2Frss%2F&amp;up_contentnr=19&amp;up_fontsize=10&amp;up_titlelink=&amp;up_bullet=1&amp;u p_reload_feed=0&amp;synd=open&amp;w=190&amp;h=195&amp;title=&amp;border=%23ffffff%7C3px%2C 1px+solid+%23999999&amp;output=js"></script>      
            </div>
            <h5>Get in Touch</h5>
            <img src="images/getintouch.jpg" title="" alt+""/>      
            </div>
          <div id="column2">
                <h1>Local News about Braintree District Council</h1>
                <h2>Police crack down on motoring offences - click here for more information</h2>
                <div id="pageBanner">
                 <p>Police crack down on<br />motoring offences</p>
            </div>
                <div class="thumbContainer">
                <div class="thumb">
                 <img src="images/shaping.jpg" title="" alt="" />
                    <p>We have been trying to keep the momentum of the Shaping up for the Future conferences alive. click here</p>
                </div>
                <div class="thumb">
                 <img src="images/cycle.jpg" title="" alt="" />
                    <p>Serco are taking part in a charity bike ride, from London to Brighton. Click here for more information</p>
                </div>
                <div class="thumb">
                 <img src="images/field.jpg" title="" alt="" />
                    <p>A programme inspired by residents and will officially launch in June and run for two years. Click here</p>
                </div>
                </div>
      <div id="notices">
            <h3>Latest BDC Notices and Events</h3>
              <p>- Solid pine bedroom furniture - Solid pine chunky rustic bedroom furniture with oiled finish -  £150 ono - <a href="http://bdcintiis/Intranet/Notices/?ID=2271">Click here</a><br />
                - Toy Story Mania Wii Game + Ray Gun - Disneys Toy Story Mania Wii Game including the Ray Gun for it. £12 - <a href="http://bdcintiis/Intranet/Notices/?ID=2270">Click here</a><br />
                - For Sale: Ford Mondeo - 1995 Ford Mondeo (auto) 1.8 LX Taxed & MOT until Oct 2010 £250 - <a href="http://bdcintiis/Intranet/Notices/?ID=2269">Click here</a><br />
              - Bon Jovi tickets - 2 tickets for Bon Jovi at the O2 Sunday 20th June 2010 Block 107 on lower tier row E seats 226 and 227 £150 for the pair. - <a href="http://bdcintiis/Intranet/Notices/?ID=2311">Click here</a><br />    
      </div>
            </div>       
      <div id="column3">
                <h2>Links</h2>
                <ul class="rightNavigation">
                <li><a href="http://bdcintiis/Intranet/Login.htm">- Log into the Content Management System</a></li>
                <li><a href="http://bdcintiis/Intranet/Login.htm">- Open the live version of the BDC website</a></li>
                </ul>
          <h4>A to Z</h4>
                <p><img src="images/AtoZ.jpg" title="" alt+""/><br />
                  <br />
                </p>
    <h4>Local Weather Update</h4>
          <script src="http://www.gmodules.com/ig/ifr?url=http://hosting.gmodules.com/ig/gadgets/file/10916253967 9639397174/weather.xml&amp;up_location=Braintree&amp;up_scale=C&amp;up_title=Braintree&amp ;up_icons=Google&amp;synd=open&amp;w=188&amp;h=356&amp;title=&amp;border=%23ffffff%7C3px%2 C1px+solid+%23999999&amp;output=js"></script>
          </div>       
            <div id="footer">
            <h1>All of the pages on this website are the copyright © of Braintree District Council</h1>
            </div>
            <div class="advertContainer">
            <div class="advert">
             <img src="images/bottompics.jpg" title="" alt="" /> </div>
            </div>
        </div>
    </div>
    </body>
    </html>
    My CSS code is:
    body   { font-size: 100%; font-family: Arial, Helvetica, sans-serif; background: #c0c0c0; margin: 0px; padding: 0px; }
    #outerWrapper  { width: 1000px; margin: 0 auto; }
    #container  { width: 980px; padding: 10px; margin: 0 auto; float: left; background: #fff; }
    #header   { width: 980px; height: 150px; margin-bottom: 10px; position: relative; background: #595959; }
    #column1  { float: left; width: 198px; margin-right: 10px; border: 1px solid #adc411; }
    #column2  { float: left; width: 560px; }
    #column3  { float: left; width: 198px; margin-left: 10px; border: 1px solid #adc411; }
    #footer   { width: 980px; height: 35px; margin-bottom: 10px; margin-top: 10px; position: relative; background: #595959; }
    #header img.logo      { position: absolute; top: 5px; left: 10px; }
    #header img.bdclogo      { position: absolute; top: 5px; right: 5px; }
    #header img.email      { position:absolute; top: 77px; right: 131px; }
    #header ul.mainNavigation    { width: 980px; height: 20px; padding:0px; margin: 0px; background: #fff; position: absolute; bottom: 35px;    left: 0px; list-style: none; }
    #header ul.mainNavigation li   { float: left; list-style: none; width: 120px; display: block; background: #fff; }
    #header ul.mainNavigation li a   { display: block; color: #595959; text-decoration: none; font-weight: bold; line-height: 20px;  text-align: center; font-size: 80% }
    #header ul.mainNavigation li a:hover {  }
    #header h1        { color: #fefefe; margin: 0px; padding: 0px; position: absolute; bottom: 10px; left: 10px; font-size: 80%; }
    #header address       { position: absolute; top: 63px; right: 10px; color: #fefefe; font-size: 75%; font-weight: bold; font-style: normal; }
    #column1 h2,
    #column3 h2        { background: #adc411; color: #fefefe; line-height: 20px; width: 188px; margin: 0px 0px 10px 0px; padding: 4px 5px; font-size: 95%; }
    #notices        { float: left; height: 200px; width: 560px; margin-top: 10px; margin-right: 10px; border: 1px solid #adc411; font-size: 80%; }
    #notices h3        { background: #595959; color: #fefefe; line-height: 20px; width: 550px; margin: 0px 0px 10px 0px; padding: 4px 5px; font-size: 110%; }
    #column2 h1        { color: #adc411; margin: 0px; padding: 0px; font-size: 110%; font-weight: bold; }
    #column2 h2        { color: #595959; margin: 0px; padding: 0px; font-size: 80%; }
    #column2 #pageBanner     { width: 560px; height: 200px; position: relative; background: url(../images/police.jpg) no-repeat center; margin-bottom: 10px; margin-top:  10px; }
    #column2 #pageBanner p     { color: #fefefe; font-weight: bold; position: absolute; bottom: 10px; left: 10px; }
    #column1 ul        { float: left; list-style: none; padding: 0px; margin: 0px; }
    #column1 ul li       { float: left; clear: both; padding: 4px 5px; list-style: none; }
    #column1 ul li a      { display: block; text-decoration: none; color: #595959; font-weight: bold; font-size: 90%; }
    #column1 ul li a:hover     {  }
    #column1 h5        { background: #595959; color: #fefefe; line-height: 20px; width: 188px; margin: 0px 0px 5px 0px; padding: 4px 5px; font-weight: bold; font-size: 80%; }
    #column3 ul        { float: left; list-style: none; padding: 0px; margin: 0px; }
    #column3 ul li       { float: left; clear: inherit; padding: 4px 5px; list-style: none; }
    #column3 ul li a      { display: block; text-decoration: none; color: #595959; font-weight: bold; font-size: 90%; }
    #column3 ul li a:hover     {  }
    #column3 h4        { background: #595959; color: #fefefe; line-height: 20px; width: 188px; margin: 0px 0px 5px 0px; padding: 4px 5px; font-weight: bold; font-size: 80%; }
    .thumbContainer       { float: left; width: 570px; overflow: hidden; }
    .thumb         { float: left; width: 170px; height: 190px; padding: 5px; margin-right: 10px; background: url(../images/backroundgreen.jpg) no-repeat; font-size: 75%; font-weight: bold; color: #fefefe; }
    #footer h1        { color: #fefefe; margin: 0px; padding: 0px; position: absolute; bottom: 10px; left: 230px; font-size: 80%; }
    .advertContainer      { float: left; width: 980px; height: 35px; overflow: hidden; }
    .advert         { position: absolute; top: 890px; left: 330px; }

    I know i am really sorry the page is only a mock up so i dont have a link i could send you.
    If you have an email address i could email you the files as they are only small.
    If it helps to understand i have 2 screen shots below of how it looks in IE7 & IE8.
    Thank you very much for your help.
    IE7
    IE8 - The left and right green headings are not there and the bottam banner has moved up to the top?

  • Missing Text Input In IE7

    I have having an issue in IE7 on Vista where some text input
    is not accepted. When I start typing, some of the characters do not
    show up. I have tested this also in Firefox and it works fine.
    I have narrowed the problem down to the HTML wrapper, but
    cannot figure out how to fix it. When I go directly to the .swf
    file, it works fine, but the HTML wrapper causes this error. Has
    anyone else seen this or know how to fix it? Thank you.

    I also am having difficulty with certain keys when running
    flex in an HTML wrapper, I'm using it in the .Net WebBrowser
    control. In that scenario , the up, down, left, right, and enter
    keys do not work for Textinput fields. When I run it in IE 7
    standalone, I have no problems. When embedded in a WinForm inside
    of the WebBroswer control... it doesn't work so well. Not sure what
    the deal is.
    Keith

  • Image only viewable in Safari. Does not show in Firefox 3.0 (OS/Windows), IE7&8

    I used an index template .dwt and inserted a logo header image.
    Using Browser lab it renders in Safari but not in Firefox 3.0 for both OS/Windows, IE 7&8, and Chrome.
         Using FILE-->VIEW IN BROWSER, which is Safari it is fine.
              A friend used FIrefox and IE7 and the image did not show or same results as Browser Lab.
    Orginial code:   <div class="header"><img src="../pictures/logo_header.jpg  :  Safari good, other browsers did not show image
    2nd try: Code:  src="/~sanchezg/pictures/logo_header.jpg", This time Safari did not show header image either.
    Location:  www.unm.edu/~sanchezg
    From PROPERTIES--> SRC --> BROWSE FOR FILE
    URL:  ../pictures/logo_header_jpg
    Relative to: Document      : index.dwt
      Selecting 'Change default Link Relative To in the site definition:
         Default Images folder:  /User/xxxxx/Sites/GabeSanchezFIles/Pictures
         Links relative to:  Document is selected
            Web URL:  http//www.unm.edu/~sanchezg
    What are your thoughts?
    Thank you

    I'm troubled by these answers because they seem to further muddy the water.  Here's the important concept -
    All links in the TEMPLATE file should be one of three kinds -
    1.  Relative to the template file, e.g.,
    <a href="../ (meaning that you must go up one level from the template folder
    to reach the root of the site, hence all other files, since none of them
    should be in the templates folder)
    2.  Relative to the site root, e.g.,
    <a href="/ (meaning that one would begin looking for the linked file at the
    root of the site and follow the pathing from that point)
    3.  Absolute, e.g.,
    <a href="http:// (meaning that the link is to a page external to the site).
    Seems that none of the suggestions are putting you on that path first.

  • On 6u13, new plug-in fails to load on Windows 2003 and IE7

    I'm attempting to load an applet in IE7 with an OBJECT tag in Windows 2003. This is a mature product that has, for this release, moved from 5 to 6. The CLSID was changed from the CAFEEFAC one for any version of 5 to the one for any version of 6. Java 5 version worked fine on Windows 2003. Now, on some, but not all, of our 2003 systems the ActiveX control for the new Java Plug-in fails to load.
    These configurations work:
    - Windows XP and any Java and any IE
    - Windows 2003 and Java5 and any IE
    - Windows 2003 and Java6, old plug-in, and any IE
    - Windows 2003 and Java6 and APPLET tag and any IE
    This one doesn't...on some machines:
    - Windows 2003 and Java6, new plug-in, IE7, OBJECT tag
    This is not a security problem. If I turn off the new style plug-in in the control panel, it works. However, I'd really like to avoid doing this, as the new plug-in has much needed features. Also, the APPLET tag works where the OBJECT tag doesn't. I can implement this change if needed, but it would be fairly painful and I'd prefer to avoid it.
    Does anyone know why this might be happening? Is there a good way for me to diagnose this? The browser is quite silent as to what the error might be.
    I appreciate any help. This one is truly vexing me!

    Okay, I'm wrong...I thought I could move to APPLET tags...I cannot. LiveConnect from JavaScript to Java does not support APPLET tags, only OBJECT tags. This makes my problem worse, as I don't have any recourse so far, except to disable the new plugin.
    However, this did lead to a clue: disabling the new plugin caused it to work again. When the new plugin was re-enabled to see it fail again, much to my surprise, it worked! Does anyone know what flipping that option actually does? Registry change or something else?

  • CommandNavigationItem does not show tooltip text in IE7 alone.

    ADF Version - 11.1.1.4.0/11.1.1.5.0
    The 'commandNavigationItem' does not display the tooltip text provided for 'shortDesc' attribute. This is seen just in IE7. Works well with IE8, Firefox, Safari and Chrome.
    Pasting the snippet of the code used:
    <f:facet name="end">
    <af:panelGroupLayout layout="horizontal" id="pt_pgl7">
    <af:navigationPane hint="buttons" id="pt_np1">
    <af:commandNavigationItem icon="#{imagesRes.HOME}"
    immediate="true"
    rendered="#{appData.personAuthenticated}"
    shortDesc="#{globalRes['MENU.MAIN.HOME.DEFALUT']}"
    action="#{appData.getHomeAction}"
    id="pt_cni1" text=" "/>
    </af:navigationPane>
    </af:panelGroupLayout>
    </f:facet>

    can u try enabling XMLHTTP support and javaascript support in IE7 and check

  • Problem with Flash Player in IE7 / IE8

    I'm stumped.
    I've got a problem running Flash content in IE7 / IE8. I had
    Adobe Master Suite CS3 installed on my laptop, and had no issues
    running Flash content in any browser including IE7 when this was
    installed. I've recently un-installed it and can no longer run
    Flash content in IE7. I've tried re-installing Adobe Flash Player
    from the Adobe website and, whilst the browser window is open, I
    can run Flash contect with no issues. However, when IE7 is closed
    and then re-opened, it stops running Flash content again. No errors
    are experienced, just a black space or a "you must have flash
    installed to view this content" message where the Flash content
    should be. If I re-install again, I can view the content until I
    close IE7. I've tried upgrading to IE8 but I'm getting the same
    problem.
    I have FireFox 3, Opera and Google Chrome installed also, and
    have no issues playing Flash content in these browsers.
    Please help!

    All sorted now...
    Removed Flash Player and its ActiveX control. Completely
    reset IE8. Re-installed Flash Player 9. Now working.
    Should have done this hours ago!

  • Problem with CSS in IE7

    Hi ,
    In my jsp page, am using a css class as below, it is working fine on IE6 but it is not coming properly on IE7. Please advise some one on this...
    Thanks in advance....!!!
    .movebutton
    BORDER-TOP-WIDTH: 1px;
    FONT-WEIGHT: bold;
    BORDER-LEFT-WIDTH: 1px;
    FONT-SIZE: 8pt;
    BORDER-LEFT-COLOR: white;
    BACKGROUND: url(../Images/movebutton.bmp) fixed repeat-x center 50%;
    BORDER-BOTTOM-WIDTH: 1px;
    BORDER-BOTTOM-COLOR: white;
    TEXT-TRANSFORM: capitalize;
    WIDTH: 20px;
    COLOR: white;
    BORDER-TOP-COLOR: white;
    FONT-FAMILY: "Verdana";
    HEIGHT: 20px;
    TEXT-ALIGN: center;
    BORDER-RIGHT-WIDTH: 1px;
    BORDER-RIGHT-COLOR: white
    }

    What does this have to do with Java? These are Java forums.
    And in anycase you haven't even specified a problem; and apparently you aren't aware that CSS doesn't render the same on all browsers just like some JavaScript methods are browser specific.

  • Animated gif doesn't work with IE7

    Hi,
    Jdev 11g, TP4.
    I use af:statusIndicator to show activity to the user. If there is communication with the server than gif should be animated.
    Therefore I have following skin defined:
    af|statusIndicator::idle-icon 
      content:url("/images/TE_mark_pos_red_rgb_32x32.gif");
    af|statusIndicator::processing-icon,
    af|statusIndicator::connecting-icon,
    af|statusIndicator::reconnecting-icon
      content:url("/images/mark_pos_red_rgb_animated_32x32.gif");
    }With FireFox 2 this works as expected but with IE7 the gif keeps non-animated.
    Same behaviour with splash-screen:
    af|document::splash-screen-icon{
      content:url("/images/mark_pos_red_rgb_animated.gif");
    }Do I need some specific settings in IE7 to show animated gif's?
    regards
    Peter

    Hello Frank,
    problem is solved.
    I have installed IE7 on a Windows 2003 Server Edition and used remote desktop client to test the application.
    It seems that either a setting on W2003 or the remote desktop client avoid to see the animation.
    On locally installed IE7 animated gif's works fine.
    regards
    Peter

  • HP Smart Web Printing feature, problem with IE7 and FireFox3

    "HP Smart Web Printing" problem with Internet Explorer 7 and FireFox 3I have a laptop that came with: Windows Vista Home Premium, Internet Explorer 7, FireFox 1.9. Everything worked fine.
    Recently I bought a "HP Photosmart C4580 All-in-One" printer that came with a free software "HP Smart Web Printing".
    Smart Web Printing worked fine with FireFox 1.9 browser. I liked it very much, because with it, I could print only the portions from the web page that I want, thus saving on inks. It really does more than that.
    With IE 7, Smart Web Printing was a disaster. IE 7 stopped working. Every time I closed a web browser window, IE7 would stop working and start all over again. It happened all the time.
    On suggestion from Microsoft Windows help desk I "Reset IE Setting". This solved the IE 7 problem , but it also removed the Smart Web Printing feature.
    Next, one day I downloaded latest version of FireFox browser "FireFox 3". Once again I lost the Smart Web Printing Feature, because it was not compatible with FireFox 3.
     Now here I am with no "Smart Web Printing" feature at all.
     Any suggestion how can I get "Smart Web Printing" feature back. I love the feature
    Thanks

    March 27th 2009 I've just downloaded HP Smart Web Print onto an HP a6500f desktop system running Vista-64.  I first installed it as a limited user and I get no icon in the IE7 taskbar.  I examined the manage add-ons dialog and it was installed but the toolbar configuration has no control icon for SWP icon.
    Then I logged off and logged on as a privileged user and downloaded again and tried to install.  This 2nd installation actually REMOVED my first installation.
    So I then downloaded for a third time and installed and it finished installing but there was no SWP icon in the tool bar.  I examined the Manage Add-Ons dialog and saw one in there on the left side.  I transfered the inactive icon to the active side of the dialog and then I immediately had TWO SWP icons in the task bar. (*mumble grumble*).  So I removed one and all is OK now as long as I use the IE7 as a privileged user. 
    If I go back to being a limited user (not an unreasonable thing to do is it?) I don't have an SWP icon.  Trying to install SWP application again only cause it to want to remove the existing installation.
    I'm not very impressed with this behavior. 
    Is there anything that can be done to get SWP to work for limited users?

  • Oracle Application is not working on IE7

    Hi All,
    I have updated my IE6 with IE7 and when i am trying to run oracle application, i successfully logon but When application try to run applet that time IE terminated by application.
    and got this mkessage.
    Problem caused by Java
    This problem was caused by Java. Java was created by Sun Microsystems, Inc..
    Microsoft has been unable to contact the manufacturer and has no further information available at this time.
    Recommendation
    For more information about Java, go online to the Sun Microsystems, Inc. website:
    Sun Microsystems, Inc.
    If you are unable to fix this problem and continue to receive errors, you can also remove Java.
    What IE setting i need to do. I have window-XP,oracle application 11.5.10.2, Jinitiator 1.3.1.21 and 1.3.1.26.
    Thanks
    Ravi

    Certified Configurations of Windows Vista + IE7 with E-Business Suite
    Release 11i -- 11.5.10.CU2
    - Applications 11.5.10 plus Maintenance Pack 11.5.10 CU2 or later
    - Oracle Developer 6i Patchset 18 (6.0.8.27.x) or later (Metalink Note 125767.1)
    - Oracle Applications Technology 11i.ATG_PF.H Rollup 4 (RUP 4) (patch 4676589) or later
    - Microsoft Vista desktop clients running Internet Explorer 7
    - Sun Java plug-in (JRE) 1.5.0_12
    Release 11i -- 11.5.9.CU2
    - Applications 11.5.9 plus Maintenance Pack 11.5.9 CU2 or later
    - Oracle Developer 6i patchset 18 (6.0.8.27.x) or later (Metalink Note 125767.1)
    - Oracle Applications Technology 11i.ATG_PF.H Rollup 4 (RUP 4) (patch 4676589) or later
    - Microsoft Vista desktop clients running Internet Explorer 7
    - Sun Java plug-in (JRE) 1.5.0_12
    Release 12
    - Oracle Applications Release 12 with R12.ATG_PF.A.DELTA.3 (patch 6077669) or later
    - Microsoft Vista desktop clients running Internet Explorer 7
    - Sun Java plug-in (JRE) 1.5.0_12
    http://blogs.oracle.com/schan/2007/11/08

  • Themes like Topaz are not working correctly using IE7 or IE8?

    We are in the middle of an upgrade from APEX 3.1.2 to 4.0.2 and with this upgrade we also want to change the themes the apllications are using. In this case we are switching from 'Sand' to 'Topaz', but we encounter a problem with Standard Reports Regions. If you have a column with a setting 'Display as Text (based on LOV, does not save state) and the column has no value (null), the table cell is not drawn correctly on the screen. The cell borders (top and bottom) are not drawn, resulting in interrupted lines on the table rows. The same problem occurs if you have a column that contains a link, but the column value is empty.
    When we use another browser (e.g. Google Chrome) the reports region is displayed correctly. However the standard browsers at our company are IE7 and IE8.
    Sort of a workaround is to display a null value as   or - , but for columns that contain links, that is a problem, because it will result in a clickable link on an 'empty' column value.
    We tried other themes like Modern Blue, Simple Red, Builder Blue, Sunrise, etc. but they all have the same problem. Is there a workaround for this problem, because we reallty want to use the new Themes and using another browser is no option?
    For an example, check problems in MGR and DEPT columns:
    http://apex.oracle.com/pls/apex/f?p=9662
    Thanks,
    Patrick
    Edited by: PatrickC on Feb 24, 2011 11:12 AM

    Appears to be due to empty-cellsIE's lack of/buggy support for the <tt>empty-cells</tt> property used in the report CSS.
    I think you'll have to work round this by including some content in the cells using <tt>nvl</tt> etc in the query or the report Show Null Values as property. To avoid the problem you mentioned relating to clickable "empty" links, try using the zero-width space character entity<tt>&amp;#8203;</tt> zero-width space character entity for this content. It should be effectively invisible.

  • Getting applets to work in Firefox or IE7!!

    Hi folks.
    I've been reading Jason Hunters excellet book on Java Servlet Programming and become rather stuck on being able to get applets to work in a browser.
    1) I managed to briefly get an Applet to work in IE7. Then things went astray (I say work, because applet initially displayed correctly graphically)
    2) I introduced a bug and tried to redisplay. And haven't been able to recover.
    3) When 2) occurred I swapped over to Firefox, since IE7 doesn't have a Java Console. (& theres no setting to enable it in security settings either)
    4) Then Firefox prompted to download JRE... This was an odd one to me.... Since I already had a Java runtime...
    I got this through downloading file java_app_platform_sdk-5_04-windows.exe
    java -version yeilds:
    Microsoft Windows XP [Version 5.1.2600]
    (C) Copyright 1985-2001 Microsoft Corp.
    C:\Documents and Settings\Jeremy>java -version
    java version "1.6.0_04"
    Java(TM) SE Runtime Environment (build 1.6.0_04-b12)
    Java HotSpot(TM) Client VM (build 10.0-b19, mixed mode)
    C:\Documents and Settings\Jeremy>
    Browser Versions
    IE : is at version 7.0.5730.13
    Firefox started out at 2.0.0.12... Now Firefox didn't seem to detect the JRE
    5) It said additional plugins are required to display the media on this page...
    6) I clicked the button to "Install missing plugins"
    It then presents Plugin Finder Service with "Available Plugin Downloads" of Java Runtime Environment with checkbox ticked.
    7) I clicked "next", at which point it completes saying
    No plugins were installed
    Java Runtime Environment failed with "Manual Install" button...
    Clicking said button gave me executeable xpiinstall.exe from http://sdlc-esd.sun.com
    8) When I ran this it
    a) proceeded to cause Firefox to crash and a report was sent to Mozilla...
    b) created a restore point called "Installed Java (TM) 6 update 5..
    9)So now I went back to IE 7 having given up on Firefox...
    Now it complained about missing classes which I felt sure were in a jar I'd deployed in Tomcat...
    10) I tried to validate my assumptions by looking inside the Jar with Winzip...
    Then I got a pop up with "Java Virtual Machine Launcher" in its title saying..
    "Failed to load Main-Class manifest attribute from cos.jar"
    At this point I realised 8) was the culprit after posting here and looking at possible causes for said pop-up.
    [http://www.artima.com/forums/flat.jsp?forum=1&thread=61427&start=75&msRange=15]
    None of solutions posted there seemed to apply to me
    11) So now I restored to a restore point prior to 8) and though my problems were over
    12) I've since upgraded to Firefox 2.0.0.14. Firefox pushed update to me. Also tried manually uninstalling and downloading file. Still saying missing plugin!!!
    13) I've tried changing my tags in my html from
    APPLET to OBJECT for IE7 or EMBED for Firefox..
    I've validated my APPLET with APPLETVIEWER following advice posted here:
    [http://java.sun.com/docs/books/tutorial/deployment/applet/index.html]
    No tell tale signs appear in Tomcat Console or logs..
    *The only thing that seems weird is codebase tag*
    14) Book I've been reading mentioned putting both html code and applet class in root folder of tomcat
    I've hosted both files here:
    C:\Apps\apache-tomcat-6.0.16\webapps\ROOT
    15) When I test with appletviewer from this folder and codebase set to / appletviewer doesn't find class.
    I think I need to set this so when web browser runs it finds class. Maybe this is the route of my problems.
    What's haunting me here though is placeholder for applet graphic worked at one point!
    I don't recall fussing with codebase attribute of applet tag, yet suddenly things stopped working.
    16) When I tried to verify with appletviewer I had to remove codebase attribute completely to get things to work.
    Here are three versions of html file. Firefox version doesn't seem to be recognized by Appletviewer
    Applet tag version: (BTW have tried with CODEBASE=/ too. This was how it appeared in book, Remember I'm hosting in Tomcat 6.0.16)
    {code}
    <HTML>
    <HEAD><TITLE>Daytime Applet</TITLE></HEAD>
    <BODY>
    <CENTER><H1>Daytime Applet</H1></CENTER>
    <CENTER><APPLET CODE="DaytimeApplet.class" WIDTH=300 HEIGHT=180></APPLET></CENTER>
    </BODY></HTML>
    {code}
    IE Version only
    {code}
    <HTML>
    <HEAD><TITLE>Daytime Applet</TITLE></HEAD>
    <BODY>
    <CENTER><H1>Daytime Applet</H1></CENTER>
    <CENTER><object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
    width="300" height="180">
    <param name="code" value="DaytimeApplet.class"></object></CENTER>
    </BODY></HTML>
    {code}
    Firefox version with JRE matching what java -version says precisely and using "jpi-version" so need for download instructions url 'should' be redundant..
    {code}
    <HTML>
    <HEAD><TITLE>Daytime Applet</TITLE></HEAD>
    <BODY>
    <CENTER><H1>Daytime Applet</H1></CENTER>
    <CENTER>
    <embed code="DaytimeApplet.class"
    width="300" height="180"
    type="application/x-java-applet;jpi-version=1.6.0_04"/>
    </CENTER>
    </BODY></HTML>
    {code}
    I don't want to be staring at a placeholder in a Web Browser.
    I want to GUI as it appears in AppletViewer and how it once had it working in IE7!
    You wouldn' t think that was to much to ask for would you! Sorry for length of this post.
    Any clues as to where to go next would be greatly appreciated as I'm pulling hairs out with frustration at the moment...
    A few of footnotes:
    1) I've relaxed my security zone settings for intranet, added localhost to local intranet sites..
    2) I've tried deleting all temporay files in IE7 even to point of resetting to install setup thinking there may be some sort of caching issue with bad applet... No luck
    3) I can still get Glassfish server to login to Admin Console.
    So the integrity of my pc should me intact based on the shenanigans of point 11. Restoring to get rid of second JRE

    paulcw wrote:
    I'm not sure what to tell you. I've never had any trouble installing the JRE and getting applets to work. Maybe it's an IE7 thing. Firefox is usually easier to configure.
    Anyway, it sounds like something that you need to be sitting at your computer to fix, so I don't know how useful a forum will be. It might be best just to ask a coworker with a lot of arcane knowledge to take a look at it.1) Unfortunately I'm learning from home and don't have the luxury of asking a co-worker. Have fired off email to one of folks at Sun..
    In my efforts to try and track down the problem yesterday, Google uncovered some interesting findings regarding Caching of Applets. Thought I'd share this:
    2) [http://www.velocityreviews.com/forums/t603400-ltobjectgt-tag-and-applet-caching.html]
    There is an interesting post some way down posted by james.a.cleland
    Quote:
    "My solution is to x-c in the Java console to clear
    this cache. This works without unloading the JVM and while the applet
    is running. It looks like the browser isn't caching any applets. At
    least my browser cache doesn't contain any, although I do regularly
    use half a dozen, so it must be the JRE. Anyway, clearing through the
    console solves my problem".
    I can't access Java Console in IE7 as you know...
    3) There is always another way to skin a cat regarding clearing cache.
    Found this here:
    [http://www.aurigma.com/Support/DocViewer/28/UpdatingImageUploaderonClientSide.htm.aspx]
    Search for Java section
    Quote:
    "Java applets are stored in the cache that is accessible through the Java control panel. Follow these steps to do it:
    Open Java Plug-in Control Panel. Depending on the platform, it can be found in different locations:
    Windows: Control Panel -> Java Plug-in
    Click the Cache tab.
    Click Clear to clear all cached applets."
    *Problem is that there is no Java Plug-In within Control panel. Mentioned this with Coffee Cup reference above..*
    4) Also saw this article on *"How to troubleshoot Java applet and component download problems"* at:
    [http://support.microsoft.com/kb/241111]
    Java console or output log section:
    Javalog.txt in the windows\java or winnt\java directory
    windows\java contains
    - classes
    - trustdb
    No such file: classes & trustdb are empty folders.
    5) I have same problem mentioned here:
    [http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=915520&SiteID=1]
    Quote:
    "I cannot get java applets to display on any web pages - instead this message appears:
    alt="Your browser understands the <APPLET> tag but isn't running the applet, for some reason." Your browser is completely ignoring the <APPLET> tag! "
    Yep. That's my predicament.
    BTW: Get this by doing test here:
    [http://java.sun.com/products/plugin/1.5.0/demos/applets/Clock/example1.html]
    6) Sun's Verify Installation fails on me too:
    [http://www.java.com/en/download/installed.jsp]
    7) I'm interested in knowing how IE7 caches the applets too. Does it store some sort of class-id in the registry? (I'm on XP SP2)
    8) Is there an installation integrity verifier for Sun? Something that verifies the integrity against a baseline install and reports anomalies.Like I mentioned earlier I've got java_app_platform_sdk-5_04-windows.exe file installed. Not the latest incarnation, but the one immediately before. With SE 1.6.0_04-b12 built built into it

Maybe you are looking for