//    Instruction Example :     objectid screen.cut (objectid,long,long,long,long)


        screen.resolution.set (512,384)

        screen.set (BACK)
          pattern.display ("avo\bubble.gif")
          screen.set (MID)
            picture.display ("avo\fruit.jpg",CENTER,CENTER)
            screen.set (FRONT)
              icon.display ("avo\dinosaur.png",CENTER,CENTER)
              text.display ("Press a key to cut an area from the MID screen.",CENTER,10)
            screen.end ()
          screen.end ()
        screen.end ()

        keyboard.wait ()

        screen.set (FRONT)
          @copy=screen.cut (MID,0,0,256,192)
          icon.display (@copy,-50,50)
          text.display ("Press a key to exit.",CENTER,350)
          keyboard.wait ()

        script.stop ()