Flash audio / MP3 cannot be heard in an ebook - Troubleshooting
- After compiling a project made with Articulate Engage, there is no sound.
The MP3 player is written in Flash.
If you have a Flash movie that should play MP3 audio and you hear nothing, then you may need to turn the "Use the built-in protocol instead of HTTP" environment option on.

Then recompile your publication & it should work.
Another solution
Another solution is to specify the full URL to the mp3 you want to play starting by ghe://heserver.In the following sample, the Flash MP3 player is instructed to play "ghe://heserver/test.mp3" and not just "test.mp3".
<html> <head> <title>Flash audio does not play</title> </head> <body> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"WIDTH="64" HEIGHT="32"> <PARAM NAME="FlashVars" VALUE="audiofile=ghe://heserver/test.mp3"> <PARAM NAME="menu" VALUE="false"> <PARAM NAME="movie" VALUE="player.swf"> <PARAM NAME="quality" VALUE="best"> <PARAM NAME="wmode" VALUE="transparent"> <EMBED FlashVars="audiofile=ghe://heserver/test.mp3" menu="false" quality="best" src="playerswf" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" wmode="transparent" WIDTH="64" HEIGHT="32"></EMBED></OBJECT> </body> </html>
There are no comments on this page. [Add comment]