//    Instruction Example :      sprite.color.set (objectid,long,long,long)


        screen.resolution.set (512,384)

        screen.set (BACK)
          pattern.display ("avo\bubble.gif")
        screen.end ()

        @spr=sprite.display ("avo\logo.spr",CENTER,CENTER)

        text.display ("Press a key to set the color of the sprite.",CENTER,10)

        keyboard.wait ()

        sprite.color.set (@spr,125,0,255)

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

        keyboard.wait ()

        script.stop ()