<div dir="ltr"><br><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Mar 19, 2014 at 5:50 PM, Miguel Lemos <span dir="ltr">&lt;<a href="mailto:miguel21op@gmail.com" target="_blank">miguel21op@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi<div><br></div><div>The sound event when the notification arrives doesn&#39;t seem to work (at least on iPhone; Android not tested yet).</div>
<div><br></div><div>And yes: the sound plugin is installed and working just fine.</div>
<div><br></div><div>Besides, I don&#39;t understand quite well the way you build the event. Example given by you for Android:</div><div><br></div><div><span style="line-height:15.680000305175781px;font-size:11px;white-space:pre-wrap;font-family:monospace,serif;font-weight:bold">var</span><span style="line-height:15.680000305175781px;font-size:11px;background-color:rgb(240,240,240);white-space:pre-wrap;font-family:monospace,serif"> my_media = </span><span style="line-height:15.680000305175781px;font-size:11px;white-space:pre-wrap;font-family:monospace,serif;font-weight:bold">new</span><span style="line-height:15.680000305175781px;font-size:11px;background-color:rgb(240,240,240);white-space:pre-wrap;font-family:monospace,serif"> Media(</span><span style="color:rgb(136,0,0);font-family:monospace,serif;font-size:11px;line-height:15.680000305175781px;white-space:pre-wrap">&quot;/android_asset/www/&quot;</span><span style="line-height:15.680000305175781px;font-size:11px;background-color:rgb(240,240,240);white-space:pre-wrap;font-family:monospace,serif"> + e.sound);</span><br>

</div><div><br></div><div>..What sound? I can have several sounds on a given folder...</div></div></blockquote><div>I haven&#39;t play too much with sound but e.sound is supposed to contain the filename of your sound file (like beep.wav / sirene.wav ...)  </div>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><br></div><div>I think a better - and more trivial - approach would be something like this (just an opinion...):<br>
<br><div>
if (e.sound) {</div><div><span style="white-space:pre-wrap">                </span>if (device.platform == &quot;Android&quot;) {</div><div><span style="white-space:pre-wrap">                        </span>media = new Media(&quot;/android_asset/www/beep.wav&quot;);</div>

<div><span style="white-space:pre-wrap">                        </span>} else if (device.platform == &quot;iOS&quot;) {</div><div><span style="white-space:pre-wrap">                        </span>media = new Media(&quot;beep.wav&quot;); // root directory</div>
<div><span style="white-space:pre-wrap">                        </span>} </div><div><span style="white-space:pre-wrap">                </span>media.play();    </div><div>          }</div></div><div><br></div><div><br></div><div>Thanks guys :-)</div>
</div>
<br>_______________________________________________<br>
aerogear-dev mailing list<br>
<a href="mailto:aerogear-dev@lists.jboss.org">aerogear-dev@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/aerogear-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/aerogear-dev</a><br></blockquote></div><br></div></div>