Using autocomplete within AIR sandbox

Using autocomplete within AIR sandbox

I am trying to use the autocomplete functionality from within my AIR app, code below -

  1. <html>
    <head>
            <title>JQuery Component Tester</title>
            <link type="text/css" href="http://jqueryui.com/latest/themes/base/jquery.ui.all.css" rel="stylesheet" />
      <script type="text/javascript" src="lib/air/AIRAliases.js"></script>
               <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.4.2.js"></script>
       <script type="text/javascript" src="http://jquery-ui.googlecode.com/svn/tags/1.8rc1/jquery-1.4.1.js"></script>
    <script type="text/javascript" src="http://jquery-ui.googlecode.com/svn/tags/1.8rc1/ui/jquery-ui.js"></script>
    <script type="text/javascript">
                // AIR-related functions created by the developer
             $(document).ready(function(){
    $("#input").autocomplete({disabled: false});
    $("#input").autocomplete({
    source: ["c++", "java", "php", "coldfusion", "javascript", "asp", "ruby"]
    });
    });
    </script>
    </head>

        <body>
            <input id="autocomplete" />
        </body>
    </html>
Seems like there are issues with onClick event being eaten up by AIR framework which breaks autocomplete feature...anyone else seen this?