CakePHP 2.5自动完成

I've been following tutorials to get a basic autocomplete form working but for some reason, no matter what i type it comes back empty.

Here is my code This is my StarsController.php

<?php

class StarsController extends AppController
{
    var $name = "Stars";

    function Auto()
    {
        $names = '';
        $this->set('names', $names);
    }

    function find()
    {
        $this->Star->recursive = -1;
        if($this->request->is('ajax'))
        {
            $this->autoRender = false;
            $this->layout = 'ajax';
            $results = $this->Star->find('all');
            $names = Set::extract('../stars/Auto', $results);
            echo json_encode($names);
        }
    }
}
?>

and here is my auto.ctp view file

<div class="search form">
<fieldset>
<legend></legend>
<?
        $this->Paginator->options(array('url' => $this->passedArgs));
        $this->Form->create('Star', array('type'=>'post','action' => 'find'));

        echo $this->Form->input('star', array(
            'empty' => 'Enter name',
            'label' => 'Name',
            'option'=> $names,
            'id' => 'star',
            'autocomplete' => 'on'));
        echo $this->Form->end(__('Search'));

        ?>

    </fieldset>
</div>
<script>
$( "#star" ).autocomplete({
  source: "/star/find",
  minLength: 2,
  delay: 2
});
</script>

And my database setup

CREATE TABLE `stars` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `created` datetime NOT NULL,
  `modified` datetime NOT NULL,
  `name` varchar(100) COLLATE latin1_general_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1405382401 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=1405382401 ;

Can anyone see why the data is not being received by the controller?