Table of Contents

Getting started with TMS FNC WX Audio Player

Prerequisites

  • TMS FNC Core installed and the runtime package added to the project.
  • TMS FNC WX Pack installed.

Add the component

  1. Drop TTMSFNCWXAudioPlayer from the component palette onto a form.
  2. Set the URL property to an audio file path or stream URL.
  3. Set AutoPlay to True to start playback when the page loads, or call Play programmatically.

Control playback

{ In a button's OnClick handler: }
AudioPlayer1.Play;
AudioPlayer1.Pause;
AudioPlayer1.Stop;

Next steps

  • Guides — volume control, looping, preload strategies, and event handling.
  • API reference — full class reference.