From: Hugh Sasse Date: 2008-11-10T23:11:18+09:00 Subject: Re: Problem with object methods? On Mon, 10 Nov 2008, Carter Davis wrote: > I recently made an object for a game I'm making. It uses the constructor You mean that it has an initialize method, and you called new on the class to create it? Or did you try something else? > method, but it won't use its other methods. I tried calling upon it by > inserting the method's name into the object's text, but it still won't What do you mean by "inserting ... the object's text"? > call upon them. > > Is there any special wayto call upon the methods, or something? I think it would be simplest if you reduced this to the smallest example that doesn't behave how you expect. Then show us the code, the results you got from running it, and tell us why you think that is unexpected. Then we can see if your code expresses your intentions correctly, if you assumptions are wrong, or if there is some other problem. All rather tedious, but it's probably quickest in the long run. > -- > Posted via http://www.ruby-forum.com/. > Hugh