Movie Playing Problem (ignore)
Posted: Tue Jan 25, 2005 6:43 pm
hey i wants to display 2 movies in the same screen using
windowed screen
everything is setuped
but when i use this code
then when i drag the window ill see bth movies with some flash and if i stp dragging i only see 1 movie!
is there anyway t oshow 2 movies on the same window on the same time
??
RedmoonX
windowed screen
everything is setuped
but when i use this code
Code: Select all
InitMovie()
OpenWindow(0,0,0,600,300,#PB_Window_SystemMenu|#PB_Window_ScreenCentered,"Application")
LoadMovie(0,"movie.avi")
LoadMovie(1,"movie.avi")
UseMovie(0) : ResizeMovie(0,0,300,300)
UseMovie(1) : ResizeMovie(300,0,300,300)
PlayMovie(0,WindowID(0))
PlayMovie(1,WindowID(0))
Repeat : Until WindowEvent()=#PB_Event_CloseWindow
is there anyway t oshow 2 movies on the same window on the same time
??
RedmoonX