How do I create a upload field that uploads the file as soon as it is picked? With a nice status bar on the upload. I am using paperclip for the image uploads with Amazon S3 server. I have see this plugin https://github.com/nathancolgate/s3-swf-upload-plugin but I am not sure how I should use it.
My form:
<%= simple_form_for @photographer, :url => savenew_admin_photographers_path, :html => { :multipart => true, :method => :post} do |f| %>
<%= f.label "Upload image" %><br />
<%= f.input :image, :label => '', :required => true %><br />
<%= f.label "Upload flv" %><br />
<%= f.input :flv, :label => '', :required => true %><br />
<%= f.label "Upload Quicktime" %><br />
<%= f.input :quicktime, :label => '', :required => true %><br />
<%= f.button :submit, :value => 'Create movie' %>