Ist tatsächlich transparent. Du kannst aber einfach ein zweites Fenster öffnen:
Code: Alles auswählen
InitMovie()
OpenWindow(0,0,0,320,240,"void",#PB_Window_BorderLess)
SetWindowColor(0,0)
SetWindowState(0,#PB_Window_Maximize)
SetWindowLongPtr_(WindowID(0),#GWL_EXSTYLE,#WS_EX_LAYERED)
SetLayeredWindowAttributes_(WindowID(0),0,220,#LWA_ALPHA)
LoadMovie(0,"**DEIN FILMCHEN **")
OpenWindow(1,WindowWidth(0)/2-MovieWidth(0)/2,WindowHeight(0)/2-MovieHeight(0)/2,MovieWidth(0),MovieHeight(0),"",#PB_Window_BorderLess)
PlayMovie(0,WindowID(1))
While WaitWindowEvent() ! #PB_Event_CloseWindow : Wend