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.
utf8 support ?
  • swf is missing utf8 support :

    for example :

    in function i pass :

    'buttonText'        : 'הוסף קובץ',


    in arg list , and button label becomes : 05D405D505E.......

    also in file name , if file name is not engilish its saves it like : ׳“׳£ ׳‘׳™׳×.jpg

    i think its the first thing to do - to support utf-8 strings

    btw , great app :)
  • I am facing the same problem. Analyzing the source code showed that the unescape call on the button.text in the setButtonText() function causes the problem. For me it seems that the unescape function doesn't support japanese or UTF-8 in general. The following code change has worked for me:

    //browseBtn.label = unescape(param.buttonText);
    browseBtn.label = param.buttonText;

    But I am not quite sure, if this modification has any side effects. Maybe the developers can provide this change, so that others can use it, too.

    Thanks
    Ralf