Published in: Ruby
# Animates the window fade-out in 0.5 second. def fadeOutWindow(windowOutlet) x = 0 while x < 10 windowOutlet.setAlphaValue(windowOutlet.alphaValue - 0.1) x += 1 sleep(0.05) end end
You need to login to post a comment.
Beginning Ruby: From Novice to Professional
Beginning Ruby is a thoroughly contemporary guide for every type of reader wanting to learn Ruby, from novice programmers to web developers to Ruby newcomers. It starts by explaining the principles behind object-oriented programming and within a few chapters builds toward creating a genuine Ruby application.
Netzach on 01/17/08
textmate cocoa transparency ruby rubycocoa NSWindow Fade-out
1 person has marked this snippet as a favorite
Published in: Ruby
# Animates the window fade-out in 0.5 second. def fadeOutWindow(windowOutlet) x = 0 while x < 10 windowOutlet.setAlphaValue(windowOutlet.alphaValue - 0.1) x += 1 sleep(0.05) end end
You need to login to post a comment.