//    Instruction Example :     objectid text.create (string,long,long)


        #define WIDTH 400
        #define HEIGHT 200

        screen.resolution.set (512,384)

        screen.set (BACK)
          pattern.display ("avo\bubble.gif")
          box.display (CENTER,CENTER,WIDTH,HEIGHT)
        screen.end ()

        $text=text.load ("avo\about.txt")

        text.align.select (MIDDLE)
        @text=text.create ($text,WIDTH,HEIGHT)

        text.display (@text,CENTER,CENTER)

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

        keyboard.wait ()

        script.stop ()