Ciao a tutti, sto cercando di capire come far suonare un file mp3 che si trova nel mio sito web ho usato il seguente codice
non mi funziona mi da un errore su mp3.load, come mai?
B4X:
Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Dim btnSuona As Button
Dim mp3 As MediaPlayerStream
End Sub
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("web")
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
Sub btnSuona_Click
mp3.Load("http://www.siciliabit.com/download/vienidame.mp3")
mp3.Play
End Sub
non mi funziona mi da un errore su mp3.load, come mai?