//    Instruction Example :      track.key.sound.play (objectid,long,long)


        screen.resolution.set (512,384)

        @sound=sound.load ("avo\sound.wav")

        @track=track.create ()
          track.key.set (0)
            track.key.sound.play (@sound,CHANNEL_1,SOUND_LOOP)
        track.end ()

        sequence.play (@track)

        text.display ("Press a key to exit.",CENTER,350)

        keyboard.wait ()

        script.stop ()