Text not viewable in some browsers

I made a Flash site with text and graphics, and have been
told by some of my customers that only the graphic appears on the
page. The site is www.simplypilatesnashville.com. Is this just a
browser, Flash player issue? Thanks.

pretty popular issue since flash 8 came out - asked/answered
here almost daily - basically you
probably used flash 8 only text rendering features and
published to verion 8, but your users have an
older version - therefore can't see the latest technology in
the flash player - tell them to update
their player, or incoporate flash player detection (express
install) or remove these text effects if
possible and publish to t alower player.
hope this helps.
--> **Adobe Certified Expert**
--> www.mudbubble.com
--> www.keyframer.com
Amyrs wrote:
> I made a Flash site with text and graphics, and have
been told by some of my
> customers that only the graphic appears on the page. The
site is
> www.simplypilatesnashville.com. Is this just a browser,
Flash player issue?
> Thanks.
>

Similar Messages

  • IWeb hypertext links to pages from my site not "viewable" in some browsers

    I am new to iWeb 08. iWeb created hypertext links to eleven pages from my "top level" site are not "clickable" or viewable in some browsers yet the hyperlinks I added on top page to other sites don't present a problem.
    No problem with Safari or AOL Desktop Version 1.2 or Firefox browsers. However, AOL Ver 10.3.7 (rev 4136.310) only shows other site links and NOT the page links at the top of site page. Only a dot is visible where links to other pages in the site. I thought it could have been a Java Scripts problem so I updated my AOL to latest JAVA. Not concerned for my part but others with Mac AOL may have same problem.
    Is there something I could do diferent at my site or is this another AOL shortcoming?
    See: http://web.mac.com/louiedea/OceanaMed_Cruise_2008/MedCruise08.html
    Thanks, LouieDeA

    Gayle,
    No solution yet. I am sure it is a shortcoming of AOL's Mac browser but am trying to contact AOL support (difficult now that they are free). I don't use their browser but there are probably those that do. I presume you don't have that problem when you use Safari, etc?
    Louie

  • Muse site not visible on some browsers

    I have created a MUSE website for one pf my clients and they tell me it is not visible on some browsers but did not specify on which it did not show.
    Any suggestions?
    Thanks

    I have asked but had no response yet. My research tells me that the probable issue is with IE9 and older that aren't compatible with HTML5 or CSS3. Is that right? if so it is a Microsoft issue and people using old incompatible browsers.
    What do you think? The site works just fine on Firefox, Safari and Chrome.

  • PDF files created in Pages have text not viewable on PC

    I have created a large (7 MB) program for a large conference in Pages. In order to have it printed, I converted it to a PDF. For some reason, some of the text on some pages is not viewable on PCs using Acrobat Pro or Reader - it should be black and is showing as white text.
    What could be the problem? This does not happen on all PCs, only some. Has anyone experienced this in the past and is there a solution? Of course, my deadline is rapidly approaching...the conference starts on the 26th. Any help is greatly appreciated.
    Thanks!
    Eden

    I am having the same problem when exporting to PDF AND Word files. My document looks great in Pages and in Preview, but half of my text is converted to white when viewed in Acrobat Reader or Word. This is very FRUSTRATING!! I have a deadline approaching, too, and am collaborating with another shop that works on PC's. Any ideas for how to fix this issue are very welcome!

  • Documents from UCM not opening in some browsers

    Hi ,
    I am using the RIDC GET_FILE service to display the pdf in the WebCenter portal page. When the method is called the pdf document opens in Chrome browser in some machines but not in Firefox or other browsers. The file is returned as "application/octet-stream" and hence does not open as a pdf document.
    Following is the java code written to fetch the files
    import java.io.BufferedOutputStream;
    import java.io.File;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.PrintWriter;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import oracle.adf.share.ADFContext;
    import oracle.javatools.resourcebundle.BundleFactory;
    import oracle.security.xmlsec.samlp.ResponseType;
    import oracle.stellent.ridc.IdcClient;
    import oracle.stellent.ridc.IdcClientManager;
    import oracle.stellent.ridc.IdcClientException;
    import oracle.stellent.ridc.IdcClientManager;
    import oracle.stellent.ridc.IdcContext;
    import oracle.stellent.ridc.convenience.usersecurity.CacheId;
    import oracle.stellent.ridc.convenience.usersecurity.IUserSecurityCache;
    import oracle.stellent.ridc.convenience.usersecurity.impl.UserSGAcctAclCache;
    import oracle.stellent.ridc.convenience.usersecurity.impl.UserSecurityGroupsCache;
    import oracle.stellent.ridc.model.DataBinder;
    import oracle.stellent.ridc.model.DataObject;
    import oracle.stellent.ridc.model.DataResultSet;
    import oracle.stellent.ridc.protocol.ServiceResponse;
    import utils.system;
        public class getFile extends HttpServlet {
            private static final String CONTENT_TYPE = "text/html; charset=UTF-8";
            private static final long serialVersionUID = 1L;
            public void init(ServletConfig config) throws ServletException {
                super.init(config);
            String cid ;
        public  void doGet( HttpServletRequest request,
                            HttpServletResponse response) throws  ServletException ,IOException {
                       try {
                           cid = request.getParameter("cid");
                       } catch (Exception e) {
                           e.printStackTrace();
            try{
                IdcClientManager manager = new IdcClientManager();
                IdcClient idcClient = manager.createClient("idc://oa8054.us.oracle.com:7444");
                IdcContext userContext = new IdcContext("SADMIN", "SADMIN1");
                        System.out.println("got idc client");
                    // populate the binder with the parameters
                        DataBinder dataBinder = idcClient.createBinder();
                        dataBinder.putLocal("IdcService", "GET_FILE");
                        dataBinder.putLocal("dDocName",cid);
                        dataBinder.putLocal("RevisionSelectionMethod","Latest");
                        dataBinder.putLocal("Rendition","Web");  
                     dataBinder.putLocal("allowInterrupt","1");
                        ServiceResponse response1 = idcClient.sendRequest (userContext, dataBinder);
                    response1 = idcClient.sendRequest (userContext, dataBinder);
                         InputStream content = response1.getResponseStream() ;  
                        BufferedOutputStream  output = new BufferedOutputStream(response.getOutputStream(), 1024);             
                        byte[] buffer = new byte[1024]; 
                        int length;
                        while ((length = content.read(buffer)) > 0){ 
                        output.write(buffer, 0, length); 
                content.close(); 
                output.flush();
                        output.close();
                    catch (IdcClientException e) {
                                 e.printStackTrace();
    And the call to the servlet is  made on click of a link.
    Why doesn't the documents() open in some browsers while it does in some.Similarly i want to open docx and rtf files from UCM also using the same code without downloading.
    Please help.
    Thanks

    Hi.
    Try following sample code:
    Include cmfn tag library in your page
    xmlns:cmfn="http://xmlns.oracle.com/webcenter/content/functions"
    Use next EL Expression to get a Node url's (are the same methods as a Node in CP):
    #{cmfn:getNodeById(yourdDocName).url.downloadUrl
    #{cmfn:getNodeById(yourdDocName).url.renderUrl
    Sample:
    <af:goLink targetFrame="_blank" destination="#{cmfn:getNodeById('UCM676546').url.downloadUrl}"/>
    You'll need connection to UCM configured in your WebCenter Portal Application because it will ask for the current IDC connection configured.
    Regards.

  • Navigation & Photo Page not displaying within some browsers

    Hello,
    I am using iWeb '08 and am having great difficulties trying to get my site cross browser compatible. The site is working perfectly on the Mac in Firefox 2 & Safari but not Firefox 3. It is also not displaying correctly in Firefox 2.0.0.13 and IE7 on my WinXP machine. Unfortunately the error is not just a cosmetic issue. The Main Navigation is not displaying on any page and only shows a bullet point where it is meant to be. The other error occurs in the Photo Template and the photos are not displaying. I am using a "Version 1 template" and did a test with a "version 2" template that provided the same errors.
    Has anyone else had these problems???
    The site is located at:
    http://web.mac.com/maxkit/Kai/
    Photo Page:
    http://web.mac.com/maxkit/Kai/CurrentPictures/Pages/Snowy_AprilDay.html
    The test site is located at:
    http://web.mac.com/maxkit/Site/
    Thanks
    Max

    You have applied a height of "auto"to your menubar container, which gives it no height at all in some browsers. If you have a clue what height you would like to display for your menubar, give it, instead of:
        <div style="height: auto;" id="p7PMM_1" class="p7PMMh04">
    Better yet, leave it in the CSS file, where you will find it when you go looking for it. You already assign a height there:
    .p7PMMh04 {
        width: auto;
        height: 20px;
        margin: 0 auto;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11px;
        font-weight: bold;
        background-image: url(http://home.roadrunner.com/~jgigandet/trinity/img/new_bk.gif);
        background-repeat: repeat-x;
        background-color: #000;
        text-align: left;
        line-height: normal;
    Because your inline style of height:auto; has more proximity (is closer) to the element being styled, it overrides the style in the stylesheet and applies the height: auto; instead of allowing the height: 20px;
    Beth

  • Background nav image not displaying in some browsers...

    Hi,
       I'm in the process of building a website template - still ironing out some bugs, but just discovered that the bacground image in my navigation bar isn't displaying on some browsers (including some versions of IE). It works in IE8 where my primary testing takes place (on both my local drive and from the temporary "live" server, but in most other browsers, doesn't show up...
    below is a link to my test page:
    http://home.roadrunner.com/~jgigandet/trinity/
    and here is the css with the applicable code in red:
    /*Menu Outer Wrapper*/
    .p7PMMh04 {
    width: auto;
    height: 20px;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: bold;
    background-image: url(img/new_bk.gif);
    background-repeat: repeat-x;
    background-color: #000;
    text-align: left;
    line-height: normal;
    /*Hide Sub-Menu in Design View
    Compensate for LI padding on Sliding Doors themes*/
    .p7PMMh04 ul div {
    display: none;
    TOP LEVEL MENU
    .p7PMMh04 ul {
    margin: 0;
    padding: 0;
    .p7PMMh04 li {
    list-style-type: none;
    float: left;
    width: 120px;
    /* Hide from IE5 Mac \*/
    .p7PMMh04 li {
    width: auto;
    /*Top Level Links*/
    .p7PMMh04 a {
    display: block;
    text-decoration: none;
    padding: 2px 14px 3px 14px !important;
    color: #ffc42a !important;
    /*border-right: 1px solid #8184e6;  */
    text-align: left;
    /*Link hover when no drop down is present */
    .p7PMMh04 a:hover {
    color: #df8f04 !important;
    /*background-color: #DFDFDF;*/
    Syntax for special classes programatically assigned to first and last links and also LIs
    See user guide for more information
    .p7PMMh04 ul a.pmmfirst {
    border-left: 1px solid #df8f04;
    .p7PMMh04 ul ul a.pmmfirst {
    border-left: 0;
    .p7PMMh04 ul a.pmmlast {
    .p7PMMh04 ul li.pmmfirst {
    .p7PMMh04 ul li.pmmlast {
    /*First Sub Level*/
    .p7PMMh04 ul ul {
    z-index: 10000;
    background-color: #333;
    width: 150px;
    background-image: url(img/pmm_carbon_subs.jpg);
    background-repeat: repeat-x;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    .p7PMMh04 ul ul li {
    float: none;
    background-color: #000;
    background-image: none;
    .p7PMMh04 ul ul a {
    padding: 4px 12px !important;
    color: #ffc42a !important;
    border-right: 0;
    text-align: left;
    overflow: hidden;
    /* rollover on 1st level rollovers  */
    .p7PMMh04 ul ul a:hover {
    background-color: #333; !important; 
    color: #df8f04 !important;
    /*Third Level (Flyouts in horizontal menu)*/
    .p7PMMh04 ul ul ul {
    border-top: 1px solid #df8f04;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    border-left: 1px solid #df8f04;
    SPECIAL IMAGE-BASED RULES
    .p7PMMh04 img {
    border: 0;
    .p7PMMh04 .p7PMM_img {
    padding: 0px;
    border: 0;
    background-image: none;
    background-color: transparent;
    TRIGGERS and CUURENT MARK RULES
    The Closed state relates to trigger items when their child menus are not showing
    The Open state relates to trigger items when their child menus are showing
    Selectors appended with _left Automatically change arrow position and orientation
    if sub levels are set to fly out to the left
    /*Sub Level*/
    .p7PMMh04 ul a.trig_closed, .p7PMMh04 ul a.trig_closed_left {
    background-image: url(img/pmm_south_medium.png);
    background-repeat: no-repeat;
    background-position: right center;
    .p7PMMh04 ul a.trig_closed_up {
    background-image: url(img/pmm_north_medium.gif);
    background-repeat: no-repeat;
    background-position: right center;
    .p7PMMh04 ul a.trig_open, .p7PMMh04 ul a.trig_open_up {
    color: #000 !important;
    background-color: #DFDFDF !important;   /* This is background color of main dropdown rollover */
    .p7PMMh04 ul ul a.trig_closed {
    background-image: url(img/pmm_east_dark.png);
    background-repeat: no-repeat;
    background-position: right center;
    .p7PMMh04 ul ul a.trig_closed_left {
    background-image: url(img/pmm_west_dark.gif);
    background-repeat: no-repeat;
    background-position: left center;
    .p7PMMh04 ul ul a.trig_open {
    color: #FFF !important;
    background-color: #424242 !important;
    /*The Current Marker (You are here) links*/
    .p7PMMh04 .current_mark {
    font-weight: bold;
    color: #60c3d1 !important;
    .p7PMMh04 ul ul .current_mark {
    color: #FFF !important;
    Utility Rule used for Clearing floats in Horizontal Menus
    .p7pmmclearfloat {
    clear: both;
    height: 0;
    line-height: 0;
    font-size: 0;
    Thanks in advance for any advice,
    Jesse

    You have applied a height of "auto"to your menubar container, which gives it no height at all in some browsers. If you have a clue what height you would like to display for your menubar, give it, instead of:
        <div style="height: auto;" id="p7PMM_1" class="p7PMMh04">
    Better yet, leave it in the CSS file, where you will find it when you go looking for it. You already assign a height there:
    .p7PMMh04 {
        width: auto;
        height: 20px;
        margin: 0 auto;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11px;
        font-weight: bold;
        background-image: url(http://home.roadrunner.com/~jgigandet/trinity/img/new_bk.gif);
        background-repeat: repeat-x;
        background-color: #000;
        text-align: left;
        line-height: normal;
    Because your inline style of height:auto; has more proximity (is closer) to the element being styled, it overrides the style in the stylesheet and applies the height: auto; instead of allowing the height: 20px;
    Beth

  • Colors not correct in some browsers.

    Why does my text not render the correct color in some versions of IE?  Is there a fix?  The white turns blue and the yellow turns black. Here's one of  the pages but its the same across the site. The text does have a drop shadow on it which I considered as a potential cause of the problem. Any thoughts?  http://www.rwhuntley.com/research.html

    RW Huntley wrote:
    Without the "height" how do we plan for the footer to be at the bottom
    of the page? If the content_wrapper "height" is defined by the content,
    I would have to plan exactly the correct content to push the footer down
    to exactly the correct height to end up at the bottom of the tablet
    screen.  What am I not understanding?
    That is not a good plan.
    Designing websites for one specific size is a good way to have a broken site appear on everything else.
    Setting the height of a text container is asking for trouble, as my screenshot shows, because the font size on my screen is slightly larger than what you test in, your page breaks and becomes almost unreadable at the end. Worse yet, it looks broken to your viewers. "Broken" sites don't get much for return visitors.
    Basically, what's happening is your font looks smaller on your tablet than it does on my PC (whether that's an OS, browser rendering engine or user setting is beside the point), so you set the heights to a pixel size that fits, on your tablet. Let me rephrase that: "on your one specific make, model, OS, screensize and resolution tablet".
    Everything looks OK to you, but when someone else comes to your page and has a font size setting that is different from your tablet's, the text will overflow the pixel size of the container and break your design.
    Doing what I suggest above will keep that from happening, but it won't let you keep the footer in the exact location you want.
    To do that, you could try position:fixed along with bottom:0px; in the footer container's css. You'd then need to play around with the end of your text area to give it enough "white space" at the bottom so the footer doesn't overlap the text, but it could be done. That way, no matter what device/browser views your site, the footer bar would be on the bottom of the window at all times.

  • Web-redirect to external radius not wokring on some browsers for Guest SSID

    Hi,
    We are using Cisco 5760 with 3.7, and the guest SSID doesn't perform web-redirect to external radius (cisco NAC appliance), for some browsers. Although the same works on Cisco 5508 and 4402 WLC with the same NAC appliance for all browsers.
    working browsers: IE9.0 and IE 11.0
    Non-working: Chrome all versions, Firefox all versions, Safari all versions.
    Can anyone provide some help if they have seen  this issue before.?

    You need to check the compatibility guide of Cisco WLC and check if those browsers are supported or not.

  • Characters not displaying in some browsers

    This is another Unicode issue, but as far as I can tell I have all of the correct file transfer settings.
    In MS Internet Explorer 6 and also Firefox 3.6.3 (both Windows versions running on Win XP) some unicode characters fail to display. The math 'times' symbol fails on both. The Greek lower case letter phi fails on Explorer but is okay on Firefox. Both browsers correctly recognize that the text encoding is utf8.
    Everything displays just fine on the Mac version in both Firefox and Safari. So, I assume the files reached Server okay and that the server is working fine.
    If I was using any other web publishing software I could use html escape characters × and Greek letters, but there appears to be no way of doing this on iWeb. As a temporary fix I will change the times symbol to the letter 'x' but I'm not sure what I can do about the phi and any other odd characters that may crop up in the future.
    Any suggestions?

    It's possible your problem could caused by lack of proper fonts on the machines you are testing, especially if Firefox 3 does not show ×. In that case using html escapes would not help. You could test this by creating a test page with the escapes and seeing if they work.
    Could you provide the url of the page where this is happening so I can see what is going on?

  • Website not compatible with some browsers

    I'm writing to ask why my website wouldn't be viewed properly
    in certain browsers? (mainly IE that I know of--it seems to funcion
    properly in Safari and Netscape).
    Any suggestions?
    thanks,
    Craig

    > But basically, I tried to set it up via the "Remote"
    server. But I actually
    > switched it to ftp (ftp://mine).
    I'm not sure from your description if the files are actually
    on your
    computer as a "Local Site Folder"
    Pls open this site definition for editing.
    click the "Advanced Tab" to find things easily.
    click the Remote Server info tab.
    What type of connection?
    --If it's "FTP/RDS" then close the dialog box.
    Make a new site definition, to a new empty folder on your
    computer's hard
    drive. Set remote access to FTP, then connect and "get" all
    the remote
    files.
    --If it's "FTP" then i'd suggest this-
    expand the Files Panel.
    Start renaming/moving files within the Files Panel of
    dreamweaver to make
    some sense of this structure. Always okay the dialog box to
    allow dw to
    update files and links.
    suggested structure-
    the site is "defined" to the folder holding the site's
    "homepage" index
    file.
    from here- it's whatever makes sense to you.
    What i generally do is if it's a smallish site, put all the
    html files in
    the top level, and images in an images folder.
    If it's a larger site, i make subfolders based on the site
    navigation.
    root folder <--site defined here
    index.html <--homepage
    images/ <subfolder for images used thru-out site
    products/
    images
    products1.html and so on, all the product pages here
    gallery/
    gallery1.html
    images/
    and so on.
    The only reason to do this reorganization is that the path to
    the images
    looks like you have uploaded your hard drive to the server.
    Or that your
    computer is the host, and people might have complete access
    to it. Or that
    something went all pear-shaped which is what did happen.
    another item you may want to tackle, is that there are NO
    words on your
    site. It has a lot of pages. But it's all single images. Not
    a word of text
    a search engine can "see"

  • Some images not displaying in some browsers

    Hi,
    I'm creating a newsletter in Dreamweaver using the design view.
    The finished thing works perfectly in Internet Explorer but when I view it in Firefox or Safari certain images are not displaying. There's no red cross or sign at all of why they're missing. They do however show as attachments at the bottom of the email.
    The code appears to be fine and all the images were uploaded in the same way, so can't think why some won't appear while others will. The only thing the missing images have in common is that they're all left aligned so the text wraps around them.
    I've been trying to fix this for ages and tearing my hair out. Any help greatly appreciated!!
    Thanks.

    Um, I can't seem to find it on the server, which can't be a good sign ) - :
    Have no idea why it's not appearing where it should but if I can get a link to work I'll send it to you.
    Thanks for your help

  • Missing text, not all, in some .pdf files

    I have just started to receive some .pdf files with photos on them and text. But there are places where there should be text and it does not show up when I receive. Others are able to view this particular .pdf I'm citing in its entirety. The person who sent to me often sends me .pdf graphics/text and until now I have not had a problem viewing his .pdf files. I have a current adobe reader file - not the paid version - and it is up to date. He is sending from his apple to my windows explorer. I don't know what to do here as it is important I receive these and I have no explanation?
    Also this particular .pdf he had created to be a 1/2 page ad in a local newspaper, so I think he would have designed it to be larger? But again, I've had no trouble reading what he sends even one meant for a full page ad. Is there something I can do to correct this? I did Google and it seems others have run into this on occasion.

    I'm going to try to imbed the adobe image of one of the files. I notice when I look on my desktop and the file image is there, it is small icon of course, but I can see the missing words clearly on it. But when I open it up, via the adobe reader, that is when spots are blank, but when I look very closely the words are really there but a very faded gray, to be not legible. And they are clearly there if I right click and highlight.These were two areas of course where he had made some changes.
    I was not allowed to download and insert the image and it is an adobe image....it says
    "The content image of this type is not allowed"   Interesting. It is merely an insert for fundraising - a small add (to be placed in energy invoices) for an animal group - small file. Also, remember I mentioned others could receive these two adobe files and had no problem reading those areas. It seems to be only me sad to say!

  • APEX tabs do not appear in some browsers (after 5)

    I am using APEX 4.2 to build a fairly simple application. I am pretty new to this, but I noticed the following:
    I use standard level1 tabs and I noticed that depending on the browser I use I can only see a maximum of 5 tabs. It just does not display the tabs after 5. I of course cleaned browser cache, etc .. to no avail.
    These are observations based on available browsers: I CANNOT see more than 5 tabs in IE or Firefox 24, but I CAN in Firefox 17 AND Google Chrome.
    Can anyone let me know if I can correct a setting somewhere to make all tabs appear in all browsers.
    Thanks.

    tardo wrote:Actually, those specific applications don't come with .desktop files, which is your problem (this will happen to everyone too). Only solution is to create one yourself, or google for one. If you find them, ask the maintainers to include them in the pkg.
    I don't agree with you. 2 days ago i had to reinstall my system because of a pacman problem. Before this, some applications i use used to have .desktop files. After reinstallation they don't. And also they were not upgraded. Maybe the problem is mirrors, that's not a big problem

  • Spry horizontal menu- not showing in some browsers

    my spry horizontal menu is showing up as a vertical list in
    some of our viewers computers. can i adjust the basic html so that
    if spry does not show up on someone's computer, a more basic
    horizontal table will show?

    Thank you all for the answers.
    Can pop menu magic work with image maps?
    Back in the day I created several drop down menus in Dreamweaver CS2 by adding behaviors to image maps. I liked that I pretty much could drop a menu from any point on an image.
    Example: http://www.bettendorfdental.com/
    So I have been going back to my old laptop and CS2 every time I needed to change something in these menus, but that was very inefficient.
    My client wants the top banner to be in one image, with customized buttons that share the background of the logo and business name.
    I have been customizing the topaz template in pop up magic but what the client reallly wants is to have the tab images as part of the larger image. So ideally there wouldn't be any text in the top menu and only the drop down part would show up.
    http://www.monicagraphicdesign.com/Bill/spiritual.html
    For people like me, who do not write or understand code, even searching a knowledge base can be a challenge because we do no know what to type in the search box! I am glad to learn Project Seven offers one on one support.
    Another challenge is that the client manages his own site and uses Front Page on a PC (and I have neither) so I don't even know if he can attach the stylesheets to every page where he inserts the menu.

Maybe you are looking for