Introduction

Play sound is used to play audio files in Oracle Forms, Play Sound plays the sound object in the specified sound item

PLAY_SOUND examples

The following plsql block you can write in when-button-pressed trigger for a push button item, when button clicked  read a sound object from the file system and play it. Note: since an item must have focus in order to play a sound, the trigger code includes a call to  the built-in procedure GO_ITEM:

Sample Code:

BEGIN

IF :clerks.last_name = ’BARNES’ THEN

GO_ITEM(’orders.filled_by’);

READ_SOUND_FILE(’t:ordersclerkbarnes.wav’,’wave’,’orders.filled_by’);

PLAY_SOUND(’orders.filled_by’);

END IF;

END;

Recent Posts

Start typing and press Enter to search