SoFunction
Updated on 2025-04-11

Solution to why the mouse is constantly changing after it is placed on FLASH

Find the segment where swf is located in the html code and add the following parameters:
<param name="wmode" value="opaque"> 
<embed ... wmode="opaque" ..></embed> 
The following is an example:
<object class codebase="/pub/shockwave/cabs/flash/#version=7,0,19,0" width="550" height="400">
<param name="movie" value="flash_encrypt.swf">
<param name="quality" value="high">
<param name="wmode" value="opaque">
<embed src="flash_encrypt.swf" width="550" height="400" quality="high" pluginspage="/go/getflashplayer" type="application/x-shockwave-flash" wmode="opaque"></embed>
</object>