S S Muu Member 959 Jul 13, 2007 #1 Code: @pics.x -= 1 if @picsb != nil # This Works x = @pics.x # This dosen't work it say it can't find @pics.x Someone understand why? EDIT: I Found the Error its working now
Code: @pics.x -= 1 if @picsb != nil # This Works x = @pics.x # This dosen't work it say it can't find @pics.x Someone understand why? EDIT: I Found the Error its working now
Yeyinde Sponsor 1,122 Jul 13, 2007 #2 Simple: the writer method (x=) is defined while the read method (x) isn't. Upvote 0 Downvote