This plugin allows you to play videos that are NOT skippable, even if the escape key is pressed.
The cursor will be hidden whenever a video is currently playing, to match the new v4.7.1 feature.
Regardless of whether the video is played from a hotspot click OR a frame load, you can resize it.
Other benefits of this plugin include more video format and codec support than the default player.
Supported video formats and codecs are listed and explained at this link.
100% free, open source, and public domain.
*.ocx made with Visual Studio 2017 Community.
Source code was written in C++ (MFC).
DOWNLOADS
IMPORTANT NOTE
This plugin under-the-hood relies on looping timed events for every frame, so whenever you remove timed events with code, you shouldn't assume the timed events you created are the only ones floating around.
In other words, instead of doing this:
- Code: Select all
CreateTimedEvent ...
And this:
- Code: Select all
RemoveTimedEvent 1
You should store the timed events you create in a variable, like so:
- Code: Select all
TimedEventVar = CreateTimedEvent ...
And then remove it like this:
- Code: Select all
RemoveTimedEvent TimedEventVar
You can replace "TimedEventVar" with whatever variable name suits your needs.
If you aren't dynamically removing timed events with code in your project, then you won't need to worry about this, and you can then use the plugin without compensation. I'm going to be working on a new version soon that will hopefully no longer rely on Adventure Maker's timed event system, but until then, keep this stuff in mind.
Cheers!
Samuel