roVideoPlayer Object
I can use the PlayFile and Stop() interfaces with no problem but I can seem to get the Play() to work. Am I missing something? This is my code segment...
while true
msg=wait(50, p)
if type(msg)="roTouchEvent" then
print "msg:";msg
print "x,y=";msg.GetX();msg.GetY()
if msg = 1 then v.PlayFile("1.ts")
if msg = 2 then v.PlayFile("2.ts")
if msg = 5 then v.Play()
if msg = 6 then v.Stop()
endif
End while
"5" is returned for msg.