My vertical Spry is not displaying properly in IE 8

I am working on my first website using Dreamweaver CS4 and my spry is not displaying properly over my flash photo gallery.  It looks ok in Firefox (although the borders are missing on my submenu for "sheds tool list") but in IE 8 the submenus can't be seen.  How can I correct this?
My website is www.toolshedstudio.com
Here's my css:
@charset "UTF-8";
/* SpryMenuBarVertical.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, a fixed width box with no margin or padding */
ul.MenuBarVertical
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    cursor: default;
    width: 10em;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
/* 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 same fixed width as parent */
ul.MenuBarVertical li
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    position: relative;
    text-align: left;
    cursor: pointer;
    width: 170px;
    border-top-style: outset;
    border-right-style: outset;
    border-bottom-style: outset;
    border-left-style: outset;
    border-top-width: thin;
    border-right-width: thin;
    border-bottom-width: thin;
    border-left-width: thin;
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarVertical ul
    margin: -5% 0 0 95%;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    position: absolute;
    z-index: 1020;
    cursor: default;
    width: 8.2em;
    left: -1000em;
    top: 0;
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarVertical ul.MenuBarSubmenuVisible
    left: 0;
/* Menu item containers are same fixed width as parent */
ul.MenuBarVertical ul li
    width: 8.2em;
DESIGN INFORMATION: describes color scheme, borders, fonts
/* Outermost menu container has borders on all sides */
ul.MenuBarVertical
    border: 1px none #CCC;
/* Submenu containers have borders on all sides */
ul.MenuBarVertical ul
    border: 1px solid #CCC;
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarVertical a
    display: block;
    cursor: pointer;
    background-color: #000;
    padding: 0.5em 0.75em;
    color: #CCC;
    text-decoration: none;
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
    background-color: #33C;
    color: #000;
    font-size: 100%;
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
    background-color: #33C;
    color: #FFF;
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.MenuBarVertical 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.MenuBarVertical 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.MenuBarVertical 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.MenuBarVertical li.MenuBarItemIE
        display: inline;
        f\loat: left;
        background: #FFF;

Hi
You flash movie doesn't have the parameter wmode=transparent. If  you set that, the menu bar will be on top.
<param name="wmode" value="transparent">
I hope this helps.
Ben

Similar Messages

  • Spry Widget not displaying properly

    Forgive me for what is, I am sure, a simple problem: I'm new to working in DreamWeaver and am making a site for a friend to teach myself. 
    I have added a vertical spry menu to my webpage.  One item from the menu has a few more specific topics and so a few more items have been added as a submenu.  I had done something that caused there to be a big space (the same height as the pop out submenu) to appear within the main menu.  I fiddled around and now seem to have changed something causing the submenu to display in the main menu along with the rest of the items. How do I make the submenu return to being invisible until the cursor is held over the specific menu item, and then pop out to the right?
    As I'm new to all of this, I'm not even entirely sure of what part of the code to show in order for someone to tell what's wrong... Hopefully this is of help.  The 5 items (Highland Cattle through to Produce) are intended to be the fly out submenu. 
    <div class="sidebar1">
        <ul id="MenuBar1" class="MenuBarVertical">
          <li><a href="#">Home</a></li>
          <li><a href="#">About Us</a></li>
          <li><a href="#" class="MenuBarItemSubmenu">Our Products</a>
            <ul>
              <li><a href="#">Highland Cattle</a></li>
              <li><a href="#">English Black Sheep</a></li>
              <li><a href="#">Rideau Arcott Sheep</a></li>
              <li><a href="#">Heritage Poultry</a></li>
              <li><a href="#">Produce</a></li>
            </ul>
          </li>
          <li><a href="#">Buying Local</a></li>
          <li><a href="#">Heritage Breeds</a></li>
          <li><a href="#">Photo Gallery</a></li>
          <li><a href="#">Contact Us</a></li>
        </ul>
      </div>
      <div class="content">
    Thanks!  Robyn

    As I'm new to all of this, I'm not even entirely sure of what part of the code to show in order for someone to tell what's wrong...
    The best approach by far is to upload a page to the web which displays the problem you're facing.
    Then post a link to that page here. A link gives us access to every file that we need to inspect.
    That way, it's quick and easy for you to post and quick and easy for us to check and diagnose with browser based troubleshooting tools and will gain many more responses here.

  • Spry data not displaying properly (IE Runtime Error)

    Built a few pages for a site using Spry to pull in some XML
    pages.
    They are supposed to update when a certain selection is
    chosen and it works flawlessly in Firefox, Opera and Safari but not
    in IE.
    IE just shows the SPRY placeholders and doesn't push any XML
    data into the fields.
    I tried to run the browser compatibility and cleaned up
    anything that may be affecting it but nothing is showing an error.
    The weird thing is, the page has a total of 585 lines but IE
    is saying there is an 'Unknown Runtime Error' on the page at Line:
    1163 Char: 4.
    does the browser continue to count lines as it pulls in
    additional information from attached files (like external css,
    javascripts, xml, etc.)?
    If so, how do I find out where the error is?
    i'm pounding my head against the wall trying to solve this,
    but i'm not having much luck.
    basically, i'm looking for two things:
    How to find the error in the code.
    How to FIX the code to work in IE.
    any help would be greatly appreciated.
    I posted this over in the DW forums, but thought it might be
    beter solved over here in the SPRY forums.
    TIA!

    quote:
    Originally posted by:
    Donald Booth
    You can't have spry:regions on <tr> or <table>
    Make sure you have then in <div>s or other tags.
    You have lots of little regions. You can have a region and a
    repeat in the same tag.
    Fix that and then try it.
    How do I use both detail regions and master regions in a spry
    div then?
    my whole problem was, I couldn't get the menu items into the
    same table as the detail regions.
    If I put the whole table into a spry detail region it would
    just read the menu items as a detail region and give me static
    data. and if I did it as a standard region, the stuff I wanted to
    update wouldn't show as a detail region.
    I tried to keep them in <span> tags within the table
    but I guess IE doesn't like that.
    When I try to insert a detail region within an already
    existing DIV tagged spry region I get the DW error "
    Spry does not support nesting of spry:region blocks.
    Obviously, I must be missing something.
    it's been a long time since I built sites from scratch
    (99-00), but because my company asked, it is now my project.
    I have to relearn stuff and am not 100% familiar w/ building
    using DIV, SPAN and CSS. I have the basics; just enough to get me
    into trouble. maybe it's time to go back through the Spry
    Handbook?

  • Spry Vertical Menu does not display properly when uploaded to server.

    I am using Dreamweaver CS5 Version 11.0 Build 4909 on Windows XP.  The website I am working on is displaying the ordered list incorrectly.  The drop down submenus are not lined up underneath each other.
    So I did a basic one and uploaded it to the server and had the same outcome.  Locally it looks fine but uploaded to the hosting server not fine.  Below is the code from the document called deleteme.html.  I am new to all this so I apologize if this seems basic.  Thanks for your help in advanced.
    <!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>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="container">Content for  id "container" Goes Here
      <ul id="MenuBar1" class="MenuBarVertical">
        <li><a class="MenuBarItemSubmenu" href="#">Item 1</a>
          <ul>
            <li><a href="#">Item 1.1</a></li>
            <li><a href="#">Item 1.2</a></li>
            <li><a href="#">Item 1.3</a></li>
          </ul>
        </li>
        <li><a href="#">Item 2</a></li>
        <li><a class="MenuBarItemSubmenu" href="#">Item 3</a>
          <ul>
            <li><a class="MenuBarItemSubmenu" href="#">Item 3.1</a>
              <ul>
                <li><a href="#">Item 3.1.1</a></li>
                <li><a href="#">Item 3.1.2</a></li>
              </ul>
            </li>
            <li><a href="#">Item 3.2</a></li>
            <li><a href="#">Item 3.3</a></li>
          </ul>
        </li>
        <li><a href="#">Item 4</a></li>
      </ul>
    </div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>

    Hello all,
    Thanks to everyone who replied to my post.  I have it working now but I have other issues that I will post separately.
    Here was my thought process and you can tell me if I am right or wrong.  I was working with multiple pages that I was using Spry.  I had only one folder set that all the Spry Assets were being saved into.  My thinking was that they were getting over written.  So I deleted the folder and re-built the page.  When I deleted Spry Assets folder it showed me I had 6 pages linked to the Spry Assets folder.  I also deleted my Spry Assets folder on my hosting server....thought I would really start from scratch.  When I went to upload the files I created a SpryAssets folder and what I realized I had originally put a space  between the y and a of the folder name.  So I am not sure if the elements in the Spry Assets folder were getting over written or it was because I had a space in the folder name.  Thanks again, Mike

  • Spry menu not displaying properly in IE8

    Right up front, I'm new to Spry.
    I built a flyout menu, nothing fancy just standard.
    Works and looks fine in Firefox, Opera, Safari.  But IE 8 on a PC the first items are "running together and the "twisty >" is under the text.
    Are there any known issues I need to be aware of when using Spry menus in IE?
    Thanks for any comments or suggestions.
    Steve

    Yes you're right code would help.  I took the smallest page and pasted in the code below.  I have bolded the spry menu itself.  I'm going to create another menu on a new page from scratch and without any og the other pieces of the page and see if it works in IE8
    anothe page with the same munu is at:
    http://davidwrightlandscape,com/index2.html
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>David H Wright - Landscape Architect</title>
    <style type="text/css" media="all">
    <!--
    @import url("CSSSculptor/1ColumnFixedCenteredHeaderandFooter_TahitiSea_css/screen.css");
    -->
    </style>
    <style type="text/css" media="print">
    <!--
    @import url("CSSSculptor/1ColumnFixedCenteredHeaderandFooter_TahitiSea_css/print.css");
    body {
    background-color: #FFF;
    -->
    </style>
    <script type="text/javascript" src="CSSMenuWriter/cssmw/menu.js"></script>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <style type="text/css" media="all">
    <!--
    @import url("CSSMenuWriter/cssmw/menu.css");
    -->
    </style>
    <!--[if lte IE 6]>
    <style type="text/css" media="all">
    @import url("CSSMenuWriter/cssmw/menu_ie.css");
    </style>
    <![endif]-->
    <link href="SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="outerWrapper">
      <div id="header">
        <p align="center"><img src="images/DaveWright-logo-WEB.jpg" width="345" height="220" alt="Logo" /><img src="images/DSC_0076.jpg" width="416" height="220" alt="Lindsey OverHead - 076" /><br />
        </p>
    PO Box 100 - Branchville, NJ 07826 - Phone 973-948-2090 - Fax 973-948-2083 </div>
      <div></div>
        <img src="images/Servicebanner2-small.jpg" alt="" width="961" height="30" border="0" usemap="#Map1">
      <map name="Map1" id="Map1">
        <area shape="rect" coords="189,4,380,27" href="firm.html" alt="Firm Information">
             <area shape="rect" coords="61,2,154,27" href="index.html" alt="Return Home">
        <area shape="rect" coords="401,5,532,26" href="portfolio.html" alt="portfolio">
        <area shape="rect" coords="553,5,723,26" href="site.html" alt="Site Amenities">
        <area shape="rect" coords="754,5,903,27" href="contactus.html" alt="Contact Us">
      </map>
      <div id="contentWrapper">
        <div id="content">
          <h1 align="center"><img alt="" name="Image1" width="220" height="100" id="Image1" /><img src="" alt="" width="220" height="100" id="Image2" /><img src="" alt="" width="220" height="100" id="Image3" /><img src="" alt="" width="220" height="100" id="Image4" /></h1>
    <h1><br />
      Plantings Selection and Examples</h1>
    <p> </p>
    <p align="center"><img src="" alt="" width="920" height="500" id="Planting_collage" /></p>
        </div>
      </div>
      <div id="footer">
          <div><span class="parent"><a href="#"><img src="images/DaveWright-logo-FOOTER.jpg" alt="David Wright Landscaping" width="120" height="61" align="left" id="logo" style="background-color: #009966;" /></a></span>
            <ul id="MenuBar1" class="MenuBarVertical">
              <li><a href="index.html">HOME</a>          </li>
              <li><a href="firm.html" class="MenuBarItemSubmenu">FIRM INFORMATION</a>
                <ul>
                  <li><a href="aboutus.html">About Us</a></li>
                  <li><a href="services.html" class="MenuBarItemSubmenu">Services</a>
                    <ul>
                      <li><a href="design.html">Design</a></li>
                      <li><a href="installation.html">Installation</a></li>
                      <li><a href="gardeningservices.html">Gardening Services</a></li>
                      <li><a href="siteplanning.html">Site Planning</a></li>
                    </ul>
                  </li>
                  <li><a href="news.html">News</a></li>
                </ul>
              </li>
              <li><a class="MenuBarItemSubmenu" href="portfolio.html">PORTFOLIO</a>
                <ul>
                  <li><a href="residential.html">Residential</a>              </li>
                  <li><a href="public.html">Public</a></li>
                  <li><a href="display.html">Display Gardens</a></li>
                </ul>
              </li>
              <li><a href="site.html" class="MenuBarItemSubmenu">SITE AMENITIES</a>
                <ul>
                  <li><a href="plantings.html">Plantings</a></li>
                  <li><a href="hardscape.html">Hardscapes</a></li>
                  <li><a href="water.html">Water</a></li>
                  <li><a href="furnishings.html">Furnishings</a></li>
                </ul>
              </li>
              <li class="MenuBarVertical"><a href="contactus.html">CONTACT US</a></li>
            </ul>
        </div>
    <script type="text/javascript">if(window.attachEvent) { window.attachEvent("onload", function() { cssmw.intializeMenu('cssmw',{select_current: 0, orientation: 2}); }); } else if(window.addEventListener) { window.addEventListener("load", function() { cssmw.intializeMenu('cssmw',{select_current: 0, orientation: 2}); }, true); }</script>
      </div>
    </div>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </body>
    </html>

  • Text item of varchar2(2000) with vertical scrollbar not displaying properly

    Hi,
    I have a text item of varchar2(2000) with a vertical scroll bar.
    I am populating data into the text item using a forms procedure.
    (Look at the sample code below)
    The problem is the rpadding is NOT displayed properly. I mean
    the detail records are NOT shown straight below their respective column heading
    in the text item. (BUT if I cut this stuff from the text item and paste it in a
    notepad, then the alignment is correct and the data is shown below their
    respective column headings)
    My code is something like below ...
    CURSOR c_get_lab_client_results
    IS
    SELECT res.lr_id lr_id, org.short_name org_name, TO_CHAR(res.specimen_taken_date,'DD-MON-YYYY') std, substr(res.accession_number,1,20) acc_num, res.lr_type lrtype, res.hdc_id hdcid
    FROM bc_organisations org,
    cq_laboratory_results res
    WHERE cli_id = :clients.cli_id
    AND lr_id = :results.lr_id
    AND res.org_id = org.org_id
    ORDER BY lr_id;
    Begin
    -- Header
    SELECT :TRFRDTLS.TRANSFER_DETAILS||RPAD('ORGANISATION',16,' ')||' '||RPAD('SPECIMEN DATE',15,' ')||' '||RPAD('ACCESSION NUMBER',20)||' '||RPAD('RESULTS',16,' ')||chr(10)||chr(10)
    INTO :TRFRDTLS.TRANSFER_DETAILS FROM DUAL;
    -- Detail
    FOR c1 IN c_get_lab_client_results LOOP
    ls_results := RPAD('XXXX',16,' '); -- Just for example
    SELECT :TRFRDTLS.TRANSFER_DETAILS||RPAD(TO_CHAR(c1.org_name),16,' ')||' '||RPAD(c1.std,15,' ')||' '||RPAD(c1.acc_num,20)||' '||ls_results||chr(10)
    INTO :TRFRDTLS.TRANSFER_DETAILS FROM DUAL;
    END LOOP;
    End;
    Thanks in advance.
    Cheers

    Try using a monospace font such as Courier New for the text item.

  • Colours of imported postscript not displayed properly in illustrator

    Hi,
    I produced a colour map and colour gradient legend as a postscript file (.ps) using generic mapping tools software running under linux. When I import this file into illustrator (in windows 8) the colour map is fine, but the colour gradient does not display properly. It appears as a bunch of white spaces and vertical colour bands of random colour. When I then try to export the file as a .pdf the colour gradient appears as solid blue. I've also tried producing a .pdf instead of .ps but it makes no difference.
    It's worth noting that I have done this in the past with no problems. This particular problem first occurred a few months ago and is now persistent.
    Any help or suggestions are appreciated.

    There are no import options to change in Illustrator to make it work. Usually I argue against using Illustrator as a general purpose PDF editor, but since it seems to be your only option here it is better than nothing (i.e., what you got from Illy itself).
    It's worth noting that I have done this in the past with no problems. This particular problem first occurred a few months ago and is now persistent.
    The problem is that the color bar is a 4-bit color image. Did that recently change with an update of your mapping software? Open one of your Illy files that were okay and check the color bar -- is it vector or bitmap? If it's a bitmap, can you "edit" it with Photoshop? (It's not a good day to be an Adobe spokesperson: much to my surprise, Top Market best Seller Photoshop cannot edit 4-bit color images!)
    Let's talk Versions as well. I distilled with Distiller 9, but it seems that is not the magic solution (as you already see that it worked). Both Illustrator and InDesign: CS4. Platform: Windows 7.
    That combo works for me.
    A minor -- relatively unrelated -- note:
    garthboy9999 wrote:
    I also tried to import the .ps file into indesign (which I've never used before), as you suggest, but I got an error about the program not being able to recognize the file format (maybe a plugin missing?).
    No, that indicates you attempted to "open" your ps. You must create a new document first, then use "Place" -- Adobe's terminology for what every other program on the planet calls "Import". It's relatively inconsequential, because either failure or success with InDesign doesn't mean that much; I only included it to point out another blatant unnecessary difference between the two programs.

  • Lately pdf files from the Web do not display properly; what is wrong and how can I fix it so I don't have to use IE?

    I am a professor and frequently need to open pdfs of academic journal articles from electronic databases. Within the last two or three weeks, when I try to do this using Firefox, only the first page of the pdf displays and the rest are blank. In addition, a bar appears across the top with the message "This pdf file may not display properly." So I have had to switch to Internet Explorer to open the files and do my research. What is going on and how can I fix it so I can open pdf files from the Web in Firefox and have them display properly?

    My question is simple - why would you put an application in production that has a lot of bugs? To replace a good and steady Adobe product? My customers will believe that I put a pathetic fallible form online. They are not sophisticated on computers so I just tell them to use IE. Ugh
    I must agree with pgwebgirl!

  • Why is my youtube webpage not displaying properly?

    My youtube webpage is not displaying properly. its like tthere is only text and thumbnails and the whle webpage is too damn long. The videos don't play when clicked. Problem on both firefox and chrome. I disabled kaspersky av but it didnt make any difference cuz i thought the firewall mustve been blocking something. check screenshot attached.

    You can try these steps in case of issues with web pages:
    You can reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and remove cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Itunes 9 Store - Not Displaying Properly

    I am having problems with the iTunes store not displaying properly. I can see the album art, but the background is black. I can not see any of the text and I can not see most of the blue play buttons. This all occurred after upgrading to Itunes 9. What options would I need to change in my anti-virus/security programs in order to potentially correct this issue. I really don't want to have to totally uninstall Itunes and reinstall everything. Help is appreciated.

    I can see the album art, but the background is black. I can not see any of the text and I can not see most of the blue play buttons. This all occurred after upgrading to Itunes 9
    Drgoo's suggestion from the following post might be worth trying with that:
    http://discussions.apple.com/message.jspa?messageID=10390276#10390276

  • Images not displayed properly

    [Migrated from the Syclo Resource Center]
    prashanthi_vangala   01/03/2012 06:44,
    Hi,I am working on Agentry 5.4.0I have a list screen where for one of the columns I have a rule to display images ( I use checked and unchecked images ). Earlier the images were getting displayed properly on the ATE but  it is not working now and I did not make any changes to the image properties then.But after this, I tried couple of things with the image properties to make it work, like when I do not use any mask colour the image does not get displayed but when i use any maks colour the image gets displayed but its completely blacked out ( and thus for checked image, cannot see the check mark and its completely blacked out ).I face same issue with the login image as well. I added a new Image ( Logo ) to my App for the login Screen, but even this image does not appear on the login screen.
    I also tried deleting the Dev folder and re-publishing, but even this does not work.
      -Prashanthi
    Jason Latko   01/03/2012 11:42
    Try deleting the Application directory under your development server where the images reside and publish again.
      Completely clear your ATE and transmit again from scratch.
      Also, what mask color are you using?
      Try using a green hugh and not black or white for the mask.
    Jason Latko - Senior Product Developer at Syclo
    prashanthi_vangala   01/03/2012 12:38
    Hi Jason,Thank you for the reply.I already tried all the  things you have mentioned, but the same issue exits still.
    Prashanthi
    Jason Latko   01/03/2012 12:40
    Is it just the ATE, or do you have the same problems using the WIn32 or PPC clients?
    Jason Latko - Senior Product Developer at Syclo
    prashanthi_vangala   01/04/2012 06:21
    Hi Jason,Behaviour in ATE:I have changed the image now and tested with the new image . Now, its behaving strangely:When I do a sync after publishing or a reset of ATE; I see the new image properly displayed on the screen but when I leave the screen and come back to the same screen again, the new image is getting replaced by the old image ( atleast the old image is not displayed properly, it appears like a black square box..and because of the same issue I had with this image I switched to the new image ). Behaviour in Win32 Client:When I tested with the client, I see  the new image properly for the first time and when i leave the screen and come back the image disappears..This is the behaviour in client.
    Please suggest.
    -Prashanthi
    Jason Latko   01/09/2012 11:35
    Prashanthi,What did you use to create these images?
      They are simple bitmaps I assume?
      Try creating some very simple images using Microsoft Paint, then set a mask of green in Agentry.
      Your problem sounds familiar, but I can't find a matching bug in our database.
      Maybe someone else has experienced this?
      You could also try upgrading to a newer version of Agentry to see if the problem goes away.
      We are currently on version 6.0.4.Jason Latko - Senior Product Developer at Syclo
    prashanthi_vangala   01/11/2012 10:02
    Hi Jason,
    Thank you for the reply.
    But strangely, from past few days I see that the image is working fine again.
    But kept this topic open because it was wierd, that the image is working correctly again without making any major change. What I did was to just write the rule again which calls the image ( though i did this before and did not work then but worked now ) and to observe the image behaviour for few days.But it seems like it is fine now.
    Thanks and Regards,Prashanthi

    We am using "jv:imageButton" tag for displaying the image and below is the tag code,
    <jv:imageButton styleClass="buttonStyle"
    selected="true"
    onclick="networkCanvas.setInteractor(clientSelect)"
    image="../oracle/communications/inventory/ui/images/arrow.png" buttonGroupId="interactors"
    rolloverImage="../oracle/communications/inventory/ui/images/arrowh.png"
    selectedImage="../oracle/communications/inventory/ui/images/arrowd.png"
    title="#{inventoryUIBundle.SELECT}"
    message="#{inventoryUIBundle.SELECT}" />
    The able code is present in the below path,
    ..\public_html\oracle\communications\inventory\ui\network\page\NetworkView.jsff
    The images are present in the following path,
    ..\public_html\oracle\communications\inventory\ui\images\zoomrecth.png
    I am not thinking this is a Platform Beta 3 uptake issue. And I am suspecting an issue with integration of ilog with ADF. Any help in this regard would be helpful.
    regards,
    Chandra
    Edited by: user638992 on Feb 25, 2010 3:40 AM

  • Ads are not displaying properly in Safari, v 4.0.5

    I am having an odd problem with display ads from our local newspaper not displaying properly on my Mac Pro in Safari. I suspect that the issue might be related to having had some AdBlock app on my system a few months ago. I removed the app and some ads display, but others are just a white block with nothing inside. Is there any way to figure out why the content doesn't load?
    The website is http://www.echopress.com
    The ads I'm having issues with are the 300x250 ads in the right 3rd column, located directly below the weather info and above the "marketplace" ads.
    Any ideas or troubleshooting tips?
    Thanks,
    Grady
    Oh, why do I wanna see em in the first place? I'm an advertiser on the site and would like to see my own ads load occasionally.

    Hey ho, Grady!
    I can see all the ads on the right,
    with the exception of the very top (first) box
    which has the header of "Weather Alerts).
    It's blank, and I'm assuming you have no alerts at the present.
    All the rest of the paid for ads show.
    So, what I would do is clear my Safari cache, history, and
    in Preferences>Security, clear all the cookies from that site.
    Hope this helps.
    If you need more info just holler.
    Let us know how you're doing, OK?

  • Elements Organizer 8 - some WMV are not displayed properly in the Play Video but are in Play Vide

    Hello:
    Elements Organizer - some WMV are not displayed properly in the Play Video but are in Play Vide on Full screen. What's the problem? Wrong codec?

    Because WMV's can contain a lot of flags, like DRM, they can exhibit odd behavior, indeed.
    Usually, AV files will display in their native resolution, i.e. in their set Frame Size/Aspect Ratio and with their set PAR (Pixel Aspect Ratio), but sometimes those flags are missed, or are altered by other programs.
    Remember, WMV's are designed to be streaming delivery-only, and are not intended, or designed to be edited. Most NLE's (Non Linear Editors) will allow them to be edited, but will require extra processing to do so. As is mentioned, WMM is designed around editing that delivery-only format, but most others are not.
    There are many other formats/CODEC's, that ARE designed to be edited by the vast majority of NLE's, such as DV-AVI Type II's.
    The best workflow is to NOT bring WMV's into the mix, unless one is using WMM exclusively. Converting those to an easily editable format/CODEC will always be the best course of action.
    Good luck,
    Hunt

  • PDF not displaying properly in Acrotbat

    Hi all,
    I'm having an issue with a document I have created in Photoshop not displaying properly when opened in Acrobat. It is a brochure for my work, that I have worked on and printed many times. When I open it in Acrobat after creating the PDF, gaps appear and other elements are shifted out of place. When viewing it in Photoshop, those gaps are not there, even when I zoom in very close. When we open the file on other computers with Acrobat, the gaps are still there. To test the PDF further, I downloaded some free PDF viewers off the net and the document looks the way it was created, the way it should be. I don't know how to fix it and certainly don't want the gaps appearing when it goes to print. Any ideas on how to fix this? I've never previously had this problem. Thank you in advance for your help.
    Leah

    Without access to the files it's impossible for us to help. Acrobat will be displaying the PDF "correctly", but why the page contents are shifted is anyone's guess.
    When you save as "Photoshop PDF" and choose the "Preserve Photoshop Editing Capabilities" option, it embeds a copy of the PSD file into the PDF and will open that whenever you try to open the PDF in Photoshop, which is why you don't get the import dialog. Photoshop never even reads the PDF page contents. Turn off that option, save to PDF again, and then open it in Photoshop - you'll see the true PDF page being imported as a graphic, and it'll match what Acrobat is displaying.

  • Page will not display properly with inline Frames

    I have a html page that will not display properly in Dreamweaver. I have a basic understanding of html and want to be able to edit a website in Dreamweaver that was given to me. It looks fine in a browser, but in Dreamweaver some of the content is missing and displays the following message, "Your browser does not support inline frames or is currently configured not to display inline Frames". I was able to open it without any problems using Microsoft Front Page, so is it possible to view and edit it in Dreamweaver?

    Without seeing your page, I'm guessing that your page contains server-side includes, iframes and  scripts to other files on the server that populate page with content on the server's end.  You can't see it in DW because you don't have all the files in your DW local site folder.  You said this views fine in FP.  Was your page created in FP with FP proprietary tools?
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb

Maybe you are looking for