[Vnc2swf-users] version 0.7.2 bug and feature suggestions
Status: Alpha
Brought to you by:
euske
From: <lfk...@ya...> - 2005-11-18 13:23:43
|
Still needs to fix the protocol version handshake: I posted a message previously about it but here it goes again. First the client should read the maximum protocol version the server is able to understand. And then the client should send the protocol version it wants to use. The problem occurs with UltraVnc because the server sends version 3.6. The client should send version 3.3 and assume that the handshaked version is 3.3. But pvnc2swf is assuming 3.6 and it's not working! A few suggestions: - add a "Stop" action tag at the last frame my suggestion is to change the "close" method in "class SWFOutputStream" as follows: ################################# def close(self): #stop self.writer.start_action() self.writer.do_action(7) self.writer.end_action() #show frame self.writer.start_tag() self.writer.end_tag(1) MovieOutputStream.next_frame(self) MovieOutputStream.close(self) if self.writer: self.writer.start_tag() self.writer.end_tag(0) self.writer.write_file(self.output_frames) self.writer = None self.info.generate_html() return ###################################### - add a navigation bar with play, pause, rewind buttons and a slider to move quickly forward and backwards and show the elapsed time since the begining. - track the cursor separately - animate the cursor clicks Luis Fernando _______________________________________________________ Yahoo! Acesso Grátis: Internet rápida e grátis. Instale o discador agora! http://br.acesso.yahoo.com/ |