Re: "File Browsing has been blocked." inside AJAX TabContainer

  •  12-13-2008, 9:40 AM

    Re: "File Browsing has been blocked." inside AJAX TabContainer

    Hi,
     
    Please download the uploader again. 
     
    The flash10 do not allow javascript to open the file browsing dialog.
     
    So our implementation is make a flash-mask over the button.
     
    The uploader are not able to position a flash-mask to cover the button for you case .
     
    So you need write a javascript function like this , and try to move the 'flashdiv' to the 'button' :
     
    function CuteWebUI_AjaxUploader_OnMantleButton(button,flashdiv)
    {
        //use this line to see the floating flash object
        flashdiv.style.backgroundColor="red";
        var l=parseInt(flashdiv.style.left)
        var t=parseInt(flashdiv.style.top)
        l=l+88;//try to found a best value to move the flashdiv
        t=t+77;//
        flashdiv.style.left=l+"px";
        flashdiv.style.top=t+"px";
    }
     
     
    Regards,
    Terry
     
View Complete Thread