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.
Working HTML button instead flash!!!
  • Hi, I've spent with it much time, so there is a code for you, enjoy! ;)

    <div style=\"width:110px;height:30px;\">
    <div style=\"width:110px;height:30px;position:absolute;top:auto;z-index:1;\"><input type=\"button\" value=\"Choose files\" /></div>
    <div style=\"width:110px;height:30px;position:absolute;top:auto;z-index:100;opacity:0;filter:Alpha(Opacity=0);\"><input type=\"file\" name=\"uploadify\" id=\"uploadify\" /></div>
    </div>
    <div id=\"uploadifyQueue2\" class=\"uploadifyQueue\"></div>

    <script type=\"text/javascript\">
    $(document).ready(function() {
    $('#uploadify').uploadify({
    multi:true,
    auto:true,
    folder:'/cache',
    queueID:'uploadifyQueue2'
    });
    });
    </script>


    Another queueID is important, becose standart queue has opacity 0.

    Don't use hideButton and wmode!
  • Evandar, thank you very much! It works for me pretty nice!
    Good luck,
    Voldy
  • Not works in Safari 5. Events are mot catched by flash.
  • Evandar - this is excellent, thank you.

    Regarding Safari, I had the same problem of it not working, but I cheated a little and set the opacity to 0.01 on the 2nd inner div, and it worked.

    - Peter.