Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How can I enable the ESC key to stop fullscreen video and audio and return to FMProjector at the same time?

0
Posted

How can I enable the ESC key to stop fullscreen video and audio and return to FMProjector at the same time?

0

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.

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123