How to load an audio file in oracle form6i

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Rohullah
    New Member
    • Mar 2010
    • 43

    How to load an audio file in oracle form6i

    Hello anyone

    I want to load an audio file in oracle form 6i

    for example i have a texbox and a button
    when textbox='Hello'
    and i press the button the specify sound should load

    how to do it Plz
    Help me
  • amitpatel66
    Recognized Expert Top Contributor
    • Mar 2007
    • 2358

    #2
    Try something like this:

    [code=oracle]
    Go_Item('ITEM') ;
    Read_Sound_File ('wav file path', 'WAVE', 'ITEM');
    Play_Sound('ITE M');

    --or

    --The button has a WHEN-BUTTON-PRESSED trigger with the ---following code:

    ------------
    set_custom_prop erty('BLOCK3.PU SH_BUTTON4', 1, 'PLAY', 'FILE:///C:\EAM_original .wav');

    [/code]

    Comment

    Working...