can't see flash object in cute editor when viewing in mozilla

  •  04-24-2009, 1:02 AM

    can't see flash object in cute editor when viewing in mozilla

    i have created a custom button on click of which i am showing a popup div...
    in that popup div i m uploading a flash file.
    then when the user clicks on the insert button given on the popup div. the div is closed and the  following html code is pasted in the editor.
     
    sbHTML.AppendFormat("<object codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab\" height={0} width={1} classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" >",iHeight, iWidth);
                    sbHTML.AppendFormat("<param name=\"Movie\" value=\"{0}\" />", fileName);
                    sbHTML.AppendFormat("<param name=\"Quality\" value=\"high\" />");
                    sbHTML.AppendFormat("<param name=\"wmode\" value=\"transparent\" />");
                    //sbHTML.AppendFormat(" <param name='swliveconnect' value='true' />");
                    //sbHTML.AppendFormat(" <param name='wmode' value='transparent' />");
                    sbHTML.AppendFormat("<embed src=\"{0}\" width=\"{2}\" height=\"{1}\" quality=\"high\" wmode=\"transparent\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />", fileName, iHeight, iWidth);
                    sbHTML.AppendFormat("</object>");
     
    its working fine on chrome and IE.. but can't see the flash object in mozilla.
     
     
View Complete Thread