transparent processing window that drags
in
Programming Questions
•
11 months ago
I am trying to customize the window with a custom min/max/resize button, so I have used the following:
- frame.setUndecorated(true);
easy enough, but now I try to make it transparent and allow for dragging when the canvas is clicked and I am not having as much luck. found some java code, but it doesn't seem to translate to processing:
- frame.setOpaque(false);
says the function doesn't exist. same seems true for click and drag events to move the canvas. any suggestions? I've had no luck at all.
1