as a way to ease the transition from Max to Pd, I'm writing a plugin that implements Max's hotkeys in Pd.
I started from the super helpful script by Monetus and already got some stuff working...
now I'd like to open an object's help by alt+clicking on it. Here's what I have now:
bind all <Alt-Button-1> "::pdtk_canvas::done_popup %W 2"
..this leads to a "no such object" error, since (I guess) %W
points to the window, not the object being clicked. I've looked everywhere but I can't figure out how to reference the object itself...