From: Dan Diebolt Date: 2005-12-22T00:58:13+09:00 Subject: Re: ruby videos --0-812127034-1135180682=:57752 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Here is a bunch of screencast packages: http://en.wikipedia.org/wiki/Screencast This might be of use with the robot simulation. If you change the timer TkTimer interval from 20 to say 100 you can study the simulation in greater details: def init_simulation #you can slow down the simulation 5x by chaning 20 to 100ms @robots, @bullets, @explosions = {}, {}, {} TkTimer.new(100, -1, Proc.new{ begin draw_frame rescue => err puts err.class, err, err.backtrace raise end }).start end Capturing the window will allow you to play it back and study whats going on. __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com --0-812127034-1135180682=:57752--