uploadify上传插件,点击按钮后弹不出抉择文件的框

uploadify上传插件,点击按钮后弹不出选择文件的框。
uploadify上传插件,点击按钮后弹不出抉择文件的框
如图,点击'添加附件'后,弹不出上传的对话框。怀疑是swf文件路径有问题。
js代码如下:

$(function(){
    uploadify();
});

function uploadify(){
    $("#file_upload").uploadify({  
        'height'        : 27,   
        'width'         : 80,    
        'buttonText'    : '添加附件',  
        'swf'           : '/csg-front-framework/pc/js/lib/uploadify/uploadify.swf',  
        'uploader'      : '',
        'auto'          : false,
'method' : 'post',
        'fileSizeLimit' : '30720KB', 
        'fileTypeExts'  : '*.doc; *.jpg; *.rar', 
        'cancelImg' :  '/csg-front-framework/pc/js/lib/uploadify/uploadify-cancel.png',
        'uploadLimit' : 3, 
       // 'formData'      : {'userName':'','content':''},  
        'onUploadStart' : function(file) {
        },  
        'onUploadSuccess':function(file, data, response){  
            //alert('The file ' + file.name + ' was successfully uploaded with a response of ' + response + ':' + data);
             $("#tempFileName").val(file.name);
             $("#"+idName).val(data);
        },  
        'onUploadComplete':function(){  
           // $('#importLispDialog').window('close');  
        },
        'onSWFReady':function(){
         alert("aaaaaaaa");
        }
    });  
}
function startUpload(){     
         $('#file_upload').uploadify('upload','*');  


------解决思路----------------------
<%
String path = request.getContextPath();
%>

 'uploader'       : '<%=path%>/csg-front-framework/pc/js/lib/uploadify/uploadify.swf'‘

使用绝对路径试试吧。