animated label
animated label
Methods
Class Public methods
new(*args)
Link
Source: show
# File ext/tk/sample/demos-en/anilabel.rb, line 55 def initialize(*args) super(*args) @timer = TkTimer.new{ _animation_callback } @timer.loop_exec = -1 # bind('Destroy'){ @timer.stop } @btag = TkBindTag.new('Destroy'){ @timer.stop } self.bindtags_unshift(@btag) end
Instance Public methods