Ok I'm getting a little frustrated now. I used a different codec and set up a plain(plane) and that solved the problem of the Active Movie window loading. Unfortunately, the video doesn't even play now. I get what looks like static on the textured plain(plane). Here's my code. I'm going to try on my other cpu when I get home tonight but what the flip is going on?
set display mode 1024,768,32
load animation "movie.mpg",1
make object plain 1,512,384 `size of the video clip
play animation to image 1,1,256,192,768,576 `center of the screen
texture object 1,1
wait key
end
Also, I wanted to see if maybe it was only playing one frame, so I added this loop to make the plain rotate and it didn't rotate. Can we rotate 2D objects?
while c=1 < 5000
yrotate object 1,wrapvalue(c+20)
c=c+5
wait 500
endwhile
EDIT: Alright sorry about the rant. Turns out I tried it out on my other cpu (which has much better...well, everything) and now it works fine. Without using a plain and everything. Stupid integrated gpu.
Thanks for the help everybody