Display issue in Firefox

We are using Vibe 3.3, everything display is fine in IE. But issue on Firefox. And we find that one more big problem is Firefox cannot show all records.
Attached screen capture for your reference.
I am try to edit ssf_css.jsp but not sucess.

You already asked the same thing some time ago: https://forums.novell.com/showthread...lem-in-firefox
Please do not post the same issue in these forums twice!
In my eyes you've got 3 options:
1.) I really suggest buying maintenance for your site again. This would be really worth it, especially because you would be entitled for Vibe 4.0 which is coming next year and which will bring lots of incredibly great enhancements!
2.) keep on hacking files and stay with an unsupported and potentially unsecure system.
3.) get professional support which Novell and service providers like us can provide -> but this might be more expensive than buying maintenance again.
I would suggest No. 1!
Sorry for being so direct. ;-)
HTH
Cheers
Erik

Similar Messages

  • Sudden Display issues in Firefox from Dreamweaver-built pages

    Hi, first time posting and a novice at Dreamweaver and web design so please bare with me.
    I'm an IT administrator for a small charity company and they decided to ask me to build them a website, I bought Dreamweaver in University and had a small try with it but never really used it since.
    Now I'm no web designer but I'm trying the best I can, I managed to make a few preliminary pages for use and found they displayed correctly in most browsers apart from IE and Opera.
    But Suddenly today - after no editing or alterations since friday (and it displayed fine yesterday on tuesday), it started experiencing the same issues in Firefox this morning for no apparent reason. I assumed that it would be a problem with Firefox but when trying to sign up to Firefox help I meet an "Access Denied" page after clicking to sign up. Now I know there's no point in searching their forums for that issue because of course, how can someone complain they have the problem when the fact they can't get on the forums to post is what's preventing the post in the first place?
    I googled both of those issues and turned up nothing, which led me here.
    The "Access Denied" at signup issue is obviously not what I'm seeking for here though, but would like to know if anyone else has experienced the issue with the formatting suddenly displaying incorrectly in browsers when they worked fine before?
    Like I said, I'm a complete novice at web design and dreamweaver so feel free to tell me the coding in the website is pants, I know it is but it does (did!) the job in most browsers.
    Any help at all would be appreciated.
    Faultlessdark
    www.guidonsupportservices.org.uk
    PS. For an ironic laugh - note the "This website is best displayed in Mozilla Firefox and Google Chrome" at the bottom of the page

    My advice, although negative, would be to stay clear unless you are confident and capable of using html and css. Dreamweaver won't do the job for you and you will be biting off more than you can chew.
    Having said that I've made the necessary changes so that your page will work in all browers. Just copy the whole html code and css below, paste into a new Dreamweaver document and save to your site root folder.
    Do not mix measurements i.e., width 43em, padding 15px etc. I would advise staying with px based measurements as measurements are critical to if the site works or not. I don't know what 43em + 15px makes but I do know what 170px + 15px makes. I have changed the width of the containers in your code to px.
    <!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">
    <title>Home</title>
    <script type="text/javascript" src="swfobject.js"></script>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <style type="text/css">
    <!--
    body {
    font: 100% Verdana, Arial, Helvetica, sans-serif;
    background: #666666;
    margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    padding: 0;
    text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    color: #000000;
    background-image: url(background.jpg);
    background-color: #FFFFFF;
    /* Tips for Elastic layouts
    1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
    2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
    3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
    #wrapper {
    width: 909px;
    margin: 0 auto;
    .oneColElsCtrHdr #sidebar1 {
    float: left;
    width: 170px; /* since this element is floated, a width must be given */
    border: 2px solid #FFF;
    padding: 15px 0; /* top and bottom padding create visual space within this div */
    color: #FFFFFF;
    text-align: left;
    font-family: Verdana, Geneva, sans-serif;
    .oneColElsCtrHdr #container {
    width: 735px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
    background: #FFFFFF;
    border: 0px solid #000000;
    text-align: left; /* this overrides the text-align: center on the body element. */
    .oneColElsCtrHdr #container2 {
    width: 735px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
    background: #FFFFFF;
    padding: 0px 0px;
    float: left;
    border: 0px solid #000000;
    text-align: left;
    .oneColElsCtrHdr #header {
    background: #FFFFFF;
    padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
    .oneColElsCtrHdr #header h1 {
    margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
    padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
    .oneColElsCtrHdr #mainContent {
    padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
    background: #FFFFFF;
    .oneColElsCtrHdr #footer {
    padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
    background:#FFFFFF;
    .oneColElsCtrHdr #footer p {
    margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
    padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
    text-align: center;
    font-size: 70%;
    .oneColElsCtrHdr #container #mainContent h1 {
    text-align: center;
    .oneColElsCtrHdr #container #mainContent h2 {
    text-align: center;
    .White {
    color: #FFF;
    .White {
    font-size: 70%;
    .oneColElsCtrHdr #container #FlashMenuLabs {
    text-align: center;
    .oneColElsCtrHdr #container #FlashMenuLabs {
    font-size: 80%;
    #sidebar1 p {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    .oneColElsCtrHdr #sidebar1 p {
    font-size: 90%;
    .oneColElsCtrHdr #sidebar1 p {
    font-family: "Times New Roman", Times, serif;
    -->
    </style>
    </head>
    <body class="oneColElsCtrHdr">
    <div id="wrapper">
    <div id="sidebar1">
    <center><h3>Site Map</h3>
      <strong>Home</strong>
      <strong><p>Guidon Support</p></strong></center>
      <p>-Our aim</p>
      <p>-What we do</p>
      <p>-Management Team </p>
      <p> -Careers</p>
    <center><strong><p>Guidon Recycling</p></strong></center>
      <p>-Materials</p>
      <p>-Our Customers</p>
      <p>-How we can help</p>
      <center><strong><p>Groundworks</p></strong></center>
      <p>-Projects</p>
      <p>-Services</p>
      <p>-Our Skills</p>
      <center><strong><p>The Charity</p>
      <p>Contact Us</p>
      <p>About Us</p></strong></center>
    </div>
      <div id="container2">
      <div id="container">
       <img src="guidon banner.jpg" width="734" height="229" />
      </div>
      <!-- Flash Menu Labs – www.flashmenulabs.com -->
      <div id="FlashMenuLabs">Oh dear, it appears you have an older version of Adobe Flash player or don't have it installed, you need it to navigate our website - <a href="http://www.adobe.com/go/getflashplayer">Go get it!</a>            
      </div> 
      <script type="text/javascript">
        // <![CDATA[
            var so = new SWFObject("menu.swf", "menu", "740", "160", "8", "#000000");
            so.addParam("wmode", "transparent");
            so.addParam("scale", "noscale");
            so.addParam("salign", "TL");   
            so.write("FlashMenuLabs");
        // ]]>
        </script> 
       <div id="mainContent">
        <h1>Welcome - Under Construction</h1>
        <p>Welcome to the Guidon website. Guidon Support services is just a small part of the Guidon Group, which covers different areas such as Recycling, Civil Engineering and work based training. Please be aware that the site is under construction and this is the Home page. This is currently on here as a test to ensure that everything displays correctly. The full website will be available soon.</p>
        <p>You'll notice that our company is split in to these different areas on the website - so if you want to know about any of our services just pick the department on the handy menu above and head on over. </p>
        <p>Our recycling services cover a wide range of materials, including various metals and plastics - if you have some materials that you want us to take off your hands, go take a look to see if we process it, then give us a call. We'll collect and move it all - for free!</p>
        <p>Guidon Support Services is the main branch of the Guidon Group. The active offshoot of The Guidon Charity, Support Services aims to give current and ex-servicemen the opportunity to transfer their experience and skills to be applied in the civilian workplace, allowing them to get on their feet if they're having trouble getting back in to work.</p> 
        <p>Our groundworks services is our own little civil engineering division aiming to install GSHP (Ground Source Heating Pump) systems for private and commercial properties.</p>
        <h2>The Guidon Charity</h2>
        <p>The Guidon Group is set up for one ideal: To  reduce the harm caused by homelessness, drug and or alcohol abuse and to  support serving or former service personnel or their families to lead a happy,  healthy and productive life. Profits generated by the Guidon Group are passed on to the Guidon Charity to help us fulfill this aim
          <!-- end #mainContent -->
        </p>
        <p> </p>
      </div>
      <div id="footer"> 
        <p>This website is best viewed in Google Chrome and Mozilla Firefox - <a href="Browser Support Page.html">Why?</a></p>
        <p>Guidonsupportservices.org.uk &copy;2011 The Guidon Group. </p>
        <p>Contact the webmaster; [email protected] </p>
      <!-- end #footer --></div>
    <!-- end #container --></div>
    </div><!-- end wrapper --
    </body>
    </html> 

  • [Solved] Site display issues in Firefox 11.0-2/KDE 4.8.1

    I have been having issues with the form fields of the AUR page. Specifically, with any version of Firefox after v9; the fields are incredibly small. (See http://imgur.com/KEdYk for what it looks like). I have removed gtk-kde4, and even created a vanilla user with a brand-new home directory, and this other user profile experiences the same problem. edit: In a fresh install of GNOME 3, the AUR page displays correctly. Also displays correctly if I revert to FF v9
    This problem doesn't occur in Chromium, so I thought it was a FF issue, however, I've not heard of anybody else with this same problem... So I'm a little stumped. I filed a bug report a while back, (https://bugs.archlinux.org/task/28613 ), but it has been closed. Any help in diagnosing and/or fixing this issue would be helpful and appreciated. Thanks!
    Last edited by Axanon (2012-03-25 14:03:55)

    That is sounding quite strange.  I've had display issues similar to yours with login fields and search fields that are usually at the top of a we page appearing distorted and on top of each other.  Another prevalent problem that I noticed on YouTube was that text I enter into any field doesn't show up, but it is entered and I can search.  I'm running xfce so I don't know what to say.  Haven't had the problem in gnome, though I really don't like gnome 3 for its lack of what of what I considered organizational hierarchy.  (though I am against hierarchies of other sorts),  Ive also found that clearing the Firefox cache can solve some of these problems.

  • I have a display issue with Firefox when I open my GODADDY Web email.

    My GODADDY email opens in list form and not as a web screen as it does in IE10 or Chrome.

    Hi chick.aday, this seems to be expected, however the Go Daddy support may also have some good advice how to change the view.

  • Display issues in XP with Firefox

    I just installed Firefox browser to an old XP machine. I am having display issues: sideways lines and "double vision" even on the home page. I know I have an old video card. That has caused sideways lines in videos before. This is a computer my husband uses and loves! I know its a dinosaur. Besides videos in kids programs, I never have had any display problems just browsing the web. And I can watch YouTube videos just fine in my other browsers.

    You can try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    You need to close and restart Firefox after toggling this setting.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    If there are problems with Flash then you can check for problems with current Shockwave Flash plugin versions and try this:
    *disable protected mode in the Flash plugin (Flash 11.3+ on Windows Vista and later)
    *disable hardware acceleration in the Flash plugin
    See also:
    *http://kb.mozillazine.org/Flash#Troubleshooting

  • Need help with Firefox display issue on one page of site

    I have a page that W3C validates, displays properly in IE and Netscape, but does not display properly in Firefox. The issue is with a style class applied to the inner centered table. class= "vert_table" This class works on all of the other pages in the site, but not in this one.
    The page:
    http://www.redshift.com/~lorac/sdy-46-49.html
    The issue:
    < table class="vert_table" width="760" border="0" cellspacing="0" cellpadding="0" align="center" bgcolor="#f1ebe8" >
    The vertical rule does not display, and further down the page a dark left-right border appears starting with this text.
    my mother, when I was wasting my life away not knowing who I was,
    and ends with:
    Mojin: (hugging him) I don't expect you to love me. I just want you to live, that's all.
    I have been looking through this code for two days, searching for any offending omission in code or redundancy that would break the page. I've searched for missing div tags but none are apparent to me. I'm hoping someone with fresh eyes can spot it right away.
    It's odd that the page validates but Firefox cannot display it properly.
    Sample page of code working properly:
    http://www.redshift.com/~lorac/sdy-41-45.html
    Any help is appreciated.

    Hi Jim, thanks for the reply. Your suggestions sound interesting but I'd like to figure out why this particular page doesn't work when all of the others do. I'm sure it's just a little code thing that I'm overlooking.
    I could revert back to a saved page, but I updated text and images on this page before the verticle border broke, so I don't want to lose those edits. And that is why I'd like to fix this one instead of redesigning the page.
    BTW, I forgot to mention in my first post, GoLive CS, W2K.

  • HTML table display issues in Safari and Firefox

    Hey,
    A few days ago, in both firefox and safari, i noticed that whenever i go to certain sites with (i'm assuming) what are HTML tables, they aren't displaying properly. The tables are going way bigger than they should.
    ex. When i go to craigslist.org and click on any link, each item on the page has way more space between lines than it should. To see what i mean check out these screen capture.
    http://www.killtheteleprompter.com/picture1.png
    http://www.killtheteleprompter.com/picture2.png
    Also, perhaps a related issue, in Firefox, the page scrolling isn't smooth anymore when i use my trackpad.
    I tried trashing the preferences for each browser in my library, to no avail. Any help would be awesome. thanks

    hey thanks. The links in the orgininal post are fixed. To view the difference, look at the captures, then type in the url that appears in the captures to see what it should look like.
    http://www.killtheteleprompter.com/picture1.png
    http://www.killtheteleprompter.com/picture2.png

  • Gmail usernames and passwords not displaying correctly - is the issue with Firefox?

    I have 3 email accts and when I click username in Gmail those 3 would show and passwords would be remembered automatically. Now it shows these 3 and 2 others that have been used before, plus NO passwords displayed. In the past if this happened I refreshed page and it went back to the 3 accts - this is no longer happening. Could it be a firefox issue?
    Also my autofill in Gmail is no longer working and I have seen other inquiries about that. Is there any info on how to fix these???

    This is a known issue in Firefox 4 beta 12. You could wait til' the RC comes out, or you could grab one of the latest nightly builds availible here that fix this problem: ftp://ftp.mozilla.org/pub/firefox/nightly/latest-mozilla-central/
    Just a note though, nightly versions of firefox are generally less stable than betas or releases. I am waiting for the Release Candidate to come out myself. (Should be early next week)

  • IE 7 and Firefox 3 display issues - neither work as expected

    hi,
    I'm having a terrible time trying to figure out how to solve the 2 display issues I have on IE and Firefox. I can't get either one to work like it's supposed to.
    I'm using RH8, Webhelp and it doesn't matter what skin I use (nothing custom, just what is available in RH).
    On IE 7.0.5730.13, Webhelp only displays information in the information frame (text) when I attempt to resize the panes. If I just click and move my mouse just a little bit to expand the TOC text magically appears for THAT selected TOC topic only. If I move to another topic in the TOC, I have to do the same thing. And by resize, I mean, I click and move a millimeter and the stuff displays. Otherwise, if I do nothing, the TOC displays as expected but the text frame (contents) is blank.
    On Firefox 3.5.6, the TOC pane does not display 100% vertically........it's cut off at the end of the TOC and contains scrollbars to move vertically and horizontally.
    So, neither browser really works for me.  Am I the only one?
    I'm using RH 8.0.0.203
    Any advice or suggestions are very much welcome.......

    Ahhh, okay.
    That actually seems to be providing a bit of a clue to the overall picture I might think. The icon should be kicking off a Dynamic HTML drop-down area.
    Since the icon isn't seemingly doing anything in FF, it's logical to me that you somehow have JavaScripting turned off in FF. This can be done using an Add on product, which is why I asked.
    It's also likely the reason for the super short TOC display. Typically the TOC depends on JavaScript to work its magick.
    My thought here is that if you and Peter can determine where JavaScript is being turned off, you will solve the issues.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Chinese characters are not displayed in the Firefox bookmarks

    Chinese characters are not displayed in the Firefox bookmarks. The name looks like e.g. "??????? ???? cn.nytimes.com"
    Chinese character of the site name is displayed ok in the head of the browser window and there is no problem reading chinese web content. I use Firefox Portable 11 /English from portableapps.com in Windows XP.
    I googled and got some tips:
    1) Set your browser to recognise Chinese language internet sites.
    Windows users: Under "Tools - Options" on your browser's menu-bar add Chinese to the languages list.
    - I did this.
    2) Set your browser's "Character Set" or "Encoding" to UTF-8 (sometimes also called Universal Alphabet or Unicode).
    Encoding settings can be changed under the "View" option in your browser's menu-bar.
    - It was already set to UTF-8.
    3) Windows users: If Chinese text still does not display correctly, East Asian language support may need to be enabled.
    - This has been done when I installed Windows.
    I still don't get any Chinese fonts in the bookmark names. I can edit the bookmark name with chinese characters and then save the bookmark, it works fine. But why does not Firefox recognize the characters when saving bookmarks? Help is appreciated.

    No I didn't change anything deep beneath the hood. My problem didn't apply to the URL, but to the name of the link or bookmark header or whatever you would like to call it. (When hitting Ctrl + D there is a Name field). I only got ???????? instead of chinese characters in the name. Also for e.g. www.cntv.cn ...but maybe all China is not in the whitelist either. ;-) But anyway, this was not the real problem for me.
    Apparently I was wrong as after a reboot of the computer it worked. The solution seemed to be to add Chinese to the language list. I don't know why it was not enough to restart Firefox?
    Now I only have problems to show chinese characters in the name field of my external link manager... But I guess it is not an issue for Mozilla.

  • WHile playing a game why am i getting this.....To display this page, Firefox must send information that will repeat any action (such as a search or order confirmation) that was performed earlier. [Resend][Cancel]......and what can i do to get it to quit?

    I am playing a facebook game called Kingdom of Camelot. This come up when I refresh the game. To my knowledge no information is sent. I need it to stop interfering with my page when i refresh . I have deleted/uninstalled my extensions and plug ins and i am still getting the message.

    Perhaps someone should report this to MarketWatch. There are ways for web developers to work around this issue (GET after POST, for example).
    This is a longstanding issue. Examples:
    [https://support.mozilla.com/en-US/questions/668932 how do i stop this-To display this page, Firefox must send information that will repeat any action (such as a search or order confirmation) that was performed earlier.?]
    [https://support.mozilla.com/en-US/questions/780884 To display this page, Firefox must send information that will repeat any action (such as a search or order confirmation) that was performed earlier]
    In past discussions about this message, I have never seen an easy solution. Arguably it should be made a user preference: those who prefer to be warned about the risk that they will double-submit a transaction or instruction on a poorly designed site can have their warning, and those who prefer to take their chances can take their chances. Not sure whether that is on anyone's "to do" list.
    Separate issue: I wasn't aware of any difference between 3.6.12 and 3.6.13, but both are riddled with security vulnerabilities so it's hard to recommend using either of them at this point.

  • Pdf display issues in IE.

    I seem to have a tricky issue with displaying pdf through a java servlet in IE. The pdf displays properly when i hit the servlet for the first time; but when i try to open a new window I get a blank screen. I see in the browser status that the pdf is downloading but nothing appears in the IE7 browser window. There is no such issue in firefox or safari. I have a pretty standard generic servlet to display all content files and not just pdf files. I can post the code if required. Let me know if any ideas on how to debug/solve this ?

    Thanks for the pointers. I havent had the chance to debug a lot. but after seeing your comment it does look like some kind of caching or session related issue. So if you open a completely new IE browser window then the pdf opens up fine but not from the same window (in a new tab) ? Unfortunately we have a the pdf in a iframe in our portal and a link to open the pdf in a new window !!

  • SSRS 2012 Report Manager web browser display issues

    Hi Guys
    I'm having a issue with the report manager display in explorer, Firefox and chrome web browsers, it doesn't display correctly, any advice would be greatly appreciated, thanks

    go to your SSRS server and open your reporting server configuration Manager
    Make sure that your Report Manager URL is
    http://machinename:80/Reports and Web Service URL is
    http://machinename:80/Reportserver
    Roger

  • Weird OSX display issues after going to webpage, only thing that fixes is  Perm repair

    I have a bizarre issue that i'd love some input on. Late 2009 iMac, Mountain Lion (then Mavericks).
    I use Firefox to utilize a real estate website (Fusion MLS) for several months now. A couple of days ago, after i would log into the website and use it for a little bit, the rest of my tabs, apps, windows, would all start appearing as black boxes, or have glitched out (generally black) screen display issues. To be clear, other tabs inside the browser would be black, or partially black, and also the right half of my taskbar icons would be black silhouettes of the icon. BUT, the Fusion MLS website would still work fine. Closing the page, etc, would not fix the problem, it would be stuck like that no matter what i closed or opened, computer would function fine except for the display, but i couldnt see hardly any of the apps so I'd have to shutdown, but a simple reboot didnt fix it. After an hour of troubleshooting, I started off in Mountain Lion when the problem appeared, and in the process of troubleshooting I decided to upgrade to Mavericks to see if that would fix the problem, it didnt. Ultimately I discovered the only thing that fixes the problem is to boot into Safe Mode and Repair Permissions, then i can come back in as normal and everything is normal again (a standard reboot doesnt fix it, when logging back into OSX it would still have black silhouettes and all the app windows would be black).
    So after the above I decided to just start using a different browser to go to this Fusion MLS website (Safari). Which worked fine for a day, but now when i go to the website, i have no problems, but when i put the computer to sleep, and bring it back, the windows are blacked out and icons silhouetted. So back to safe mode, repair perms, and then it works again. When i do the repair perms, there are usually no verbose things that it says it repairs, sometimes it says something about the PrinterList being 0 instead of 80, but thats it.
    Any help or insight would be greatly appreciated, I'm completely dumbfounded....

    Now regular Repair Perms doesnt fix it, it has to be Diskwarriors Repair Perms. Also it happens anytime the computer is put to sleep for a length of time and brought back, regardless of whether the Fusion MLS website was gone to.

  • Flash movie display issues in IE

    Hi Everyone!
    This message is a cross-post and I apologize, but there seems
    to be more traffic in this forum and I really could use some input
    on my question. Here goes:
    I'm new to this forum, but have a little experience with
    Flash. I'm building a site, mixing flash with css and html on a
    webpage (obviously). When I test the pages in Internet Explorer,
    the display jumps around quite a bit when I navigate between web
    pages (looks fine when clicking through frames in the movies). This
    is the first time I've ever seen this (in the few times I've built
    flash-heavy sites) and this display issue doesn't happen in
    Firefox, Opera or even old Netscape. Unfortunately - most of the
    world is using IE, so I need a little help.
    I thought perhaps the Flash Satay solution might be the
    answer, but I'm not a handy programmer so before I go mucking
    around with it, I thought I'd get some thoughts from other flash
    users...
    Here's the link: mustardseedwoodworking.com/testing The pages
    in question (and the only ones that are working, really) are the
    home page, the about page, and then galleries one and two.
    (Oh finally, I'm viewing these pages both locally, on my
    computer and online after being uploaded. I have cable internet
    access. I realize Gallery 2 loads a bit more slowly than Gallery 1,
    but the primary reason I'm using flash to display the tables is
    because I want large, high rez photos. )
    Thanks in advance!
    Michelle

    Did you upload the Scripts folder that DW places in the root
    of your site?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Dunk11" <[email protected]> wrote in
    message
    news:eavmev$olm$[email protected]..
    >I need some help getting Internet Explorer to show my
    flash movie.
    >Everything
    > looks fine in FireFox, but when I test it in IE my
    movies will not load.
    > I can
    > however go directly to the .swf file in IE and it will
    load. But when I
    > try to
    > view in on the actual webpage it will not. Here is the
    link
    >
    http://www.duncanandthompson.com/test/test.htm
    > Thanks
    >

Maybe you are looking for

  • How to instantiate MovieClips with sequence names

    Hi all, I'm rewriting a game that came from AS2, and passing it to AS3. The problem is that I have several different MovieClips in the Library, with a sequence name ("s_0", "s_1,...). The question is... how can I use the addChild to instantiate these

  • Javascript popups open in new tab

    I'm finding that links that used to open in javascript-controlled sized popup windows now open as a new tab. Sometimes this is nice, but most of the time it's frustrating. Is this a setting somewhere?

  • Workflow -Inconsistent behavior of wf_engine.setitemattrdate

    I have customized HR self service workflow for termination. I am using wf_engine.setitemattrdate to set the value for all the custom attributes, sometimes the attributes do not come through in the notification, though they are derived; they work as e

  • How to make smooth motion questions

    Maybe this isn't the best way to achieve optimal results, but here's what I'm trying to do: Make a slideshow with many jpegs. Many pics are odd size, so I made a grid inside a 6000 x 720 comp. I've then taken that 6000 comp and placed it into a 1280

  • Table columns disappear by using keycolums

    Hi there, i have the following problem on my stack14 pde. I visualize a htmlb tableview inside a jspdynpage, hide a key column by using the method tv.setColumnInvisible("id"); and it works. the tablemodel is stored inside a bean with scope session. i