@d-healey said in Printing Viewport view positions?:
@VirtualVirgin The viewport's changed callback isn't called when moving the scrollbars. It's called when the viewport is in list mode and you select an item in the list, or when you call .changed()
I just tried attaching a broadcaster to the the property, but that doesn't work either - smells like a bug there @Christoph-Hart
The only things I can suggest trying are a mouse broadcaster or using a timer to poll for changes.
Thanks, I think I'll just leave it alone for now.
I was hoping to use it somehow as a workaround to get scroll wheel events since the panel mouseCallback does not have this data.
And that I was hoping to use as a workaround for the fact that the Viewport obscures the scrollbars when the content inside is lager than 2 dimensions.
So I think for the time being I will have to stick either a panel with scrollbars (and no scroll wheel) or a viewport with scroll wheel and no scroll bars.
Otherwise I guess I would have to learn how to edit the HISE source code, but that seems like a steep learning curve for me at the moment.