Index: README.txt
===================================================================
--- README.txt	(revision 1414)
+++ README.txt	(working copy)
@@ -3,7 +3,8 @@
   ------------------------------------------------------------------------------------
   In order for this module to work properly with IE, you will need to download the 
   ExplorerCanvas library, which can be found here - http://excanvas.sourceforge.net/.
-  Place the downloaded directory 'excanvas_r3' inside the 'beautytips/other_libs' directory.
+  Place the downloaded directory 'excanvas_r3' inside the 'beautytips/other_libs' directory,
+  or your libraries directory, if you're using Libraries API (http://drupal.org/project/libraries).
   Also, make sure that this file is accessable (readable).  A standard permission setting 
   of 755 should work for the excanvas_r3 folder (755 means permission settings - rwxr-xr-x)
   On Linux or Mac, you can do this with the command 'sudo chmod -R 755 excanvas_r3'
Index: beautytips.module
===================================================================
--- beautytips.module	(revision 1414)
+++ beautytips.module	(working copy)
@@ -104,10 +104,16 @@
   if (!$added) {
     $path = drupal_get_path('module', 'beautytips');
     
-    // Add excanvas for IE
-    $expath = $path . '/other_libs/excanvas_r3';
+   //for IE add this
+   if (function_exists('libraries_get_path'))  {
+     $expath = libraries_get_path('excanvas_r3'); 
+   }
+   else  {
+     $expath = $path . '/other_libs/excanvas_r3';
+   }
+
     if (file_exists($expath . '/excanvas.compiled.js')) {
-      //drupal_add_js($expath . '/excanvas.compiled.js');
+      drupal_add_js($expath . '/excanvas.compiled.js');
     }
     drupal_add_js($path . '/js/jquery.bt.min.js');
     drupal_add_js($path . '/js/beautytips.js');
