AutoCAD Services & Support

i-drop content does not work in 64-bit Internet Explorer

Published date: 2008-May-28
ID: TS1071268

Applies to:
AutoCAD® 2008
AutoCAD® 2007
AutoCAD® 2006
AutoCAD® 2005

Issue

When you were using the 64-bit version of Internet Explorer to browse web pages that contain i-drop content, the i-drop indicator was not visible.

Solution

There are two reasons why i-drop content might not work in a 64-bit Internet Explorer browser:

  • The i-drop content provider has not updated their website to dynamically load the 32-bit or 64-bit version of the i-drop ActiveX control. Until the content provider has updated their website, you will have to continue using the 32-bit version of Internet Explorer to download their design content. 

Note:

  • In the 64-bit version of Windows XP, the default browser is 32-bit Internet Explorer.
  • In the 64-bit version of Vista, the default browser is 64-bit Internet Explorer. You can use the Start menu shortcuts to launch the 32-bit version of Internet Explorer.

Attention i-drop Content Providers: You need to update your web pages to dynamically load the 32-bit or 64-bit version of the i-drop ActiveX control. A JavaScript code sample that can be used to dynamically load the correct version of the control depending on the browser version is shown below. This sample is used on www.autodesk.com/idrop.

<code_begin>

<head>
<script type="text/javascript">
function showchair()

  activex = document.createElement("object");
  document.body.appendChild(activex);

  //Checking appVersion to load appropriate ActiveX control (32-bit or 64-bit)
  var appVersionName = navigator.appVersion;
  var index = appVersionName.indexOf ("x64");
  if(index != -1 )
  {
      //clsid for 64-bit control
      activex.classid="clsid:32290CD1-D585-4803-AF20-F16E20FF377A";
  }
  else
  {
      //clsid for 32 bit control
      activex.classid="clsid:21E0CB95-1198-4945-A3D2-4BF804295F78";
  }

  activex.package="http://www.autodesk.com/us/idrop/chair.xml";
  activex.background="http://www.autodesk.com/us/idrop/background.jpg";
  activex.width="120";
  activex.height= "119";
  activex.proxyrect = "0, 0, 120, 119";
  activex.griprect = "0, 0, 120, 119";
  activex.validate="1";

}
</script>
</head>
<body onload="showchair()">
</body>
</html>

<code_end>


Give us your feedback on this document:
 Resolved my issue.
 Helpful but incomplete.
 Difficult to find.
 Difficult to understand.
 Did not resolve my issue.
 Document contains broken links and references.
 No comment.
 

AUTODESK DOES NOT GUARANTEE THAT YOU WILL BE ABLE TO SUCCESSFULLY DOWNLOAD OR IMPLEMENT ANY SERVICE PACK OR WORKAROUND, OR ANY OF THE TIPS, TRICKS, EXAMPLES OR SUGGESTIONS OUTLINED IN ANY AUTODESK PRODUCT SUPPORT TECHNICAL DOCUMENTS. TECHNICAL DOCUMENTS, SERVICE PACKS AND WORKAROUNDS ARE SUBJECT TO CHANGE WITHOUT NOTICE TO YOU. AUTODESK PROVIDES TECHNICAL DOCUMENTS, SERVICE PACKS AND WORKAROUNDS "AS IS" WITHOUT WARRANTY OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL AUTODESK OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF DATA, OR LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, THAT MAY OCCUR AS A RESULT OF IMPLEMENTING ANY SERVICE PACK OR WORKAROUND, OR ANY SUGGESTION OUTLINED IN ANY AUTODESK PRODUCT SUPPORT TECHNICAL DOCUMENT, EVEN IF AUTODESK OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.