How can I fix it. I was making my mod and I got the error like in Panther. It says
Message Not Understood UpdateWatcherButtonsForFrame
Offline
give me the whole context. btw after the first time it works
Offline
deletingWatcher
| t1 t2 |
watcherPositions do: [:t3 | t3 first
ifNotNil:
[t2 _ t3 first.
t2 owner
ifNil:
[t3 at: 1 put: nil.
t3 at: 2 put: t2 position - workPane position.
t3 at: 3 put: t2 layoutStyle.
t3 at: 4 put: t2 sliderRange]]].
t1 _ viewerPane pageViewer contents.
t1 ifNotNil: [t1 updateWatcherButtonsForFrame: self]
Offline
Thats the code giving a error
Offline
well you didn't edit that code so i've no clue.
it's just like my problem on dictionaries
Offline
I believe it's because the "contents" of the pageViewer is a Morph, which doesn't respond to "updateWatcherButtonsForFrame", I would suggest trying just "pageViewer" (no contents) but I'm not looking at the source right now so that's a guess...
Offline