I still cant figure this out.
The cursor is working in my movie but i dont want my player to move when a menu is open. Only the cursor. Is this an obvious thing? I do not seem to find it.
I don't know if there is a default way to stop the game from receiving input from both keyboard and mouse but what I do when entering the menu is setting a new state in the playercontroller and overriding the PlayerMove function so that it does nothing while in that state.
That is only when I want the game to run in the background. If I want the game to pause while in the menu then using the console command pause and setting the time mode of the swf to TM_Real should also solve your problem.
You can disable the movement of the player camera when you are in the menu by entering into a cinematic mode before the menu is loaded. This can be done in Unreal Kismet by using the "Toggle Cinematic Mode" block before the "Open GFx Movie" block. Also, it should be noted that the "Toggle Cinematic Mode" should be triggered in at least 1 second delay after the "Level Loaded" event in order the cinematic mode to work.
Comment