﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2840	Bug in _Sound.au3	Eukalyptus	Melba23	"in every ""set time format miliseconds"" there is missing a ""l"" => milliseconds!
So the format is never set to MS

TestScript:
(test only with .wav, because ""time format bytes"" dosn´t work with .mp3)
{{{
#include <Sound.au3>
$aSnd = _SoundOpen(@ScriptDir & ""\Test.wav"")
$iDuration = _SoundLength($aSnd);correct because milliseconds is the standard format
ConsoleWrite(""+ Duration: "" & $iDuration & @CRLF)

__SoundMciSendString(""set "" & $aSnd[0] & "" time format bytes"")
$iDuration = _SoundLength($aSnd);returns bytes, because ""set time format"" fails inside this function
ConsoleWrite(""! Duration: "" & $iDuration & @CRLF)

__SoundMciSendString(""set "" & $aSnd[0] & "" time format milliseconds"")
$iDuration = _SoundLength($aSnd);correct again
ConsoleWrite(""+ Duration: "" & $iDuration & @CRLF)
}}}

E"	Bug	closed	3.3.13.17	Standard UDFs	3.3.12.0	None	Fixed	sound soundlength miliseconds milliseconds	
