By Aleks
/// Load and play video, but trigger a alarm before it. (Inside the alarm is what it should do after playing the video)
// Trigger alarm:
alarm[0] = 1;
// Set video properties (disable border and disable x button)
splash_set_border(false);
splash_set_interrupt(false);
splash_set_close_button(false);
splash_set_stop_key(true);
splash_set_stop_mouse(false);
// The video you want to play:
splash_show_video("test.avi", false);