Way to show html code ?

Hello,
Is there a component (like richedit) to show some html code in a form ?

Not that I know of in SAP Business One.  You could include the ActiveX control.  There's a sample on this on the SDK, although i couldn't run it myself.  I believe I read somewhere that the ActiveX feature on SAP doesn't run under Windows XP SP2. 
You could always try!

Similar Messages

  • Some Mail messages show html code

    I am using Mail 6.2 and Gmail IMAP.  Some Mail that I move from my Inbox to another Mail folder part of the message appears in html code in the folder where I moved the message.  The html code did not appera while the message was in my In Box.  If I look at the message in Gmail, no html code appears and the message has the same lable as the Mail folder where I moved the message.  If i look at the message on my iPad there is no html code.  The problem only appears to happen within Apple Mail

    By the way, also, the html code is interpreted correctly by the html tester on the following web site:
    http://www.webtutorialplus.com/html-code-tester.aspx
    So it seems that perhaps a simple edit should make it compatible with Mail App.
    I have verified that all uninterpreted messages where all I see is html raw code, are interpreted and rendered beautifully by the tool at the link above.  All I need do is to coy and paste the body of the message.   So it seems that what is missing is something to trigger the interpretation in Mail App.   Right?

  • Date picker field shows html code?

    I have a HTMLDB 2.0 app that I have ported to APEX 3.1. I have one field that is a date picker field which has a before regions computation on it that calculates an expiration date. For some reason, the text area shows the HTML code of the page, not the calculated date. No idea why. Anyone? TIA

    Can you show us on apex.oracle.com?
    Scott

  • Preview in browser shows html code

    Can't get DW to display my design, I go to "preview in
    browser" and it goes to the browser and shows the html code
    instead. Can someone help me fix that?

    <%@LANGUAGE="JAVASCRIPT" CODEPAGE="65001"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Untitled Document</title>
    <!-- TemplateEndEditable -->
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <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;
    /* 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.
    .twoColElsLtHdr #container {
    width: 46em; /* 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;
    margin: 0 auto; /* the auto margins (in conjunction with a
    width) center the page */
    border: 1px solid #000000;
    text-align: left; /* this overrides the text-align: center
    on the body element. */
    .twoColElsLtHdr #header {
    background: #DDDDDD;
    padding: 0 10px; /* 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. */
    .twoColElsLtHdr #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 */
    /* Tips for sidebar1:
    1. Be aware that if you set a font-size value on this div,
    the overall width of the div will be adjusted accordingly.
    2. Since we are working in ems, it's best not to use padding
    on the sidebar itself. It will be added to the width for standards
    compliant browsers creating an unknown actual width.
    3. Space between the side of the div and the elements within
    it can be created by placing a left and right margin on those
    elements as seen in the ".twoColElsLtHdr #sidebar1 p" rule.
    .twoColElsLtHdr #sidebar1 {
    float: left;
    width: 12em; /* since this element is floated, a width must
    be given */
    background: #EBEBEB; /* the background color will be
    displayed for the length of the content in the column, but no
    further */
    padding: 15px 0; /* top and bottom padding create visual
    space within this div */
    .twoColElsLtHdr #sidebar1 h3, .twoColElsLtHdr #sidebar1 p {
    margin-left: 10px; /* the left and right margin should be
    given to every element that will be placed in the side columns */
    margin-right: 10px;
    /* Tips for mainContent:
    1. If you give this #mainContent div a font-size value
    different than the #sidebar1 div, the margins of the #mainContent
    div will be based on its font-size and the width of the #sidebar1
    div will be based on its font-size. You may wish to adjust the
    values of these divs.
    2. The space between the mainContent and sidebar1 is created
    with the left margin on the mainContent div. No matter how much
    content the sidebar1 div contains, the column space will remain.
    You can remove this left margin if you want the #mainContent div's
    text to fill the #sidebar1 space when the content in #sidebar1
    ends.
    3. To avoid float drop, you may need to test to determine the
    approximate maximum image/element size since this layout is based
    on the user's font sizing combined with the values you set.
    However, if the user has their browser font size set lower than
    normal, less space will be available in the #mainContent div than
    you may see on testing.
    4. In the Internet Explorer Conditional Comment below, the
    zoom property is used to give the mainContent "hasLayout." This
    avoids several IE-specific bugs that may occur.
    .twoColElsLtHdr #mainContent {
    margin: 0 1.5em 0 13em; /* the right margin can be given in
    ems or pixels. It creates the space down the right side of the
    page. */
    .twoColElsLtHdr #footer {
    padding: 0 10px; /* this padding matches the left alignment
    of the elements in the divs that appear above it. */
    background:#DDDDDD;
    .twoColElsLtHdr #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 */
    /* Miscellaneous classes for reuse */
    .fltrt { /* this class can be used to float an element right
    in your page. The floated element must precede the element it
    should be next to on the page. */
    float: right;
    margin-left: 8px;
    .fltlft { /* this class can be used to float an element left
    in your page */
    float: left;
    margin-right: 8px;
    .clearfloat { /* this class should be placed on a div or
    break element and should be the final element before the close of a
    container that should fully contain a float */
    clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
    -->
    </style><!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional
    comment */
    .twoColElsLtHdr #sidebar1 { padding-top: 30px; }
    .twoColElsLtHdr #mainContent { zoom: 1; padding-top: 15px; }
    /* the above proprietary zoom property gives IE the hasLayout
    it needs to avoid several bugs */
    </style>
    <![endif]--></head>
    <body class="twoColElsLtHdr">
    <div id="container">
    <div id="header">
    <h1><img src="../MASTHEAD.jpg" width="720"
    height="269" /></h1>
    <!-- end #header --></div>
    <div id="sidebar1">
    <blockquote>
    <pre> </pre>
    </blockquote>
    <h3>Landscaping</h3>
    <p><strong>Lawn Care</strong></p>
    <p><strong>Chemical
    Services</strong></p>
    <p><strong>Tree
    Services</strong></p>
    <p><strong>Retaining
    Walls</strong></p>
    <p><strong>Water
    Gardens</strong></p>
    <p><strong>Special
    Projects</strong></p>
    <p> </p>
    <!-- end #sidebar1 --></div>
    <div id="mainContent">
    <h1> GET THE EDGE</h1>
    <p>Custom Edges Enterprises gives you the edge when it
    comes to landscape design, implementation and
    maintenance.</p>
    <p>Residential and commercial properties thrive under
    the supervision and attention of Custom Edges
    Enterpirses.</p>
    <!-- end #mainContent --></div>
    <!-- This clearing element should immediately follow the
    #mainContent div in order to force the #container div to contain
    all child floats --><br class="clearfloat" />
    <div id="footer">
    <p>Footer</p>
    <!-- end #footer --></div>
    <!-- end #container --></div>
    </body>
    </html>

  • Collection showing HTML code in report

    I'm trying to upgrade/rebuild an application. It was in 3.2 and now I'm moving to 4.1. Since APEX doesn't allow two tabular forms on the same page, I was trying to use collection handling to do the same thing, but I'm running into something I never saw under 3.2: when I use a report region to display the collection items, it displays the HTML literals instead of the form fields. I use collections a LOT so I need to know how to use them in 4.1 - if the rules have changed.
    I use this to build the collection:
    apex_collection.create_or_truncate_collection
      (p_collection_name => 'EQP_ACQ_TYPE');
    DECLARE
      v_type_id   EQUIP_ACQ_TYPE_REF.EQUIP_ACQ_TYPE_ID%TYPE;
      v_abbr      EQUIP_ACQ_TYPE_REF.ACQ_TYPE_ABBR%TYPE;
      v_desc      EQUIP_ACQ_TYPE_REF.ACQ_TYPE_DESC%TYPE;
      cursor c_prepop is
      select EQUIP_ACQ_TYPE_ID, ACQ_TYPE_ABBR, ACQ_TYPE_DESC
        from EQUIP_ACQ_TYPE_REF;
    BEGIN
      OPEN c_prepop;
        LOOP
          FETCH c_prepop into v_type_id, v_abbr, v_desc;
          EXIT WHEN c_prepop%NOTFOUND;
            APEX_COLLECTION.ADD_MEMBER(
               p_collection_name => 'EQP_ACQ_TYPE'
               , p_c001 => v_type_id --Type ID
               , p_c002 => v_abbr --Type Abbreviation
               , p_c003 => v_desc --Type Description
        END LOOP;
      CLOSE c_prepop;
      APEX_COLLECTION.ADD_MEMBER(
         p_collection_name => 'EQP_ACQ_TYPE'
         , p_c001 => 0  -- Type ID placeholder
         , p_c002 => NULL
         , p_c003 => NULL
    END;and this to display the collection in a standard report region:
    SELECT apex_item.hidden(9, SEQ_ID) as SEQ_ID
         , apex_item.text(1, c001, 3, 3) TYPE_ID
         , apex_item.text(2, c002, 8, 8) TYPE_ABBR
         , apex_item.text(3, c003, 16, 47) TYPE_DESC
      from APEX_COLLECTIONS
    where COLLECTION_NAME = 'EQP_ACQ_TYPE'This is the very most basic collection I use. Any help?

    So instead of the fields, I see the following text:
    Seq Id     Type Id     Type Abbr     Type Desc
    <input type="hidden" name="f09" value="1" />     <input type="text" name="f01" size="3" maxlength="3" value="0" />     <input type="text" name="f02" size="8" maxlength="8" value="" />     <input type="text" name="f03" size="16" maxlength="47" value="" />

  • Replying to a web-based email shows html code in the area where the response should be typed

    this problem still exists and I am tired of trying new versions, then having to uninstall them and go back to version 5. Now you FORCE me to upgrade to version 7 where my web based email doesn't work. So looks like I will switch browsers to Chrome. You shouldn't automatically force and upgrade on anyone - especially if you haven't fixed the bugs in it!!!
    I posted this problem before and no one answered it - so I don't expect a reply to this one either. Too bad, cause I liked Firefox.

    This is an issue for me too and everytime I upgrade on a different computer it pops up - very annoying and I posted a request for support but never received an answer - not even an acknowledgment. I like Firefox - don't want to change and it only happens in my web based email but I may have to switch browsers too.

  • SharePoint 2013 Document Library template displays html code when creating a new document from a sharepoint list multiline rich text

    I have a 2010 work flow that is associated with a sharepoint 2013 list that creates a new list document using a custom Microsoft Word 2013 template with a rich text multiline field quick part.  The workflow creates the document and populates
    the the quickpart, however, the text in the document is showing html codes
    <div class="ExternalClass2116495984EB429D95B02CC15F85FD4C"><h1>ABC123</h1><h2>Test&#58; 1234</h2></div>
    and not as 
    ABC123
    Test: 1234
    Is there a no code solution for this?

    Hi,
    I have done a test and I can reproduced your issue.
    I referred to the blog about Automatically create Word documents which include list fields:
    http://blogs.technet.com/b/brenclarke/archive/2009/04/15/automatically-create-word-documents-which-include-list-fields.aspx
    When I create a multiple line of text column in a list, I just choose Plain text, Then I solved the issue:
    Besides, here is a similar post, you can take a look at:
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/a7ab3a61-6643-4a47-a464-fe46b5db1558/rich-text-field-showing-html-code
    Best Regards,
    Lisa Chen
    Lisa Chen
    TechNet Community Support

  • Html code integration iWeb

    Is there a way to add html Code to a site? f.e. to add some site content or an rss feed. o.s.

    Yes, there is. In the Widgets panel in iWeb's right side slide-out, you'll see an +RSS Feed+ widget and an +HTML Snippet+ widget. See here:
    http://www.apple.com/ilife/iweb/#widgets
    ...simply drag the widget onto iWeb's canvas.

  • BB sent email msgs show as HTML code with Entourage?

    All my emails sent from my BB BOLD appear to what I think is HTML code in my "sent" folder in Entourage. When viewing the sent folder on my HP laptop using Outlook the sent msgs appear normal. Anyone have any suggestions for a remedy. So far, APL CARE and Microsoft tech support have no suggestions for a fix. Below my mane is a sample of what a sent msg from my blackberry looks like in Entourage. I deleted some info for privacy purposes.
    Stats:
    Bold 9000 OS 4.6.0.297
    Mac OS 10.6.2 (IMAC 27")
    Office 2008 Business Edition
    Exchange email but not setup through an enterprise server
    1 very frustrated customer!
    Jason
    X-MimeOLE: Produced By Microsoft Exchange V6.5
    Received: from 67.223.78.109 ([67.223.78.109]) by dspsrv1.DSPCLINICAL.local ([192.168.30.10]) with Microsoft Exchange Server HTTP-DAV ; Wed, 3 Feb 2010 16:12:55 +0000
    MIME-Version: 1.0
    Content-Type: text/html;
    charset="Windows-1252"
    Content-Transfer-Encoding: quoted-printable
    X-rim-org-msg-ref-id: 1494303592
    Content-class: urn:content-classes:message
    Subject: Fw: jungreis edc
    Date: Wed, 3 Feb 2010 11:15:34 -0500
    Message-ID: <1494303592-1265213724-cardhudecombobulatorblackberry.rim.net-311610119-@bda066.bisx.prod.on.blackberry>
    X-MS-Has-Attach:
    X-MS-TNEF-Correlator:
    Thread-Topic: jungreis edc
    Thread-Index: Acqk677TN29/DgTOTZOarV/XXQzg==
    From: "Jason
    To: "Jacob
    Reply-To: "Jason
    <html xmlns:o=3D"urn:schemas-microsoft-com:office:office" =
    xmlns:w=3D"urn:schemas-microsoft-com:office:word" =
    xmlns:st1=3D"urn:schemas-microsoft-com:office:smarttags" =
    xmlns=3D"http://www.w3.org/TR/REC-html40">
    <head>
    <meta name=3DGenerator content=3D"Microsoft Word 11 (filtered medium)">
    <o:SmartTagType =
    namespaceuri=3D"urn:schemas-microsoft-com:office:smarttags"
    name=3D"Street"/>
    <o:SmartTagType =
    namespaceuri=3D"urn:schemas-microsoft-com:office:smarttags"
    name=3D"address"/>
    <o:SmartTagType =
    namespaceuri=3D"urn:schemas-microsoft-com:office:smarttags"
    name=3D"City"/>
    <o:SmartTagType =
    namespaceuri=3D"urn:schemas-microsoft-com:office:smarttags"
    name=3D"place"/>
    <!--[if !mso]>
    <style>
    st1\:*{behavior:url(#default#ieooui) }
    </style>
    <![endif]-->
    <style>
    <!--
    /* Font Definitions */
    @font-face
    {font-family:"Rage Italic";
    panose-1:3 7 5 2 4 5 7 7 3 4;}
    /* Style Definitions */
    p.MsoNormal, li.MsoNormal, div.MsoNormal
    {margin:0in;
    margin-bottom:.0001pt;
    font-size:12.0pt;
    font-family:"Times New Roman";}
    a:link, span.MsoHyperlink
    {color:blue;
    text-decoration:underline;}
    a:visited, span.MsoHyperlinkFollowed
    {color:purple;
    text-decoration:underline;}
    span.EmailStyle17
    {mso-style-type:personal-compose;
    font-family:Arial;
    color:windowtext;}
    @page Section1
    {size:8.5in 11.0in;
    margin:1.0in 1.25in 1.0in 1.25in;}
    div.Section1
    {page:Section1;}
    -->
    </style>
    </head>
    <span =
    style=3D'font-size:10.0pt;
    font-family:Arial'>Hi Jason,
    <span =
    style=3D'font-size:10.0pt;
    font-family:Arial'> 
    <span =
    style=3D'font-size:10.0pt;
    font-family:Arial'>I just wanted to let you know a lot of my patients =
    are
    frozen again in EDC.  Maybe they should be, I don’t know, I =
    just wanted
    to let you know.
    <span =
    style=3D'font-size:10.0pt;
    font-family:Arial'> 
    <span =
    style=3D'font-size:
    12.0pt'>Regards,
    <font size=3D6 color=3Dblue face=3D"Rage =
    Italic">Joan =
    Cutillo, <span =
    style=3D'font-size:18.0pt;font-family:
    "Rage Italic";color:blue'>LPN, CCRC
    <span =
    style=3D'font-size:
    12.0pt'>Joan Cutillo, LPN, CCRC
    <span =
    style=3D'font-size:
    12.0pt'>Clinical Research Manager
    <span =
    style=3D'font-size:
    12.0pt'>National Pain Research Institute, =
    LLC
    <st1:address =
    w:st=3D"on">1201 S. =
    Orlando Ave.
    <font =
    size=3D3
    face=3D"Times New Roman">Winter =
    Park,
    Fl, 32789
    <span =
    style=3D'font-size:10.0pt;
    font-family:Arial'>(407) 622-5766 x1420
    <span =
    style=3D'font-size:10.0pt;
    font-family:Arial'>Fax 1-561-515-8869
    <span =
    style=3D'font-size:10.0pt;
    font-family:Arial'><a =
    href=3D"mailto:
    <span =
    style=3D'font-size:
    12.0pt'> 
    <!--[object_id=3D#natpain.com#]--><FONT =
    color=3D#0000ff>
    <SPAN =
    style=3D"FONT-STYLE: italic; FONT-SIZE: 12pt">
    <SPAN style=3D"COLOR: =
    black; FONT-SIZE: 10pt; mso-fareast-font-family: 'Times New =
    Roman'">NOTICE: This e-mail (including attachments) =
    is covered by the Electronic Communications Privacy Act, 18 U.S.C. =
    2510-2521, is confidential and may be legally privileged. If you are not =
    the intended recipient, you are hereby notified that any retention, =
    dissemination, distribution or copying of this communication is strictly =
    prohibited. Please reply to the sender that you have received the =
    message in error, and then delete it.<SPAN =
    style=3D"FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt; =
    mso-fareast-font-family: 'Times New Roman'"><?xml:namespace prefix =3D o =
    ns =3D "urn:schemas-microsoft-com:office:office" =
    /></body>
    </html>

    I would suggest you consult your BB documentation and/or their tech support and see if there's a way to send email as plain text rather than HTML. That would avoid the problem regardless of the email client being used to read the messages.
    Alternatively, you could try using Apple Mail (included with Mac OS X) instead of Entourage and see if Mail has better luck rendering the HTML messages your BB is sending.

  • CQ page is not rendering properly. It is not rendering HTML. It is showing HTML source code as is.

    On some of the pages, I am getting this weird behavior wherein page is not rendering properly. It is showing HTML source code as is. Could you please help me out? What could be the issue? And how can we get rid of the same?

    Check your component jsp page. it is possible that it is just plan file without directives <@ or you might have miss to close tag which is creating source as text to render
    Paste your jsp code in case you need further help
    Thanks,
    Ajit

  • Html code showing up instead of website

    I'v recently been learning html and attempted to make my own site. But everytime I try opening my code from notebook in Safari it jsut shows the code. What am I doing wrong or is there a setting i have to turn on or something. Any help would be appreciated.
    Thanks

    There are different document types for different HTML standards: "loose", "transitional", and "strict". Here's an example used by the Apple Discussions Forums:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    It all depends on which standard your page adheres to. You can get more info from http://www.w3c.org

  • HTML code is showing up on web page! HELP!

    I'm trying to write an index.html on TextEdit but every time I try to open it the HTML code doesn't render and the code just shows on the page. I saved it as a web page with the extension as HTML so I don't believe that the extension is the problem. Help?

    How are you trying to open it? It must be opened in your browser. It must be located in your web server's user directory, and the web server must be running.
    So in your browser you would put an address something like http://localhost/~yourusername/ or http://localhost/~yourusername/index.html

  • Html-code for showing cover of current issue?

    Has anyone an example of a simple html-code for showing the latest issue?
    All I need is the adress to the image-file.

    There was a problem like that in the WYSIWYG before 7.0.2 as
    described in Using RH7 on my site. However, that was local and the
    patch fixed it.
    I had a completely different problem a while back but wonder
    if the solution might work. Speak to your web guys and suggest
    this.
    Add the AddDefaultCharset utf-8 directive to either the
    Apache config or the site .htaccess file
    It's a long shot. I don't know what other effects it might
    have on your server but the web guys should.

  • Html emails are not displaying. they just show the code. text emails don't display at all. what's up?

    suddenly today my email won't display properly. html emails just display the actual html code instead of a graphic display. Text emails just show a blank page. I have changed the View setting to show messages as original html, simple html and plain text. None of the settings restores things. All these emails were viewable properly yesterday.
    Anyone got any ideas as to what's up?

    sounds like your index and the data are out of synch. Often the result of anti virus activity either blocking the update of the index or quarantining the whole inbox so there is no mail left to display.
    Right click the folder, select properties and then the repair button.

  • All the html code of my links shows when you roll over them

    I have spent weeks creating an e-commerce web site with iweb. Now, for the first time I notice that when you stop on one of the links to my shopping cart the entire html code is visible for all to see. Is there any way to stop this from happening?

    Lucas,
    Open System Preferences>Dock...and make the appropriate selections to match your Dock preferences.

Maybe you are looking for

  • How to get the key Figure values.!.......?

    Hi friends...       I have a scenerio , where I have loaded the data from 3 different data sources say A  , B and C in to 2 different DSO s and in to 2 different Info Cubes. And I have built Multi Provider from this 2 Info cubes. In the data source B

  • Does Sender Mail Adapter support "PayloadZipBean" module

    Hi everyone, I have a scenario where, I get the email with an zip file as an attachment and I need to extract this file and send across. There is no mapping transformation done here, only I need to forward the attached file to the file server. Zip fi

  • Why the oval is not showing up?

    heres my code: import java.awt.Color; import java.awt.Dimension; import java.awt.Graphics; import java.awt.image.BufferedImage; public class myApplet extends java.applet.Applet { boolean initialization = true; int centerX, centerY, maxX, maxY; float

  • Upgrade Exchange server 2013 to CU7 error

    Dear Microsoft Team I have Exchange server 2013 SP1 and upgrade it to CU5 it is working normal But wen I try to Upgrade it to CU7 I got this error massage Error: The following error was generated when "$error.Clear();           $maxWait = New-TimeSpa

  • IPhoto having compatibility issues with Chrome and IE

    I created a photo album to upload on my website using iPhoto '11. I was successful in uploading and can see the album in Safari. However, if I open the link in Chrome or IE, I just see a blank area where the slideshow should be and the "play slidesho