Hy!
When Uploadify send the file to the action, I need to know if the checbox is checked or not, so I did:
$(\'#uploaded\').uploadify({ \
I just had the same problem and found this solution:
if($("input[name='yourcheckbox']").is(':checked')) { console.log('chb checked'); } else { console.log('chb not checked'); }