//    Instruction Example :     objectid icon.copy (objectid)


         screen.resolution.set (512,384)

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

        @icon[1]=icon.load ("avo\dinosaur.png")

        for (%i=2 to 20)
          @icon[%i]=icon.copy (@icon[1])
        next ()

        for (%i=1 to 6)
          icon.display (@icon[%i],%x,%y)
          time.wait (0.1)
          %x+=128
          if (%x>320)
            %x=0
            %y+=160
          endif ()
        next ()

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

        keyboard.wait ()

        for (%i=1 to 6)
          screen.mask (on)
            icon.kill (@icon[%i])
          screen.mask (OFF)
          time.wait (0.1)
        next ()

        script.stop ()