This content has been marked as final.
Show 2 replies
-
1. Re: audio don't start in static html
Peter Flynn (Adobe) Feb 21, 2014 4:29 PM (in response to uboss84)Does this problem happen if you open your index.html file directly in Chrome manually? Or does it only happen when you view the page using the Live Preview feature in Edge Code?
- Peter
-
2. Re: audio don't start in static html
uboss84 Feb 22, 2014 2:18 AM (in response to Peter Flynn (Adobe))the problem happen when i open static index page in chrome and other browser, but autoplay only function in firefox...i have done 2 button to pause and resum audio..
//code pausabutton
sym.$("pausabutton").hide();
sym.$("playbutton").show();
// Sospendi la traccia audio.
sym.$("musica")[0].pause();
//code playbutton
sym.$("playbutton").hide();
sym.$("pausabutton").show();
// Riproduci la traccia audio.
sym.$("musica")[0].play();
but if i don't convert code in static html it function in all browser


