help with DrawMovie

BlitzPlus Forums/BlitzPlus Programming/help with DrawMovie

dwarf(Posted 2005) [#1]
Help with DrawMovie.

I use some code like :

Graphics 800,600
Global movie=OpenMovie("media/1.mpg")
SetBuffer BackBuffer()
i=300
While MoviePlaying(movie) And KeyHit(1)=0
i = i - 1
If i=0 i=300
DrawMovie(movie,0,0,800,600)
Text i,400,"hello"
Flip
Wend
CloseMovie(movie)

It's work fine on my computer with a blitzplus install, but when I start executable on computer without blitzplus, I allways this message "Failed to create directDraw graphics".

I check the video, and media player play the video. I install last directx (9.0c).

Does anyone know a solution

thanks