HTML onload issue

Hi
Has anyone tried to create/use the 'onload' property of the 'body' tag in IDM? We are trying to call a JavaScript function when the page loads but are unable to find a means to create the body tag with the onload property. Any help will be highly appreciated.
Thanks
callenmas

If you are trying to get this to work within an SIM form without modifications to the JSPs you can add the following field to your form:
<Field>
<Display class='Javascript'>
<Property name='script'>
<String>
function myOnLoadFunction()
// Add your code here
window.onload = myOnLoadFunction;
</String>
</Property>
</Display>
</Field>
You can attach the function to any onload property for an accessible DOM object in a similar fashion.
Hope this helps.

Similar Messages

  • MSOutlook HTML newsletter issues - large gaps between large images and small gaps...

    Please can you help me!
    Searched the web & found plently of advice but still getting formatting display issue when viewing HTML newsletter in MS Outlook.
    Fully aware on the basics regarding the multiple issues when creating HTML newsletters but this is driving me crazy.
    Apparently there is a image height limit within Outlook (can't find out what this is) so I have sliced my larger images into 5/6 parts which solves the display issue in Outlook.
    But the gaps between the slices are now being displayed as small blank spaces within Hotmail.
    I did use <br> between each slice as without caused the fixed 600px wide containing table to expand due to the slices stacking hoz.
    Also still getting small gaps (like <br> spaces) between all images in Outlook when displaying perfectly (no gaps) in a browser.
    This is my newsletter displaying correctly via a browser:
    http://eu.shorts.tv/site-admin/modules/mod_mail/SHORTSTV_DECEMBER_2012.htm
    Using Dreamweaver 4 (do have the latest version via Adobe Creative Cloud Membership but not on this system).
    Hope you can help
    Many thanks

    Many thanks David
    I also found this article which is currently sitting on my desk.
    Pdf would make perfect sense or even a url link to view via a browser but these guys need it contained within the email.
    Thanks again for your kind advice.
    Regards
    ShortsTV
    Date: Fri, 30 Nov 2012 18:05:08 -0700
    From: [email protected]
    To: [email protected]
    Subject: MSOutlook HTML newsletter issues - large gaps between large images and small gaps...
        Re: MSOutlook HTML newsletter issues - large gaps between large images and small gaps...
        created by David__B in Adobe Creative Cloud - View the full discussion
    Hey Shortstv, Not something I know much about, searched and found thishttp://robcubbon.com/create-html-email-newsletters-outlook/ Maybe create it as a PDF attachment instead? -Dave
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/4888255#4888255
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4888255#4888255
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4888255#4888255. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Adobe Creative Cloud by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Is Muse compatible with Email Service Providers. I found html code issues - PCs have viewing issues

    Is Muse compatible with Email Service Providers? A colleague said Muse has html code issues as PCs struggle to display the artwork correctly when emails are delivered.

    Is Muse compatible with Email Service Providers? A colleague said Muse has html code issues as PCs struggle to display the artwork correctly when emails are delivered.

  • HP LaserJet p1102w with Mac OS X10.6.8 HTML config issue

    Hello, 
    I have been using this printer for a few years now and have moved house a few times and successfully updated the wireless settings on the printer through HTML config. Lately, in printer utilities the HTML config button does not show up where it is meant to.
    I have installed / uninstalled the latest firmware, software drivers, printers and made sure they were platform specific.
    This is really annoying. 
    Is there old software available for download? it was working fine until the recent update - which I did so I could use the eprint features.
    Best regards
    Costas
    Printer: 
    HP LaserJet p1102w, Firmware datacode = 20130213
    Computer:
    Macbook white, late 2008 model: 2.4Ghz Core2Duo, 4G RAM with OS X 10.6.8

    From the name of the printer, it looks like you have it installed through a USB connection. 
    Here is what I would. First go into “System Preferences” and then select either  “Print & Scan” or "Print & Fax".
    Right click (or control + click) on the rectangle listing your printers and then select “Reset Printing System”.  
    NOTE: This will delete all printers. 
    After you have reset the printing system, let's make sure you have the most recent HP driver package installed. 
    You can download it here: http://support.apple.com/downloads/DL907/en_US/HPPrinterDrivers2.14.dmg
    Once you have downloaded the driver package and completed the installation, go into your print settings under System Preferences > Print & Scan. To add the printer, click the plus (+) sign. You should see your printer listed here. If not, click "Add Printer or Scanner." Click the name of your printer and then click "Use:” box.  Make sure that says the name of your printer and not AirPrint. Next make sure that the printer "Kind:" is set to Bonjour or Bonjour Multifunction. Click "Add" down in the bottom right hand corner.
    This will add your printer back using the most recent HP print driver available through Apple. Let me know if this helps resolve your issue or not. If it doesn't, let me know I will see what else I can do.
    Best of luck,
    Kyle
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • HTML Coding Issues with Dynamic Sites

    I am trying to create a button using the sliding doors technique and I think I have the correct css, but the issue comes with the HTML.
    Here is the CSS:
    .Button
    /* Sliding right image */
        background: transparent url('../Images/button_right_02.png') no-repeat scroll top right;
    display: block;
    float: left;
    height: 38px;
    margin-right: 6px;
    padding-right: 20px;
    text-decoration: none;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size:12px;
    font-weight:bold;
    .button span {
    /* Background left image */
    background: transparent url('../Images/button_left_02.png') no-repeat;
    display: inline;
    line-height: 22px; /* CHANGE THIS VALUE ACCORDING TO BUTTONG HEIGHT */
    padding: 7px 0 5px 18px;
    .button:hover span{
    text-decoration:underline;
    However the HTML is a little bit tricky.  I only get the right side of the image to show up on the button.  Here is the HTML:
    <td colspan=2 ALIGN=center class="button">
           <table BORDER=0  CELLPADDING=3>
    <tr>         
                      <td align=center><input name="Button" type=button class="Button" OnClick=submitScreen(&quot;AccountSummary&quot;) value="Back to Summary"></td>
                </tr>
           </table>
        </td>
    This is what I am ending up with:
    This is what I am trying to get to:
    The latter image I am able to get to with my own HTML that looks like this:
    <body>
    <a class="button" href="button2.css"><span>Account Summary</span></a>
    </body>
    But I need to incorporate that so it works in the above HTML (incorporated with an external database)
    Your help is appreciated.

    Dude I git you ... my template in html is giving me issues also ....
    how come I build it then a moth later it wont allow me to nuild pages from the template???
    also how do I add my picture logo to my account??

  • Full Screen + Html + Flash Issues

    Hello, I have an Air app that will be running in Full screen
    interactive mode. Inside this app, I have an html control that is
    setup to view a page of mine that contains a flash file. The flash
    file is setup to fill the page and runs great in ie and firefox,
    but when i run the air app, the screen flashes and jumps all over
    the place and is very glitchy, if I bring it down to less than full
    screen it returns to normal, then glitches out again when i
    maximise...what do you recommend I check out with this odd issue?
    The following url is my flash page link:
    http://www.video-postcard.com/mapApp.aspx?customerId=47
    Thanks!

    Hi,
    SWF content in HTML has some limitations in AIR as mentioned
    in the
    AIR
    release notes. But this seems to be a new issue.
    If you can create a minimal sample that reproduces the issue,
    it would be great if you could submit a bug report at
    http://www.adobe.com/go/wish

  • HTML+CSS Issue

    Hi there,
    I am not sure if my question can be answered here, but here's what's happening:
    I have a blog on my page that's hosted by Zenfolio, and they don't support this, yet its their interface doing this and not me. Whenever I insert a new image, and click next to it and then "enter" to make a new paragraph below for text or another image it is adding unwanted paragraphs! In the photo below there should be one paragraph and not 8.
    I used to have this happen to me in Dreamweaver rarely, but I was able to go in HTML view and simply delete the extra paragraphs without altering the rest of the layout. If I go in HTML view in that interface it will not just delete those paragraphs, but would mangle up everything....see the other screen shot: It is moving the text around the image which is not what I want.
    This interface I am typing now is very similar with the one from Zenfolio, here too I inserted these photos, and had to click next to them + enter to go down to the next paragraph, and when I looked at the HTML there was only one paragraph spacing between the images as it should be; so the question is why is it doing this and how do I stop it!? I rather not use tables. (Which was their suggestion, and which has also a spacing problem; I set the height of the cell to 22 for example and when previewing the post its at least 60).

    Hi,
    I don't have that option...this is what I have there: They don't allow many options apparently on the posts; I can't change the margin either, and its set to like 45 or something...really far from the side of the page. I can customize the CSS for the rest of the page, but not the blog part. I have an issue with the text size too because it makes it 1.36% larger by default, and whenever I change that it won't remember it as I continue on the same line. I set the size at 12, and after I put a period, and continue on the same line it blows the text again at 16.
    I emailed them about it...that interface also doesn't correct spellings; it underlines them but not offers the correction, it offers me to paste from word...which is very annoying.
    Thank you,

  • HTML Email Issue

    My problem is strictly an Outlook 2007 HTML issue.  Now I'm trying Mailchimp to send an email.  The problem is with thier footer.  They are telling me its my code that is causing the display issues with their footer.
    I have run the Dreamweaver Outlook 2007 Browser Validator from the MSDN website ( http://msdn.microsoft.com/en-us/library/aa338201.aspx ) and I have run my page through the W3 Validator ( http://validator.w3.org/ ).  No errors are appearing and it is only their footer which is causing the issue.
    Here is the code that Mailchimp has which they want to show a grey shaded box with a top and bottom border:
    <center><table width="95%" style="clear:both;margin:0px !important;padding:0px !important;margin-top:20px !important;border-top:1px solid #999 !important;border-bottom:1px solid #999 !important;" cellpadding="0" cellspacing="0"><tr>
        <td align="left" style="padding:10px !important;margin:0px !important;color:#666 !important;background:#CCC !important;width:50% !important;border-bottom 1px solid #999 !important;font-family:Verdana,Arial,Sans !important;font-size:11px !important;font-weight:normal !important;font-style:normal !important;text-decoration:none !important;vertical-align:middle !important;text-align:left !important;">
            Sent to *|EMAIL|*.  <a href="*|UNSUB|*" style="font-family:Verdana,Arial,Sans !important;font-size:11px !important;font-weight:normal !important;font-style:normal !important;text-decoration:none !important;color:#03C !important;">Unsubscribe</a> |
            <a href="*|UPDATE_PROFILE|*" style="font-family:Verdana,Arial,Sans !important;font-size:11px !important;font-weight:normal !important;font-style:normal !important;text-decoration:none !important;color:#03C !important;">Update Profile</a> |
            <a href="*|FORWARD|*" style="font-family:Verdana,Arial,Sans !important;font-size:11px !important;font-weight:normal !important;font-style:normal !important;text-decoration:none !important;color:#03C !important;">Forward to a Friend</a>
        </td>
        <td align="right" style="padding:10px !important;margin:0px !important;color:#666 !important;background:#CCC !important;width:50% !important;border-bottom 1px solid #999 !important;vertical-align:middle !important;text-align:right !important;">
            *|REWARDS|*
        </td>
    </tr></table></center>
    The problem is thatt this is not displaying as a table with a shaded background and top/bottom border.  It is displaying as plain text on a white background.  However, running their code through the W3 validator shows no validation errors in their code.  This leads me to believe that there is some quirk that neither myself nor their support has been able to figure out.
    If anyone has any ideas as to why this is not showing properly in Outlook 2007 I am inclined to try just about anything at this point.

    Ok, I found solution on Verizon forum:
    1) delete your email-related service books (options ---> advanced options ---> service books ---> delete everything with your email address on it)
    2) create an account on BIS from your phone if you haven't done so in the past (www.blackberry.com/go/vzw from your blackberry browser, it will ask for your PIN and MEID)OR update BIS account online with MEID if you have it already (Go to BIS on a computer browser then go to Change device and enter your HEX MEID).
    4) do a hard reset (using QuickPull or battery pull)
    5) Go to BIS on a computer browser, log on to your account, and re-add your email accounts
    6) You should get an email from blackberry that your email has been activated, and you'll get HTML emails back in no time!
    Thanks for lilyipster and bumsy1 from that forum!!

  • HTML code issues

    I have a topic that was once stable
    , but now at one point in the top
    ic the style is correct. But in another area, the style will not take and the HTM
    L code inserts <span> etc., etc. Here is an example if you look at the H
    2 head:
    <?xml version="1.0" encoding="utf-8" ?>
    <!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" />
    <meta name="template" content="NERC.htt" />
    <meta name="generator" content="Adobe RoboHelp 8" />
    <title>Revoking PI User Access</title>
    <link rel="StyleSheet" href="..\default.css" type="text/css" />
    </head>
    <body>
    <?rh-script_start ?><script src="../ehlpdhtm.js" type="text/javascript"
            language="JavaScript1.2"></script><?rh-script_end ?>
    <?rh-placeholder type="header" ?>
    <h1>Revoking PI User Access</h1>
    <p>Access for both a PI user and a SCADAView user can be revoked if a Mantis
    ticket requesting removal from IT AccessRequest exists. For Mantis tickets,
    make sure that a <span class="BoldName">Real Time Systems User ID Add-Changed-Remove</span>
    form completed by the user’s E4 manager is attached to the ticket. If
    not, contact the requestor.</p>
    <p>In order to remove access, you must search for the user name in both
    the old and new databases:</p>
    <ul type="disc">
    <li class="BulletedList">For instructions on revoking a user's access
      in the old database, <a href="#Removing_Access_Old_DB">click here</a>.</li>
    <li class="BulletedList">For instructions on revoking a user's access
      in the new Active Directory database, <a href="#Removing_Access_New_DB">click
      here</a>.</li>
    </ul>
    <p>After revoking a PI user's access, you also need to remove the user's
    name from the Outlook Address Book. For instructions, <a href="#Removing_User_Outlook_Group">click
    here.</a></p>
    <h2>Removing a user's access in the old database<a name="Removing_Access_Old_DB"></a></h2>
    <ol>
    <li class="NumberedList"><p style="margin-left: 0px;">Go to the SCADA
      website at <a href="http://scada/" style="font-size: 10pt;">HTTP://SCADA</a>.</p></li>
    <li class="NumberedList"><p>When the <span class="BoldName">SCADA &amp;
      Distribution Automation</span> home page displays, under <span class="BoldName">PI
      Historian</span>, click <span class="BoldName">User Maintenance</span>
      (circled in red). <a class="dropspot" href="javascript:TextPopup(this)"
            id="a5">Click to view</a>.</p>
    <div class="droptext" id="POPUP134020538" style="display: none;">
      <p><img src="../PI_Historian.jpg" alt="" style="border-left-style: Solid;
         border-left-width: 2px; border-right-style: Solid; border-right-width: 2px;
         border-top-style: Solid; border-top-width: 2px; border-bottom-style: Solid;
         border-bottom-width: 2px;" width="194" height="109" border="2" /></p>
    </div></li>
    <li class="NumberedList"><p>When the SCADA System Logon screen displays,
      perform the following:</p></li>
    </ol>
    <ol start="1">
    <li class="NumberedList2"><p>For <span class="BoldName">User Id,</span>
      enter your PI user id.</p></li>
    <li class="NumberedList2"><p>For <span class="BoldName">Password,</span>enter
      your PI password.</p></li>
    <li class="NumberedList2"><p>For <span class="BoldName">Select Group,
      </span>click <span class="BoldName">PRG</span> from the dropdown list.</p></li>
    <li class="NumberedList2"><p>Click <img src="../ButtonSubmit.JPG" alt=""
                style="border: none;" width="61"
                height="25" border="0" /><span
      class="BoldName">.</span></p></li>
    </ol>
    <p style="text-indent: 84px;"><span class="BoldName">&#160;Result:</span><span
      class="Result"> The </span><span class="BoldName">User Administration</span><span
      class="Result"> screen displays the user's information. <a class="dropspot"
      href="javascript:TextPopup(this)" id="a2">Click to view</a>.</span></p>
    <div class="droptext" id="POPUP133400192" style="display: none;">
    <p><img src="../UAdminKUSBJX.jpg" alt="" style="border: none;" width="456"
        height="368" border="0" /></p>
    </div>
    <ol start="4" type="1">
    <li class="NumberedList"><span class="Result">I</span>f the user id
      is recognized, but PI access must be removed while keeping <span class="BoldName"
      style="font-weight: normal;">SCADAView.</span></li>
    <li class="NumberedList">If the user id is recognized, but PI access
      must be removed while keeping <span class="BoldName" style="font-weight: normal;">SCADAView
      access, uncheck the </span><span class="BoldName">PI Access</span><span
      class="BoldName" style="font-weight: normal;"> checkbox and click
      </span><img src="../ButtonModify.JPG" alt="" style="border: none;"
         width="63" height="25" border="0" />. </li>
    </ol>
    <p style="margin-left: 60px;"><span class="BoldName">&#160;Result: &#160;</span>If
    the PI-only access removal is successful you should see this message (circled
    in red).</p>
    <ul type="disc">
    <ol start="6" type="1">
      <li class="NumberedList"><p>&#160;</p></li>
      <li class="NumberedList">If both SCADAView and PI Access must be
       removed, click <img src="../ButtonDelete.JPG" alt="" style="border: none;"
            width="63" height="24" border="0" />.</li>
      <p>&#160;Result: If both SCADAView and PI access removal is successful
       you should see the following message (circled in red). <a class="dropspot"
       href="javascript:TextPopup(this)" id="a4">Click to view.</a></p>
      <div class="droptext" id="POPUP133037650" style="display: none;">
       <p><img src="../UAdminDeleted.jpg" alt="" style="border: none;"
          width="466" height="409" border="0" /></p>
      </div>
      <p class="Note" style="margin-left: 108px; text-indent: -48px;">&#160;NOTE:
       &#160;<span style="font-weight: normal;">The User ID is the person’s
       LAN user id. This removes the user id from the GLOBE_USER table.</span></p>
      <h2><span style="font-weight: normal;">Removing a user's access
       in the new database (Windows Active Directory)<a name="Removing_Access_New_DB"></a></span></h2>
      <ol type="1">
       <li class="NumberedList"><p><span style="font-weight: normal;">Remote
        desktop to either server: <span style="font-weight: bold;">cccs-pifig01</span>
        or <span style="font-weight: bold;">lc3s-pifig01</span>.</span></p></li>
       <li class="NumberedList"><p><span style="font-weight: normal;">Double-click
        the <span style="font-weight: bold;">Energy PI Users Group.</span></span></p></li>
       <li class="NumberedList"><p><span style="font-weight: normal;">When
        the<span style="font-weight: bold;"> Energy PI Users Properties
        </span>dialog<span style="font-weight: bold;"> </span>displays,
        select the <span style="font-weight: bold;">Members</span>
        tab. See below.</span></p></li>
      </ol>
      <p style="margin-left: 48px;"><span style="font-weight: normal;"><img
       src="../Remove_NewDB.jpg" alt="" style="border: none;" width="963"
       height="642" border="0" /></span></p>
      <ol start="4" type="1">
       <li class="NumberedList"><p><span style="font-weight: normal;">Select
        the LAN user name on the screen and click <img src="../ButtonRemove.jpg"
                    alt="" style="border: none;"
                    width="75"
                    height="24"
                    border="0" />.
        </span></p></li>
      </ol>
      <p style="text-indent: 60px;"><span style="font-weight: normal;"><span
       style="font-weight: bold;">&#160;Result:</span> The user is removed
       from the PI access Active Directory user database.</span></p>
      <h2><span style="font-weight: normal;">Removing a user's name from
       Outlook<a name="Removing_User_Outlook_Group"></a> </span></h2>
      <p><span style="font-weight: normal;"><span class="BoldName" style="font-weight: normal;">This
       procedure involves removing the newly deleted user from the </span><span
       class="BoldName">T&amp;D PI Users</span><span class="BoldName"
                   style="font-weight: normal;">
       group in the Outlook Address Book.</span></span></p>
      <ol start="1" type="1">
       <li class="NumberedList"><p><span><span class="BoldName" style="font-weight: normal;">Open
        the address book in Outlook.</span></span></p></li>
       <li class="NumberedList"><p><span style="font-weight: normal;">Locate
        and delete the user’s name from the <span class="BoldName">T&amp;D
        PI Users group.</span></span></p></li>
       <li class="NumberedList"><p><span style="font-weight: normal;">Complete
        the Mantis ticket.</span></p></li>
       <li class="NumberedList"><p><span style="font-weight: normal;">If
        the user is on the Terminated Employees list, enter the employee’s
        user id in the PI Access column and highlight the entire row
        with an orange background color.</span></p></li>
      </ol>
      <p>&#160;</p>
      <?rh-placeholder type="footer" ?>
    </ol>
    </ul>
    <?rh-placeholder type="footer" ?>
    <?rh-script_start ?><script type="text/javascript" language="JavaScript1.2">//<![CDATA[
    if( typeof( TextPopupInit ) != 'function' ) TextPopupInit = new Function();
    TextPopupInit('a5', 'POPUP134020538');
    TextPopupInit('a2', 'POPUP133400192');
    TextPopupInit('a4', 'POPUP133037650');
    //]]></script><?rh-script_end ?>
    </body>
    </html>
    I am exhausted from deleting specific HTML code to make the content work. Plus there seems to be an issue with the margins moving around. Can someone help me with this HTLM code nightmare? Other than deleting it all and inputting the text again? This is the only topic in my project in which this has occurred.

    Hi Gloria,
              Its not possible to talk about a solution until you know the issue which caused it. the question is the HTML cannot get reorganize in RoboHelp if it is not edited exclusively - by this I mean if you bring in all the content through RoboHelp UI then RoboHelp will not change HTML by itself, until you manually change the html code.
    you should try to find out the cause of the seizure (by which I think you mean hang), It could be that you are using any version control and it failed to checkout/checkin one or more project files, It might be that .cpd file got corrupted in that case you can try deleting the .cpd file after closing the project and it will get recreated by RoboHelp on next Open project, or it is possible that some of your shared resources might be missing/moved because of which RoboHelp hangs then in such case you should replace/remove these resources.
    You should not be working on the project over network (i.e. the Project should be on the local drive).
    Are you using CBTs and UDVs or your topics are too large (and thus processing of these topics seizes RoboHelp)
    by any means deleting random HTML code of any topic might actually make the HTML invalid and cause more crashes or hangs.
    I have listed down almost all the reason..
    one way is to remove topics and find out the culprit topics which causes the hang and if you find one you can share it with me at [email protected] and I might find the cause of RH hang by inspecting that
    Hope this helps
    Ashish

  • Mac Mail 3 html formatting issues

    I have some people I've been working with who recently upgraded to Mac Mail 3 and since a quarantine report they receive about email that was filtered no longer displays correctly. It displays correctly for anyone using anything other than Mac Mail 3 but for them, the first line of the report looks fine but everything after that looks way oversized. The report comes in an html format. Does anyone know of any issues with Mac Mail 3 displaying html formatted emails correctly and if there are any fixes for it?
    Thanks

    Hi 2point5,
    THX for help, but that didn't help me. Maybe I didn't describe my Point exactly.
    I receive a email, which have two alternative contents. One is HTML-content and the other is the TXT-content.
    When I receive the email with 10.4.11, mail.app offer me the second alternative view (View->Message->Plain Text Alternative (AltAppleP) ) So I can see the TXT version of the mail.
    In mail.app 3.5 (Leo) the point is grayed out, like as there is no txt version of the mail. (Same mail…)
    Mr Light

  • Safari 8 downloads a blank.html file issue

    Hi all...
       I am new to web developing in jsp. I am facing a issue that safari 8 downloads automatically a blank.html file. while safari 7 does not has this isssue.
    what may be the reason for this ?
    should i configure safari settings or coding problem ?
    What to do to fix this issue..
    thanx in advance

    While you can try switching Off  Safari - Preferences - Extensions; and clearing data for that sitein Safari - Preferences - Privacy... it's often a problem with the site coding or server, and can't be fixed at your end.
    Of course, if this happens everywhere - still try without extensions, and also test in a new or Guest user account.

  • HTML insert issue

    Hi,
    I have a small issue on inserting HTML in to my page.
    This the code:
    <form name="jump1">
    <select name="myjumpbox"
    OnChange="location.href=jump1.myjumpbox.options[selectedIndex].value">
         <option selected>Please Select...
         <option value="http://www.CNN.com/">CNN.com
         <option value="http://www.Google.com/">Google.com
         <option value="http://www.MSN.com/">MSN.com
    </select>
    </form>
    So it works fine if I create a new page and insert it. No problem at all.
    But when I insert it to my Project page where I have multiple Widget...., then it does not work. It shows the drop sown and you can select it but it does not take you to the selected URL as expected.
    I tried it multiple times and just copy/paste the same code and it works fine on an empty page but not in my crowded page.
    On my crowded page, I don't have any pther HTML inserted. But I have Navigation widget, slide show widget.
    Could you let me know why it doesn't work in the crowded page?

    You may try to change the sequence of the layers...

  • HTML Email issues

    ok, I've helped several people resolve issues after upgrading their OS to get HTML emails on their BB, but for the life of me and short of wiping the phone and reloading the OS, mine mysteriously quit working last week when I was out of town.
    I've rebooted, I can maintain 11-12 meg free most of the time, resent the service books (several times) verified that each e-mail address had html enabled.
    any older e-mails that I had prior to it not working still show up in html, but any newer ones do not show up in html anymore.   I've recently deleted all emails and waited for new to come in but still the same .... no html.
    any suggestions or anything that I have missed before I wipe it and start over?
    Thanks!
    Solved!
    Go to Solution.

    Along with resending the service books, have you tried deleting and readding the email accounts to see if that makes a difference?
    If you look under Messages | Options | Email Settings, is the HTML setting for EACH email account set to Yes?
    If someone has been helpful please consider giving them kudos by clicking the star to the left of their post.
    Remember to resolve your thread by clicking Accepted Solution.

  • HTML rendering issue on scroll in WebView mac os x

    I have an button in right down corner in Webview. Button moves down or up as I scroll which should not be happen, as Same HTML we checked in Safari where it works fine and buttons position does not changed on scroll.
    how can i fix such kind of issue and eager to know Why behaviour differs in safari and WebView for same HTML file ??
    Looking for your valuable suggestion.
    Thanks,

    I have a client who recently experienced what appeared to be a permissions issue when, after editing some PDF/A files that we provided to her using Adobe Acrobat XI Pro 11.0.07 (on a Mac workstation running OS X 10.7.5), she tried saving them to a server (running Mac OS X 10.8.1) where she had stored our PDF/A files, attempting to overwrite the original PDF/A files.  She was able to successfully save the edited PDF files to her Desktop, but when she tried dragging/dropping the edited PDF files from her Desktop to the server, attempting to overwrite the original PDF/A files, again she was presented with a permissions error.  I read another thread here saying that there could potentially be some issue with Apple/Mac Mail holding on to files that were sent as attachments, but she validated none of the PDF/A or edited PDF files were e-mailed, so I wanted to survey the community to find out what you all think may have happened.  The original PDF/A files that we provided to her were created on a system running Windows Server 2003 and Windows XP.  For the record, I'm a bit of a novice when it comes to understanding all of the intricacies of PDF/A files AND Macintosh operating systems/applications.

  • Captivate 6 HTML 5 issue with scalable HTML5

    Hi,
    I am using Captivate 6, I have a very small project of only about 10 slides but when I publish this to 'scalable HTML content' all the shapes dissapear, and certain slides don't work at all.
    However, when I take off 'scalable HTML5 content' it works fine. My issue is, because this will be used on different tablets of all sizes its hard to chose the 'apple ipad' size of project when some people have android tablets because then it does not fit on the screen!!
    Is there anything I can do to make sure it does work for all tablet sizes as the 'scalable' content is not working at all!!!
    Thanks!

    Hi Hannah,
    Great to hear that it is working! I have seen these bizzare issues with Captivate and that was the only reason I suggested a copy paste at first. The only thing could be the corruption of the project.
    I am glad that its resolved.
    Thanks!
    Shekhar

Maybe you are looking for

  • How to use the same image map over and over

    Sorry, I posted this a couple of years ago and got a good answer by Murray. I'm so rusty with it, I can understand how it works anymore. Question: I have a large jpeg image map for a hundred pages. The jpegs are all the same except I changed the city

  • Target XML Files with optional elements

    Hi All, I am using ODI 10.1.3.4. My task is to create an XML file of the following format: <parent count="2"> <child> <name>Fred</name> <age>15</age> <email>[email protected]</email> </child> <child> <name>Bob</name> <age>5</age> *<email />* </child>

  • Question about SDK dependencies for PHP

    Dear Sirs, I'm having a problem when I was creating the connection with my azure storage account. so I have the folloowing questions: Is the folder structure of Azure SDK and its dependencies are correct? In the case the folder structure is not corre

  • IMac fan keeps running despite resetting the SMC

    My iMac fan keeps running loudly even when the computer isn't doing any thing, and I just started it up. I have tried resetting the SMC and that didn't help. I also recently had to insert a new hard drive instead of the old one that failed. I am thin

  • Time capsule cannot install at all

    Hi i just bought the mac book air with the h all in one printer, time capsule, and cd drive. i am currently haveing trouble getting up my time capsule with my router,wireless printer to the laptop wireless. i get so close to set it then it kicks it o