Technology is not science. RSS Feed

Restarting a Sound in Silverlight 1.0
09 Nov 2007, 04:28:00 PM
More than one person has experienced this problem and asked me about it. My solution is simple. function restartSound(mediaElement){    mediaElement.source= mediaElement.source;    mediaElement.autoPlay= true;} ...
Read post