Captivate 4 Possible to remove borders/padding around published project?

Greetings,
I am working with Captivate 4 and publishing to a SCORM 1.2 compliant LMS. I would like to publish a project without having the borders/padding surrounding the project files. Is this possible? If so, where would I look to find instructions to do this?
When published in our LMS, the LMS generates a window of a fixed sixe. This is set in the LMS itself and can be changed in the LMS. The goal being to remove browser controls and scroll bars from the user’s point of view when they launch a lesson showing only the lesson.
In previous versions of Captivate (2 and 3) I was able modify the SCORM.htm file in such a way that I could remove any padding around published project files. The SCORM.htm file used a table to center the Captivate SWF files in the users screen. I could edit this file and use absolute positioning to eliminate (the table tags) “dead space” around a project swf file.
Doing this in Captivate 4 (editing Custom.htm and Default.htm) does not seem to have the same effect. (In fact it seems to have no affect (good or bad) at all.
Has anyone had any success in doing this?
Also, has anyone used the new Captivate 5 yet? Does it have the same presentation limitations as Captivate 4?
Thank you,
TPK

TPK,
This worked perfect.  The only problem that I have is that it still leaves a small ribbon of white at the top and the bottom of the window.  Any idea how to remove that?
Here is the current HTM text
<!-- Copyright [2008] Adobe Systems Incorporated.  All rights reserved -->
<!-- saved from url=(0013)about:internet -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>workers_comp</title>
  <script src="standard.js" type="text/javascript"></script>
  <script src="SCORM_support/scorm_support.js"></script>
  <script type="text/javascript" language="JavaScript">
   // set document.domain property here, if it works for your environment/SCORM implementation
   // document.domain="";
   var g_intAPIType = 0;
   // Hook for Internet Explorer
   if ((navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) || g_intAPIType == -1)
    g_intAPIType = 0;
    document.write('<script language=\"VBScript\"\>\n');
    document.write('On Error Resume Next\n');
    document.write('Sub Captivate_FSCommand(ByVal command, ByVal args)\n');
    document.write('Call Captivate_DoFSCommand(command, args)\n');
    document.write('End Sub\n');
    document.write('</script\>\n');
    document.write('<script language=\"VBScript\"\>\n');
    document.write('On Error Resume Next\n');
    document.write('Sub Captivate_DoExternalInterface(ByVal command, ByVal parameter, ByVal value, ByVal variable)\n');
    document.write('Call Captivate_DoExternalInterface(command, parameter, value, variable)\n');
    document.write('End Sub\n');
    document.write('</script\>\n');
   } else {
    g_intAPIType = 1;
   var strURLFile = "Enhanced_Authorization_Integration.swf";   // Name of the flash file
   var intIntervalSecs = 1;    // Number of seconds to wait for SCORM API to load
   var g_intAPIOrder = 0;     // Way to search for API object (0 - starts with bottom up; 1 - starts top down)
   var strURLBase = "";
   var strURLParams = "";
   var strURLFull = document.location + "";
   var intTemp = strURLFull.indexOf("#");
   if (intTemp == -1)
    intTemp = strURLFull.indexOf("?");
   if (intTemp > 0)
    strURLParams = strURLFull.substring(intTemp + 1, strURLFull.length);
   var strTemp = location.protocol.toUpperCase();
   if (strTemp.indexOf("FILE") == -1)
     var intTemp = location.pathname.lastIndexOf("/");
   else
     var intTemp = location.pathname.lastIndexOf("\\");
   if (intTemp != -1)
     strURLBase = location.protocol + "//" + location.host + location.pathname.substring(0, intTemp + 1);
   else
     strURLBase = location.protocol + "//" + location.host + location.pathname;
   strURLParams = (strURLParams==unescape(strURLParams)?escape(strURLParams):strURLParams);
   strURLParams = (strURLParams==""?"":"?") + strURLParams;
   function Finish()
    if ((isAPI()) && (g_bFinishDone == false))
     (g_zAPIVersion=="0.2"?g_objAPI.LMSCommit(""):g_objAPI.Commit(""));
     g_bFinishDone = (g_zAPIVersion=="0.2"?g_objAPI.LMSFinish("") == "true":g_objAPI.Terminate("") == "true");
    return (g_bFinishDone + "" ) // Force type to string
   if(g_intAPIType==0)
    // Detect Internet Explorer
    var g_bIsInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
    // Handle fscommand messages from a Flash movie
    function Captivate_DoFSCommand(command, args)
     var CaptivateObj = g_bIsInternetExplorer ? Captivate : document.Captivate;
     var strFSArgs = new String(args);
     var strFSCmd = new String(command);
     var strErr = "true";
     var strFSArg1, strFSArg2, strFSArg3
     var intFSDelimiter = strFSArgs.indexOf("|");
     if (intFSDelimiter > -1)
      strFSArg1 = strFSArgs.substr(0, intFSDelimiter);  // Name of data element to get from API
      var strFSTemp = strFSArgs.substr(intFSDelimiter + 1);
      intFSDelimiter = strFSTemp.indexOf("|");
      if(intFSDelimiter > -1)
       strFSArg2 = strFSTemp.substr(0, intFSDelimiter); // Value
       strFSArg3 = strFSTemp.substr(intFSDelimiter + 1); // Variable
      } else {
       strFSArg2 = strFSTemp;
     } else {
      strFSArg1 = strFSArgs;
     // do nothing, if SCORM API is not available
     if (!isAPI()) return;
     if ( strFSCmd == "LMSInitialize" || strFSCmd=="Initialize")
      CaptivateObj.SetVariable(strFSArg3, eval('g_objAPI.' + strFSCmd + '(\"\");'));
     } else if ( strFSCmd == "LMSSetValue" || strFSCmd=="SetValue") {
      strErr = eval('g_objAPI.' + strFSCmd + '(\"' + strFSArg1 + '\",\"' + strFSArg2 + '\");');
      CaptivateObj.SetVariable(strFSArg3, strErr);
     } else if ( strFSCmd == "LMSFinish" || strFSCmd=="Terminate") {
      g_bFinishDone = eval('g_objAPI.' + strFSCmd + '(\"\");')
      strErr = g_bFinishDone;
      CaptivateObj.SetVariable(strFSArg3, g_bFinishDone);
     } else if ( strFSCmd == "LMSCommit" || strFSCmd=="Commit") {
      strErr = eval('g_objAPI.' + strFSCmd + '(\"\");');
      CaptivateObj.SetVariable(strFSArg3, strErr);
     } else if ((strFSArg2) && (strFSArg2.length > 0)) {
      if(strFSCmd=="LMSGetLastError")
       strErr = eval('g_objAPI.' + strFSCmd + '();')
       CaptivateObj.SetVariable(strFSArg3, strErr);
      } else {
       strErr = eval('g_objAPI.' + strFSCmd + '(\"' + strFSArg1 + '\");')
       CaptivateObj.SetVariable(strFSArg3, strErr);
     } else if (strFSCmd.substring(0,3) == "LMSGet") {
      strErr = "-2: No Flash variable specified"
     return strErr;
    function Captivate_DoExternalInterface(command, parameter, value, variable)
     var CaptivateObj = g_bIsInternetExplorer ? Captivate : document.Captivate;
     //alert("command  " + command + " ;parameter " +parameter+ " ;value " + value + " ;variable " + variable );
     //var strFSArgs = new String(args);
     var strFSCmd = new String(command);
     var strErr = "true";
     var strFSArg1, strFSArg2, strFSArg3;
     strFSArg1 = parameter;
     strFSArg2 = value;
     strFSArg3 = variable;
     /*var intFSDelimiter = strFSArgs.indexOf("|");
     if (intFSDelimiter > -1)
      strFSArg1 = strFSArgs.substr(0, intFSDelimiter);  // Name of data element to get from API
      var strFSTemp = strFSArgs.substr(intFSDelimiter + 1);
      intFSDelimiter = strFSTemp.indexOf("|");
      if(intFSDelimiter > -1)
       strFSArg2 = strFSTemp.substr(0, intFSDelimiter); // Value
       strFSArg3 = strFSTemp.substr(intFSDelimiter + 1); // Variable
      } else {
       strFSArg2 = strFSTemp;
     } else {
      strFSArg1 = strFSArgs;
     // do nothing, if SCORM API is not available
     if (!isAPI()) return;
     if ( strFSCmd == "LMSInitialize" || strFSCmd=="Initialize")
      //CaptivateObj.SetVariable(strFSArg3, eval('g_objAPI.' + strFSCmd + '(\"\");'));
      CaptivateObj.SetScormVariable(strFSArg3,eval('g_objAPI.' + strFSCmd + '(\"\");'));
     } else if ( strFSCmd == "LMSSetValue" || strFSCmd=="SetValue") {
      strErr = eval('g_objAPI.' + strFSCmd + '(\"' + strFSArg1 + '\",\"' + strFSArg2 + '\");');
      //CaptivateObj.SetVariable(strFSArg3, strErr);
      CaptivateObj.SetScormVariable(strFSArg3, strErr);
     } else if ( strFSCmd == "LMSFinish" || strFSCmd=="Terminate") {
      g_bFinishDone = eval('g_objAPI.' + strFSCmd + '(\"\");')
      strErr = g_bFinishDone;
      //CaptivateObj.SetVariable(strFSArg3, g_bFinishDone);
      CaptivateObj.SetScormVariable(strFSArg3, g_bFinishDone);
     } else if ( strFSCmd == "LMSCommit" || strFSCmd=="Commit") {
      strErr = eval('g_objAPI.' + strFSCmd + '(\"\");');
      //CaptivateObj.SetVariable(strFSArg3, strErr);
      CaptivateObj.SetScormVariable(strFSArg3, strErr);
     } else if ((strFSArg2) && (strFSArg2.length > 0)) {
      if(strFSCmd=="LMSGetLastError")
       strErr = eval('g_objAPI.' + strFSCmd + '();')
       //CaptivateObj.SetVariable(strFSArg3, strErr);
       CaptivateObj.SetScormVariable(strFSArg3, strErr);
      } else {
       strErr = eval('g_objAPI.' + strFSCmd + '(\"' + strFSArg1 + '\");')
       //CaptivateObj.SetVariable(strFSArg3, strErr);
       CaptivateObj.SetScormVariable(strFSArg3, strErr);
     } else if (strFSCmd.substring(0,3) == "LMSGet") {
      strErr = "-2: No Flash variable specified"
     return strErr;
  </script>
</head>
<body  bgcolor="#F1F4F5" onunload="Finish();">
     <!-- <center> -->
  <div id="CaptivateContent" style="position:absolute; top: 0px; left: 0px;">
  </div>
  <layer id="NS_dynamic" name="NS_dynamic">
  <script type="text/javascript">
    var tempso = new SWFObject("SCORM_support/scorm_support.swf", "scorm_support", "2", "2", "8", "#CCCCCC");
    tempso .addParam("quality", "high");
    tempso .addParam("id", "scorm_support");
    tempso .addParam("bgcolor","#FFFFFF");
    tempso .addParam("menu", "false");
    tempso .addParam("movie", "SCORM_support/scorm_support.swf");
    tempso .setAttribute("redirectUrl", "http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash");
  </script>
  <noscript>
   <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"
    width="2" height="2" id="scorm_support" align="">
    <param name=movie value="SCORM_support/scorm_support.swf"> <param name=quality value=high> <param name=menu value=false> <param name=bgcolor value=#FFFFFF>
    <embed src="SCORM_support/scorm_support.swf" quality=high bgcolor=#FFFFFF  width="2" height="2" name="scorm_support" align=""
     type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer">
    </embed>
   </object>
  </noscript>
  </layer>
  <script type="text/javascript" language="JavaScript">
   var timeCurrent_int = new Date().getTime();
   var timeLimit_int = new Date().getTime() + (intIntervalSecs * 1000);
   // This simply loops for a set period of time, waiting for the API to
   // load and/or be found.  A better solution would be to use setInterval
   // and on the timeout, redirect or load the resulting Captivate file.
   while((g_objAPI == null) && timeCurrent_int < timeLimit_int)
    g_objAPI = getAPI(g_intAPIOrder);
    timeCurrent_int = new Date().getTime();
   if(g_objAPI != null)
    strURLParams += (strURLParams==""?"?":"&") + "SCORM_API=" + g_zAPIVersion + "&SCORM_TYPE=" + g_intAPIType;
   //document.write('<center>');
   //document.write('<table border="0" cellpadding="7" cellspacing="7"> \n');
   //document.write('  <tr>  \n');
   //document.write('    <td align="middle">');
   document.write('<div id="flash" style="position:absolute; top:0px; left:0px;"> \n');
   var so = new SWFObject(strURLFile + strURLParams, "Captivate", "992", "625", "9", "#CCCCCC");
    so.addParam("quality", "high");
    so.addParam("name", "Captivate");
    so.addParam("id", "Captivate");
    so.addParam("wmode", "window");
    so.addParam("bgcolor","#FFFFFF");
    so.addParam("menu", "false");
    so.addVariable("variable1", "value1");
    so.setAttribute("redirectUrl", "http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=S hockwaveFlash");
    so.write("CaptivateContent");
   document.write(' </div> \n');
   //document.write('</td> \n');
   //document.write('  </tr> \n');
   //document.write('</table> \n');
   //document.write('</center>');
  </script>
  </center>
</body>
</html>

Similar Messages

  • White borders around published project

    I'd like my published file to fill up my entire screen, so that it looks as though I'm interacting with the actual application. I created a project sized 1024x768, which is the same setting as my computer display.. I selected Project>Skin and deselected the Show playback control checkbox to eliminate the playback navigation bar..I selected the Full Screen Output option in the Publish window. When I publish, the display has a white border around it. Suggestions?

    Hi,
    Cud you try this:
    1.Go to Project->Skin Editor.
    2.Select the second tab
    3.Uncheck the show borders.
    Publish your project and check if you are still getting it.Also can you increase the size of the project as little bigger (+5)than the resolution and try as well.
    Thanks,
    Sikandar

  • Zathura has padding around pages

    In any mode I see padding around pages whereby I want the full width and height of the zathura window used. I've already had issues with application windows having a transparent margin and using
    .window-frame { box-shadow: none; margin: 0; }
    in .config/gtk-3.0/gtk.css fixed it. How do I remove the padding?
    FWIW I'm using the Numix theme and don't use any desktop environment. The window manager is xmonad.
    Update: Upgrading to the AUR git versions of zathura and the plugins removed the top and bottom paddings, but not those on the sides.
    Last edited by newbcake (2015-04-17 16:05:33)

    see https://bbs.archlinux.org/viewtopic.php?pid=1518406 and  https://bbs.archlinux.org/viewtopic.php?id=196242

  • Why is Preview adding white padding around my images?

    I have noticed that when I insert a JPG image into a PDF file using Preview, the application inserts white padding around the image. Meanwhile, when I insert a PDF image, no white padding is added. Why is the same image treated differently based on its file format?

    I'm guessing that when you add a raw graphic file to a set of PDFs pages, OS X "puts the image on a page", possibly either the same size as the preceding page, or the print default size.
    Every PDF page contains data specifying its page size, so that data is already there when you drop in a PDF file. Most image files don't actually specify their intended size: they are merely displayed at a useful resolution.
    If you want the images to be a different size from your other pages in your PDFs, then you will be better off converting them to PDFs before adding to another PDF. If this is part of a procedure that you do repeatedly, then you should look at the possibilities of automation in OS X.

  • Is it possible to remove the submit form button that's automatically created when you distribute a form?

    I have created a form for my boss and distributed it. She doesn't want the submit form button to appear as people don't need to submit the form to anyone, just fill it in and keep a copy. I can't figure out how to remove this button. It's not one I've created, it's the one that it automatically generates when you don't have a submit button in your form. Is it possible to remove this button or do we just have to live with it? I am using Adobe Acrobat X Pro.
    Thanks

    You can have more control on the email subject/ to and CC Email address, if you use a regular button and place the code in the click event.
    Refer to the attached sample below.
    https://acrobat.com/#d=HouRLov3lOntSbqAfsr5Hg
    Thanks
    Srini

  • Is it possible to remove my hard drive from the Macbook and install it in a new Macbook Pro?

    I currently have a 2009 Macbook and am wanting to upgrade to a new Macbook Pro.  I have upgraded my hard drive in the macbook to a 500gb and have a duel boot with Windows 7 installed with Boot Camp along with other software that I do not want to lose.  Is it possible to remove my hard drive from the Macbook and install it in a new Macbook Pro?

    A much better solution is to hook your two Mac together and the first time you start the new Mac and it asks if you wish to recover data from another Mac, answer yes. This will invoke Setup Assitant which will do the job for you but intelligently.
    I know because I just used Setup Assitant. It worked like  a charm.
    Allan

  • Is it possible to remove yellow text background in the entire document?

    I have the same problem as the one that is mentioned here:http://forums.adobe.com/message/1155089 In my case the yellow background is already in the pdf-file which was created with a virtual pdf printer and then manipulated with another pdf-editor.  I noticed accidentally that it is possible to remove the yellow background in Acrobat Pro as if I'd edit an object. Getting rid of it on each page by hand would be a daunting task. Is it possible to do this somehow with the entire document? All help would be much appreciated.
    cheers
    Btw: The yellowish background does not appear in other pdf viewers.

    I'll try to describe the process but the exact numbers will depend on your document - as I said earlier when I ran a test of your file I got 3.4%, but you may not.
    Your file has a mixture of color spaces (CMYK/RGB/etc.) and so you must first run the Convert Colors tool from the Print Production Panel to get everything into a consistent space, or Preflight will choke. Run the default profile to convert to the SWOP v2 profile.
    Open the Output Preview tool from the Print production Panel and hover over one of the yellow areas, write down the percentage of yellow. Hopefully nothing else in the document will have the same percentage.
    Now open Preflight from the Print Production Panel, switch to the Single Checks tab.
    Open the Options menu, choose "Create new Preflight Check".
    Name it "yellow boxes" and apply it to "Page contents" and "Current file".
    Select the Colors group and pick "object uses Yellow with a percentage of..." - press ADD.
    Configure it with "Equal to" and your percentage (no % sign)
    Click OK, then switch to the Single Fixups tab.
    Options menu > Create new Preflight Fixup
    Name it "move yellow  to layer"
    Choose the Layers category, "Put objects on layer" and press ADD
    In the "Objects identified by a check" dropdown, select your "yellow boxes" check.
    In the Layer name field, type "yellow boxes"
    Click OK, then click the Fix button to run it.
    You'll get a message to save/close and reopen the file.
    When you do, (hopefully) all your yellow boxes will now be in their own layer.
    Open the layers navigator on the left side of Acrobat's window and turn off the eyeball for that layer.
    Print

  • When using Find My iPhone, is it possible to hear live sound around the device?

    When using Find My iPhone app on the iPad2, is it possible to hear live sound around a device wham the "Play Sound" button is tapped?

    Yes.
    What do you hear?

  • Is it possible to remove "Revision" from standard check in

    Hi,
    Is it possible to remove or disable the revision text box in the standard check in screen. This number can be changed by the user each time the document is checked in. It can be changed to go backwards and use duplicated is the user changes it without giving an error i.e. 1 - 3 - 2 - 3. The documentation says "The revision increments automatically with each check-in of the content item, so generally, you should not change this value"
    Is there a way to remove/disable this from the standard check-in to prevent people changing it.
    Thanks

    Kizume and Rhm Zanz it should be still there as that is what manages that specific feature.
    In the top menu bar, where is says:      Finder   File   Edit   View   Go   Windows   Help
    Click on the Go, and in the same time click the option key on your keyboard near the space bar.  In that the drop down menu list the word Library will appear.
    Click on Library and Finder will open, look for the Preferences folder. Within that folder which should be in alphabetical order look for the file named, com.apple.sharekit.recents.plist
    Drag that file out of finder and unto your desktop. Close out the Finder window and close out all other your applications, including Safari, and reboot your Mac and once it turns on, reopen Safari and look at your share sheet. Any recents should be gone. That file named com.apple.sharekit.recents.plist will recreate itself on a clean slate in that folder. Should you encounter that you shared something again to a contact with Safari's share sheet, be sure to follow the same directions.
    Cheers!

  • In the numbers app, using the "date and time" function, is it possible to remove the time? I need to put together a list of dates, but I don't need or want times.

    In the numbers app, using the "date and time" function, is it possible to remove the time? I need to put together a list of dates, but I don't need or want times.

    When formatting your column to date/time, pick Date & time, and then pick the letter i in the circle to the right. Then scroll down and pick "No time"
    Jason

  • Is it possible to remove or edit gps data from photos?

    Just listened to a Mac Roundtable podcast and they were talking about removing or editing gps data from photos taken with an iPhone but they never explained how to do it.
    Is it possible to remove or edit out latitude and longitude info from photo files?

    Thanks for this, though after looking at it I'm not too inclined to use an app that requires getting into the terminal. Way too technical for me. But thanks.

  • Is it possible to remove leading 0's?

    If I have a column called id_inst in tableA of type String
    and having a value of 0000203,is it possible to remove
    the leading zeroes from it?
    Select LTRIM(id_inst, ??
    Is this possible?

    There is of course no need to strip leading zeroes before storing a numeric value into a number datatype since Oracle will not store leading zeroes anyway.
    How a numeric value retrieved from the database is display is completely under the control of the requester via the to_char function:
    UT1 > select fld2, to_char(fld2,'009') as c2, to_char(fld2,'999.99') as c3
    2 from marktest;
    FLD2 C2 C3
    1 001 1.00
    2 002 2.00
    3 003 3.00
    5 005 5.00
    6 006 6.00
    HTH -- Mark D Powell --

  • Is it possible to remove properties from a dynamic class?

    I have a dynamic ActionScript Class that is used to send
    parameters to a WebService. Some of these parameters are always
    present, so they are public properties of the Class:
    package
    [Bindable]
    public dynamic class WebServiceCriteria
    public var property1:int;
    public var property2:String;
    public var property3:String;
    public var property4:String;
    But, I am also adding properties at runtime that can change
    over time:
    criteria.runTimeProperty = "1";
    I'm not very familiar with using dynamic classes, so I was
    wondering if it is possible to "remove" the new property. Let's say
    the next time I call the WebService I don't want that property sent
    - not even as a null. How can I remove it from the Class instance
    without creating a new instance each time?

    Hi,
    Please try delete criteria.runTimeProperty. Please find more
    details on the delete operator at the URL below.
    http://livedocs.adobe.com/flex/3/langref/operators.html#delete
    Hope this helps.

  • Is is possible to remove space in front of bulletButton?

    Hi all,
    Is it possible to remove the space in front of a bulletButton (RichTextEditor)?
    By that I mean the space in front of
    <- this.
    So that the bullet is totally aligned left.
    Thnx,

    Hi Malla,
    To my knowledge, this is not possible. You can hide/show the entire toolbar. But not a specific item for security reasons.
    Check out the following link
    http://www.acrobatusers.com/forums/aucbb/viewtopic.php?id=7845
    Regards,
    Mathan

  • IPad displays 40px padding around content in task flow popup window

    I am using JDeveloper 11.1.1.7.0.
    When I try to run taskflow as dialog (inline popup window) IPad renders 40px padding around the window. So the content at right side is cut-off by that 40px.
    In other devices (Desktop browsers, Android browsers, ...) it is rendering as expected.
    In IPad it generating html as follows:
    <div id="j_id36" class="xpm " style="position:absolute;width:auto;height:auto;top:0px;left:0px;bottom:0px;right:0px;overflow:auto;padding:40px;">
         <iframe id="j_id36::f" title="Content" onload="AdfDhtmlInlineFramePeer.__iframeLoadHandler(event)" frameborder="0" style="position: absolute; width: 100%; height: 100%;" _adfloaded="1" src="<context-path>?_adf.ctrl-state=xeism3nhm_46&amp;_rtrnId=1375337713633&amp;__ADFvDlg__=true">
             <"content goes here......">
         </iframe>
    </div>
    In the above html, style colored with red are the additional properties added while rendering in IPad. In other devices these properties are not generating.
    I found the below thread while searching, but it is not answered.
    https://forums.oracle.com/thread/2407520
    Is there any workaround for this ? or is it tracking as a bug ?
    Thanks,
    Gopal.

    Hi,
    Are any workarounds for this? Is there currently a available patch to fix this problem?
    if nobody dares reproducing this and filing it as a bug then a fix can take a while. I'll put it on a list of my follow ups, but this is not a high priority list. So if you can I appreciate if you can file the bug and provide a testcase. Note that 11.1.2 (11g R2) is not yet optimized for tablet PCs. So JDeveloper 11g R1 (11.1.1.6) is the build that should be used as a reference for filing the bug
    Frank

Maybe you are looking for

  • How to pass price list of a minisite dynamically in istore

    Hi All, I am trying to diplay limited UOM in drop down box based on price list. I have hard coded the price list in the jsp page "ibeCCtdLeafSctSsI.jsp" and on the basis of it getting the price and unit of measure in drop down box. What are the UOM i

  • Lumia 620 Rebooting

    Just after the Lumia Black update i find my Lumia 620 rebooting every now and then

  • Java and DDE

    I want to print a pdf file from within java. This can be done using the Acrobat Reader and DDE. Does anyone know if DDE can be used with java? if so, could you send an example? Thanks

  • Spaces and Application Switcher

    My current workflow includes heavy usage of Expose, Spaces, and iOS's Application Switcher. I've installed a number of "helpful" apps in the last couple of days, and the behavior of the application switcher has strangely (and very frustratingly) chan

  • 2 iphones but dont want to sync them the same

    Hi We have 2 iphones my wife has the new 1 and I have the old 1 The problem we have is all her stuff is getting onto my phone so I end up deleting a load of crap, can anyone tell me how we stop this as I have a new apple Id she has the old one but al