This forum is a community forum meant for users of the plugin to collaborate and help solve issues with implementation, etc. Unfortunately, as the creator of the plugin, I do not have much time to attend to every request here as this is only a side project and I must work a full-time job to provide for my family. This is how I keep the Flash version free and the HTML5 version low cost.
UploadiFive 1.1.1 has been released which includes a small fix for added support on touch devices including iOS 6 devices.
Possible bug, 'disable' doesn't work just after created
  • Hi. Thanks for this great piece of code, and please forgive my bad English.

    I need the component in an initial disabled state until some precondition is reached. (Maybe it could be added as some 'initialState' setting option)

    I tried to call '$('#file_upload').uploadify('disable', true);' just after create it, but it seems to arrive too early. The 'disabled' class is added to the visible button, but the flash component is still enabled. If you click on the button it works.

    If I call '$('#file_upload').uploadify('disable', true);' manually after that, it works fine.

    Some times, I got this message in firebug: 'uncaught exception: Call to SetButtonDisabled failed'

    Please tell me if I could use some workaround for this.

    Thanks in advance.
  • Correction, I always get 'uncaught exception: Call to SetButtonDisabled failed'.

    Just tried to use 'onInit' event, but same result.
  • Found a workaround. The 'onSWFReady' is the right event, just see it.

    I found another issue, when disabled, the button still show the hand cursor, even if you specify 'cursor: default;' in css.
  • Thank your, onSWFReady is the solution