two commented lines are uncommented... any ideas why?
 
 Code: Select all
movie$="d:\test.mpg"
If InitMovie()=0 Or LoadMovie(0,movie$)=0 : End : EndIf
mw=MovieWidth() : mh=MovieHeight() : fps=MovieInfo(0)/1000 : dur=MovieLength()
;hmm=#PB_Window_Invisible
If OpenWindow(0,0,0,mw,mh,hmm|#PB_Window_SystemMenu|#PB_Window_ScreenCentered,"Movie")=0 : End : EndIf
PlayMovie(0,WindowID())
;ShowWindow_(WindowID(),#SW_SHOW)
Repeat : Until WaitWindowEvent()=#PB_Event_CloseWindow
window, then parts of the movie get drawn onto the window... do I maybe
have a video driver problem? I wouldn't think so because of the fact that
the movie plays if I uncomment the lines above...?


 
 