[Tutor] lan with python

2008-02-10 Thread Treloar, Nick
hey i was just wondering if any one could tell me if they know if you can make multi player games through lan with python heres the code i want to lan. just hash out the sound files #NiCk TrEloaR PrOgRaMiNg Co. #scissors paper rock #10/6/07 from Tkinter import* import pygame from random im

[Tutor] (no subject)

2007-05-29 Thread Treloar, Nick
how do you import sounds This message is intended for the addressee named and may contain privileged information or confidential information or both. If you are not the intended recipient please delete it and notify the sender. ___ Tutor maillist -

[Tutor] were do i put the random number genorator

2007-05-10 Thread Treloar, Nick
i am tyin to make a number guesing game were do i put the random genorator it the top of each child screen def here is my code from Tkinter import* root = Tk() root.title("main screen") root.maxsize(width=350,height=200) root.minsize(width=350,height=200) root.resizable(width=YES,height=YES) def

[Tutor] random number guessing game

2007-05-08 Thread Treloar, Nick
i am tying to buil a program using child screens the program is going the make a random number and the user has to guess it . so far i have made the gui but how do i progame it to make the random number This message is intended for the addressee named and may contain privileged information or

[Tutor] number guessing game

2007-05-08 Thread Treloar, Nick
here is my code so far from Tkinter import* root = Tk() root.title("main screen") root.maxsize(width=350,height=200) root.minsize(width=350,height=200) root.resizable(width=YES,height=YES) def child1(): c1 = Toplevel(root) c1.guess_ent = Entry(c1, width = 35,) c1.guess_ent.grid(row = 1