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


        screen.resolution.set (512,384)

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

        @picture=picture.load ("avo\fruit.jpg")
        picture.persistence.set (@picture,ON)
        picture.display (@picture,CENTER,CENTER)

        text.display ("Press a key to swap the color.",CENTER,10)

        keyboard.wait ()

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

        picture.color.swap.set (@picture,0,0,0,159,26,101)

        keyboard.wait ()

        script.stop ()