Bug? LoadVideoUrl does not load from a string variable holding the address[solved]

omarruben

Active Member
Licensed User
Longtime User
Hello, looks like it is a bug
B4X:
*** does not work ****
  Private vv As VideoView
  url = "http://mi.radiocast.us:8000"
   vv.Initialize("vv")
   vv.LoadVideoUrl(url)

*** WORKS ****
   Private vv As VideoView
   vv.Initialize("vv")
   vv.LoadVideoUrl("http://mi.radiocast.us:8000")
using the iMedia , any help would be really apreciated
 

omarruben

Active Member
Licensed User
Longtime User
I cleaned up all the project and it worked... sorry , for the waste of time , the error was somewhere else .
 
Top