Hi,
I was trying to play sound from mp3 file,
dim f As FolderItem = getfolderitem("01-siren.mp3")
If f <> Nil And f.Exists Then
Try
f.launch
Catch error As IOException
MsgBox("The sound file could not be opened. Error: " + error.Message)
End Try
End If
this is work on windows, but not in linux.
is there any other solution for play sound than using folderitem?.
any helps?
thanks
arief