Adding a script to wordpress post
Hello,
I'm trying to add a promo tool of Awempire to my wordpress blog:
<!--START Livejasmin RECORDED SHOW-->
<script src="http://static.awempire.com/Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,24,0','width','320','heigh t','260','src','http://static.awempire.com/flash/livejasminflv','quality','high','pluginspage','htt p://www.macromedia.com/go/getflashplayer','flashvars','psid=sexysphere&pstou r=t1&psprogram=REVS','wmode','transparent','movie' ,'http://static.awempire.com/flash/livejasminflv' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,24,0" width="320" height="260">
<param name="movie" value="http://static.awempire.com/flash/livejasminflv.swf" />
<param name="quality" value="high" />
<param name="FlashVars" value="psid=sexysphere&pstour=t1&psprogram=REVS" />
<param name="wmode" value="transparent" />
<embed src="http://static.awempire.com/flash/livejasminflv.swf" width="320" height="260" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" flashvars="psid=sexysphere&pstour=t1&psprogram=REV S" wmode="transparent"></embed>
</object>
</noscript>
<!--END Livejasmin RECORDED SHOW-->
But it doesn't work. When i save the page and go back to the code it becomes:
<!--START Livejasmin RECORDED SHOW-->
<script type="text/javascript" src="http://static.awempire.com/Scripts/AC_RunActiveContent.js"></script>
<script type="text/javascript"> AC_FL_RunContent( \'codebase\',\'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,24,0\',\'width\',\'320\',\ 'height\',\'260\',\'src\',\'http://static.awempire.com/flash/livejasminflv\',\'quality\',\'high\',\'pluginspage \',\'http://www.macromedia.com/go/getflashplayer\',\'flashvars\',\'psid=sexysphere&p stour=t1&psprogram=REVS\',\'wmode\',\'transparent\ ',\'movie\',\'http://static.awempire.com/flash/livejasminflv\' ); //end AC code</script><noscript></noscript>
<!--END Livejasmin RECORDED SHOW-->
|