You can enable/disable scene scroll with mouse cursor with a line of Lua script.
Scenes["example"].SceneScrollOnEdges = true
or a more global approach which will enable/disable it for the currently displayed scene...
game.CurrentScene.SceneScrollOnEdges = true
Replace true with
false to disable scrolling.
You can execute these lines of code inside of an
execute a script action part.