Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.80K
1 Posted Topic
Dont work for me in that way... the function curselection() returns a tuple not an integer. Like ('1',) So i made this work as follow [code=python] def call_back(self, event): self.zones = self.Lb1.curselection() if int(self.zones[0]) == 0: self.make_Red() if int(self.zones[0]) == 1: self.make_Blue() if int(self.zones[0]) == 2: self.make_Green() [/code]
The End.
eraseme