//    Instruction Example :      button.transparency.level.set (objectid,long)


        screen.resolution.set (512,384)

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

        @button=button.load ("avo\button_01.btn")
        button.display (@button,CENTER,CENTER,Event.Manager,PRESS_LEFT_BUTTON)
        button.transparency.level.set (@button,128)

        @ico=icon.load ("avo\dinosaur.png")
        icon.layer.set (@ico,0)
        icon.persistence.set (@ico,TRUE)
        icon.display (@ico,CENTER,CENTER)

        text.display ("The transparency Level is : "+str(button.transparency.level.get (@button)),CENTER,10)
        text.display ("Press a key to exit.",CENTER,350)

        keyboard.wait ()

        script.stop ()

        procedure Event.Manager (@event,%status)
        end procedure