How can I enable the ESC key to stop fullscreen video and audio and return to FMProjector at the same time?
If you’re playing fullscreen video in FMProjector and want to stop the video, you can use the Escape key. This will return to FMProjector but the Video will still be running. Thankfully this action happens on a KeyDown action. With the focus back in FMProjector you can use an onClipEvent(keyUp) action to turn the video off as below… onClipEvent (keyUp) { if (Key.getCode() == Key.ESCAPE) { fscommand (“fas.avclip.stop”); fscommand (“fas.avclip.unload”); fscommand (“fas.avclip.fullscreen”, “false”); } } This works with WMP 6.4 and 7. (dont know about 8) Hope this helps someone else. ….Above quoted from Trevor’s post.