but now I'm trying to copy the music file from "URL" to dirDocuments, seems File.Copy command cannot use in this case, anyone know how to do please let me know.
Sub PlaySound(Dir As String, FileName As String, Pitch As Int, rate As Double)
Dim no As NativeObject = Me
no.RunMethod("playSound::::", Array(File.Combine(Dir, FileName), Pitch, rate, engine))
End Sub