Re: Insert Button doesn't function like a button.

  •  08-31-2009, 9:46 PM

    Re: Insert Button doesn't function like a button.

    Hi,
     
    When AjaxUploader choose Flash10 or Silverlight3 to improve uploading performance/experience ,
     
    There will be a transparent layer over the button (required by Flash10/Silverlight3)
     
    you can do this way to attach the event for the layer :
     
    function CuteWebUI_AjaxUploader_OnMantleButton(btn,layer)
    {
          layer.onmouseover=function()
          {
                btn.src='/images/Common/btn-upload_r.jpg';
          }
          layer.onmouseout=function()
          {
                btn.src='/images/Common/btn-upload.jpg';
          }
    }
     
    the btn object is which you set its id to InsertButtonID
     
    Regards,
    Terry
View Complete Thread