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


        screen.resolution.set (512,384)

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

        @panel = panel.create ("avo\panel.png",320,240)

        panel.persistence.set (@panel,TRUE)

        panel.display (@panel,CENTER,CENTER)

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

        keyboard.wait ()

        panel.color.set (@panel,0,0,255)

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

        keyboard.wait ()

        script.stop ()