[C++] mouse events not working in the world

Hi ,

per your comments:

-Using version 4.14.3
I added GEngine->AddOnScreenDebugMessage to the pregenerated SetNewMoveDestination function in my custom player controller which is correctly assigned in the configuration file/game mode, with the following behavior, I don’t have visual cues so I’ll try to be as explicit as I can:

I’m using a custom level class and level streaming. When I transition from the char gen level to the first game map via load and unload stream levels commands, the mouse seems to be in some sort of unfocused state and if I click once to regain focus relative to the world, the debug message populates.
But only in that instance and only once, after that any subsequent clicks in the world generate no events whatsoever, because there is no debug message being displayed anymore.

-Using version 4.13.2 which I just reinstalled
when compiling the code in VS 2015 using 4.13 version of the engine, at some point I now get an exception thrown: " access violation 0x38" in the Array.h line 2143 being called from my custom level class when adding a delegate on the media player
LogoMediaPlayer->OnEndReached.AddDynamic(this, &ASP_Persistent::OnPlayEndLogo);

this error comes before the unreal engine editor even starts, so it never gets to the point where I can click the play button for PIE. Therefore I cannot confirm if the mouse events are working in this version 4.13.2. The same line that adds a delegate in the custom level class works fine in version 4.14.3. This custom level class was not implemented three months ago while developing using 4.13 engine version, so this is the first time when I became aware of the error described above

I think the project was created in 4.11 or 4.12 version, and I upgrade as new stable generally available versions come up, I don’t use preview versions, that’s why currently I’m using 4.14.3. The last version of the project that I know the mouse events worked as expected was using 4.13, but as I mentioned, I now get the compilation error related to the delegate when attempting to use 4.13.2 so I cannot confirm its current behavior.

If needed, you can find a copy of the project here: Microsoft OneDrive - Access files anywhere. Create docs with free Office Online.

Thanks!