Problem with Joint Pushpull
-
Hey Guys,
Can anyone tell me what this error message means:
Error Loading File jointpushpull.rb
undefined method `get_last_state' for nil:NilClassIt doesn't seem to effect the tool, but wanted to make it go away.
Cheers!
-
Edit the File and Find Line ~2349
status = @tlb.get_last_state
Add onto the end of it thus, to read
status = @tlb.get_last_state if @tlb
The variable@tlb
will point at the 'toolbar' - it is initially set tonil
and so thestatus
setting fails until it's set to something... this waystatus
is tested and set only after@tlb
is found to be something other thannil
... -
I have the same problem and when I made the change it won't let me save, tells me "access denied". Any way to get this fixed? Thanks.
-
@hrland said:
I have the same problem and when I made the change it won't let me save, tells me "access denied". Any way to get this fixed? Thanks.
The problem derives from a wrong installation: i.e. For whatever reasons, the image files JPP_....png icon files cannot be found in the JPP_Dir_xx directory.
I suggest you check if the files are present.Fredo
Advertisement