//    Instruction Example :     string sound.title.get (objectid)


        screen.resolution.set (512,384)

        @sound=sound.load ("avo\audio.mp3")
        sound.play(@sound,CHANNEL_1)

        text.display ("The title of the sound is : "+sound.title.get(@sound),CENTER,CENTER)
        text.display ("Press a key to exit.",CENTER,350)

        keyboard.wait ()

        script.stop ()