From: "Jan E." Date: 2012-11-29T05:43:08+09:00 Subject: Re: class method defined, still undefinded method exeption @7stud: What are you here for? Do you think he's faked the error messages or what? @Michael: The problem is that you're using the RA class before it's even fully created. When you call VideoManager.new, which tries to call RA.screen, the RA class doesn't have a screen method yet. So that's what you'll have to fix. A simple bugfix would be to put VideoManager.new and similar method calls at the very bottom of RA's class body. -- Posted via http://www.ruby-forum.com/.