[Audyssey] Python 2.7

2016-02-18 Thread ishan dhami
Hi programmers! I am just stuck in Python 2.7 I am reading a bite of Python by Swaroop It is a great book indeed. So My question is that After the value has changed of environment variable then why I am not able to open Python from the command line However I write print " hello world" and it will g

Re: [Audyssey] Python 2.7

2016-02-18 Thread jacob Kruger
Do you get the standard error message if you just type in python from command line? 'python' is not recognized as an internal or external command, operable program or batch file. If you just type in path at command line, and hit enter, it should print out the whole value, with each piece separ

Re: [Audyssey] Python 2.7

2016-02-18 Thread ishan dhami
Hi Jacob Yes this error is coming whenever I open Python from command line Please guide me how to solve that Thanks Ishan On 2/18/16, jacob Kruger wrote: > Do you get the standard error message if you just type in python from > command line? > > 'python' is not recognized as an internal or extern

Re: [Audyssey] Python 2.7

2016-02-18 Thread jacob Kruger
What's currently in your path environment variable? Jacob Kruger Blind Biker Skype: BlindZA "Roger Wilco wants to welcome you...to the space janitor's closet..." On 2016-02-18 12:35 PM, ishan dhami wrote: Hi Jacob Yes this error is coming whenever I open Python from command line Please guide me

Re: [Audyssey] Python 2.7

2016-02-18 Thread ishan dhami
Hi Jacob according to the book The varriable should Like that %SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;C:\Python27 ( Is this right or Should I change other varriable's value Thanks Ishan On 2/18/16, jacob Kruger wrote: > What's currently in your path environment va

Re: [Audyssey] bgt operator overloading question

2016-02-18 Thread john
Seems to be a nogo. I'd be surprised if that was the issue; handles are close enough to objects for it to not matter as function parameters in my experience. -- From: "Aaron Baker" Sent: Wednesday, February 17, 2016 19:51 To: "Gamers Discussion lis

Re: [Audyssey] bgt operator overloading question

2016-02-18 Thread Aaron Baker
Hello, Did you actually try it? I know that that can make the difference between runtime error and no runtime error. I thought it was kind of odd too, but it is usually bad practice to pass an object by value anyway. If you're worried about the object changing, you might be able to write it as "con

[Audyssey] Python

2016-02-18 Thread Leo Cantos
Do you recommend any kind of manuals or practice materials that I might be able to use to begin to learn python? Thanks, Leo --- Gamers mailing list __ Gamers@audyssey.org If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org. You can make changes or update your s

Re: [Audyssey] Python 2.7

2016-02-18 Thread jacob Kruger
You don't want to change any of the others, but, just make sure c:\python27 is included either at the end, or in the beginning, separated from other values using the ; character. Stay well Jacob Kruger Blind Biker Skype: BlindZA "Roger Wilco wants to welcome you...to the space janitor's closet

Re: [Audyssey] bgt operator overloading question

2016-02-18 Thread john
After taking a closer look at the code, it appears my case changes were still in place. Setting it to a handle does indeed work, thanks for the help, and sorry for being that obtuse. -- From: "Aaron Baker" Sent: Thursday, February 18, 2016 8:20 To

[Audyssey] Python 2 and 3

2016-02-18 Thread Leo Cantos
Hello, I would like to know the differences between python 2 and python 3 when it comes to making audiogames? That would help me to decide what I need to get to start learning python. Also, which interpreter do you use? Panda 3d, or that other one that was mentioned in a previou

[Audyssey] For all FSX private GA flight pilots.

2016-02-18 Thread Ron Kolesar
Hello to you who use Microsoft Flight Simulator version ten gold. Also known by FSX-Gold or simply now days by FSX. I know the bird to fly for private flights is the dassault falcon 7x. Well, in the real world as I write this letter to my fellow pilots. In the real world Dassault

Re: [Audyssey] Python 2 and 3

2016-02-18 Thread jacob Kruger
Leo, this discussion might be better suited to the developers' list, but, I myself, just use the standard python interpreter, and use edSharp for writing the python code - it's just a programmer's text editor, with a bit of additional screen reader support built in. Tom's developer's mailing l

Re: [Audyssey] AudioQuake

2016-02-18 Thread Cara Quinn
Hi Dakotah, Can you point me to the link where you got that copy of AQ? It has been quite a while since I installed a mod to a pre-built copy of the game, so I will need to take a quick look at the folder structure to refresh my memory. I’ll keep looking around here to see if I have an old cop

Re: [Audyssey] For all FSX private GA flight pilots.

2016-02-18 Thread Tobias Vinteus
Hi, What does that acronym P3D stand for? IYP is obviously It's Your Plane - that voice control plugin for FSX. On Thu, 18 Feb 2016, Ron Kolesar wrote: Hello to you who use Microsoft Flight Simulator version ten gold. Also known by FSX-Gold or simply now days by FSX. I know the bird to fly

Re: [Audyssey] For all FSX private GA flight pilots.

2016-02-18 Thread Ron Kolesar
The best that I found out on the insternet to answer yourquestion si Lockheed Martin - Prepar3D. I would stay with Microsoft Flight simulator version Ten Gold, which now days is better known by either fsx-gold and even better by simply FSX. Hope this answers your question. Ronwho's known in the

Re: [Audyssey] Python

2016-02-18 Thread Tim
This site and email list might help you learn python, Link to the PythonVis lists website: http://www.freelists.org/webpage/pythonvis At 10:02 AM 2/18/2016, you wrote: Do you recommend any kind of manuals or practice materials that I might be able to use to begin to learn python? Thanks,

Re: [Audyssey] bgt operator overloading question

2016-02-18 Thread Paul Lemm
Hi Aaron and John, This is something that has had me stuck for a while now. As in a game I have written, I have created a class, and then created an aray of that class, but want to sort the array so it is alphabetical. I've read the help topic on sorting arrays which makes sense for sorting a

Re: [Audyssey] bgt operator overloading question

2016-02-18 Thread Aaron Baker
opCmp wants you to return a positive number if the source object is greater than the parameter passed, 0 if they are equal, and -1 if the source object is less than the parameter. You can use the less than and greater than operator on strings, so the rest should be obvious. One not so obvious compl

Re: [Audyssey] Python 2.7

2016-02-18 Thread ishan dhami
Hi Jacob Have you looked at my varriable value? I just want to confirm that if it is right then why Python gives me the standard error. Please tell me whether I have to edit the value of power shell varriable. I have pasted the varriable value Thanks Ishan On 2/18/16, jacob Kruger wrote: > You do

Re: [Audyssey] AudioQuake

2016-02-18 Thread Dakotah Rickard
It's just a zipped archive. No install necessary. Go to www.audiogames.net, use the combo box to scroll down to audioquake, click the home page link from there. I got your jediquake41 mod from a link there as well. On 2/18/16, Cara Quinn wrote: > Hi Dakotah, > > Can you point me to the link where

Re: [Audyssey] AudioQuake

2016-02-18 Thread Tobias Vinteus
How much luck have people been having with the regular Quake levels and expansion packs? Also, when trying out previous versions of Audioquake, I experienced crashes when restoring saved games. Is this situation better now witht he newer builds? On Wed, 17 Feb 2016, Dakotah Rickard wrote:

Re: [Audyssey] Python 2.7

2016-02-18 Thread jacob Kruger
Think they want you to add that set of values to path environment variable, making sure they're also separated from prior entries by a ; character. And, I only worry about the actual path to python.exe itself, when working with python 2.7. Jacob Kruger Blind Biker Skype: BlindZA "Roger Wilco