I wondering if exists some way to pass POST parameters to a newVideo load function, i mean; actually i do a remote loading with an URL with parameters like :
local url = "www.somevideopage.com/videos/getMyVideo.php?usr=user1&pwd=pass1&videoIndex=1010" videoView = native.newVideo( videoFrame.x + 10, videoFrame.y, videoFrame.contentWidth, videoFrameHeigth ) videoView:load( url) videoView:addEventListener( "video", videoListener ) videoAlreadyLoaded = false videoView:play()
But i need to pass the parameters using POST method (cause server restrictions), how can i do that ?