animated image

animated image

Methods
N
Attributes
[RW] destroy_image
Class Public methods
new(*args)
# File ext/tk/sample/demos-en/anilabel.rb, line 83
def initialize(*args)
  super(*args)
  @destroy_image = false
  @btag.bind_append('Destroy'){
    if @destroy_image
      begin
        self.image.delete
      rescue
      end
    end
  }
end