It looks like you're new here. If you want to get involved, click one of these buttons!
$(\"#uploadify\").uploadify({
'uploader' : '/uploadify.swf',
'script' : 'scripts/uploadify.php',
'cancelImg' : '/gfx/cancel.gif',
'folder' : 'uploads',
'fileExt' : '*.jpg;*.jpeg;*.gif;*.png;*.bmp',
'fileDesc' : 'Pliki graficzne',
'queueID' : 'fileQueue',
'auto' : false,
'multi' : true,
'queueSizeLimit' : '5',
onInit : function() { // THIS METHOD DOESN'T WORK AND SCRIPT NOT WORK
$(\"#uploadify\").uploadifySettings('width', '122');
$(\"#uploadify\").uploadifySettings('height', '40');
$(\"#uploadify\").uploadifySettings('buttonImg', '/gfx/inputs.gif');
},
onSelectOnce : function() {
if($('#fileQueue .uploadifyQueueItem').size() > 0)
{
$(\"#filebox\").css('width', '440');
$(\"#uploadify\").uploadifySettings('width', '124');
$(\"#uploadify\").uploadifySettings('height', '14');
$(\"#uploadify\").uploadifySettings('buttonImg', '/gfx/browse2.gif');
}},
onCancel : function() {
if($('#fileQueue .uploadifyQueueItem').size() == 1)
{
$(\"#uploadify\").uploadifySettings('width', '120');
$(\"#uploadify\").uploadifySettings('height', '40');
$(\"#uploadify\").uploadifySettings('buttonImg', '/gfx/inputs.gif');
}},
});
});