pyVNC icon indicating copy to clipboard operation
pyVNC copied to clipboard

How to show screen by PyGame in this project?

Open luoruofeng opened this issue 1 year ago • 1 comments

how to implement loop method and update_complete method in class Buffer?How to Display screen?

luoruofeng avatar Apr 03 '23 03:04 luoruofeng

I don't know when the protocal property of the VNCFactory type is called. After running my program, there were no errors reported, but no pages were displayed either. I think this may be due to my lack of understanding of the internal workings of twisted. The vnc_connection_made method in the RFBToGUI class was not called when I ran the code, and I'm not sure how to trigger its invocation.

if depth == 32: self.protocol = RFBToGUI elif depth == 8: self.protocol = RFBToGUIeightbits

class RFBToGUI(pyVNC.rfb.RFBClient): ...... def vnc_connection_made(self):

luoruofeng avatar Apr 03 '23 09:04 luoruofeng