|
Post by dantas on Jun 14, 2018 7:59:13 GMT
Hi,
We are currently trying to make sure that we can use the Rho Browser for one application in my clients' company, it is a web application that is to be used in the wt41n0 devices (windows CE 7), we are currently in POC phase ( proof of concept). We came across this Rho browser and it is very fast and the whole thing works like a charm. The problem is that one of the criteria for us to use the browser we need to play sounds in it! We have a piece of code that plays sound ( via javascript, see code underneath), it plays well for example when I open it in the out of the box IE browser or some other companies browsers, but for some reason it does not play in Rho Browser. Is there a way to make it work without the suite?
Thank you,
Best regards, Guilherme Menescal Dantas.
JS code user:
<!--<span class="code-comment"> <bgsound src="audio\BeepWave.wav" loop="infinite"> --></span>
<!--<span class="code-comment"> use refresh to return to page --></span>
<object type="audio/x-wav"
data="audio\BeepWave.wav" width="1" height="1">
<param name="FileName" value="audio\BeepWave.wav">
<param name="hidden" value="true">
<param name="loop" value="false">
<param name="numloop" value="2">
</object>
<noembed> <p>Could not embed wav file!</p> </noembed>
<embed src="audio\BeepWave.wav" width="1" height="1" hidden="true" type="audio/x-wav">
<a href="javascript:document.embeds[0].play()">Starten</a>
"
|
|
|
Post by Vladimir Musulainen on Jun 14, 2018 15:45:49 GMT
You can try to use call to native layer Rho.Mediaplayer.start (http://docs.tau-technologies.com/en/6.0/api/mediaplayer#mstartSTATIC)
|
|
|
Post by Super Admin on Jun 14, 2018 16:15:35 GMT
|
|