Re: [Tutor] file/subprocess error

2009-06-10 Thread Essah Mitges
But will it work I run 3 module for this game utilites is just 1 > To: tutor@python.org > From: alan.ga...@btinternet.com > Date: Wed, 10 Jun 2009 23:57:35 +0100 > Subject: Re: [Tutor] file/subprocess error > > "Essah Mitges&

Re: [Tutor] subprocess/files help

2009-06-10 Thread Essah Mitges
so on > From: sri...@gmail.com > Date: Wed, 10 Jun 2009 17:16:43 -0500 > Subject: Re: [Tutor] subprocess/files help > To: e_mit...@hotmail.com > CC: tutor@python.org > > On Wed, Jun 10, 2009 at 4:21 PM, Essah Mitges> wrote: > > > > > The p

Re: [Tutor] gui

2009-06-10 Thread Essah Mitges
thx lol fixed part of the problem > To: tutor@python.org > From: lie.1...@gmail.com > Date: Wed, 10 Jun 2009 13:24:48 +1000 > Subject: Re: [Tutor] gui > > Essah Mitges wrote: >> 1. >> Traceback (most recent call last): &g

Re: [Tutor] gui further explained

2009-06-09 Thread Essah Mitges
start the game this is basicly the menu i want people to see first the main menu From: sri...@gmail.com Date: Tue, 9 Jun 2009 21:48:28 -0500 Subject: Re: [Tutor] gui further explained To: e_mit...@hotmail.com CC: tutor@python.org On Tue, Jun 9, 2009 at 7:18 PM, Essah Mitges wrote: lol

Re: [Tutor] gui further explained

2009-06-09 Thread Essah Mitges
> > On Tue, Jun 9, 2009 at 6:49 PM, Essah Mitges> wrote: > > > > > What I am trying to do is start my pygame game from my pygame menuI do not > think I am using the right code to do this I am trying to use the subprocess > module to open a child window with the

Re: [Tutor] gui further explained (The error in unreadable form)

2009-06-09 Thread Essah Mitges
hotmail.com > CC: tutor@python.org > Subject: Re: [Tutor] gui further explained (The error in unreadable form) > > Essah Mitges wrote: >> What I am trying to do is start my pygame game from my pygame menuI do not >> think I am using the right code to do this I am trying to

[Tutor] gui further explained

2009-06-09 Thread Essah Mitges
What I am trying to do is start my pygame game from my pygame menuI do not think I am using the right code to do this I am trying to use the subprocess module to open a child window with the game inside of it but python doesn't like thatThe second thing that i'd like to know how I could list th

Re: [Tutor] gui

2009-06-09 Thread Essah Mitges
cannot find the file specifiedThe error in readable form > To: tutor@python.org > From: alan.ga...@btinternet.com > Date: Tue, 9 Jun 2009 23:35:04 +0100 > Subject: Re: [Tutor] gui > > > "Essah Mitges" wrote > >> What I am trying to do is using a pygame

Re: [Tutor] gui

2009-06-09 Thread Essah Mitges
ad of html.. If > you can not send in plain text then use a pastebin like > python.pastebin.com to show your code and/or error messages. > > Greets > Sander > > On Tue, 2009-06-09 at 17:41 -0400, Essah Mitges wrote: >> I was wondering in a python made in pyg4m3 menu ho

[Tutor] gui

2009-06-09 Thread Essah Mitges
I was wondering in a python made in pyg4m3 menu how to initialize another pyg4m3 Destruction.py from a button in the event handler this is the error i keep gettingTraceback (most recent call last): File "C:\Users\John Doe\Desktop\Destruction\back.py", line 47, in main() File "C:\Users\Jo

Re: [Tutor] gui menu

2009-06-07 Thread Essah Mitges
: Essah Mitges To: alan.ga...@btinternet.com Sent: Sunday, 7 June, 2009 10:32:27 PM Subject: RE: [Tutor] gui menu http://osdir.com/ml/python.pygame/2002-11/msg00051.htmlI'm using this to try to program the buttons I'm tying to make 4 class to make a module called but.pyWhen i tryed

[Tutor] gui menu

2009-06-07 Thread Essah Mitges
import sys, pygame pygame.init() background = pygame.image.load(""My png image 800x 532) backgroundRect = background.get_rect() size = (width, height) = background.get.size() screen = pygame.display.set_mode(size) screen.blit(background, backgroundRect) pygame.display.flip() I want to use pygame t

[Tutor] gui problem

2009-06-06 Thread Essah Mitges
from math import sin, cos, pi import pygame displayWidth = 640displayHeight = 480fpsLimit = 90 def sinInterpolation(start, end, steps=30):values = [start]delta = end - startfor i in range(1, steps):n = (pi / 2.0) * (i / float(steps - 1))values.append(start + delta *