Forum: Python Feb 8th, 2008 |
| Replies: 8 Views: 1,530 The only GUI toolkit built-in to Python is Tk. (And Tcl/Tk most definitely does work on the iPod!)
I know next to nothing about the iPod. Is it an embedded OS?
In any case, it is certainly... |
Forum: Python Feb 5th, 2008 |
| Replies: 2 Views: 1,109 I think what you are looking for is the overrideredirect flag. This tells the wm to buzz-off.
It is generally used for pop-up windows (like balloon pop-ups, menus, etc.).
It is generally a Bad... |
Forum: Python Jan 23rd, 2008 |
| Replies: 6 Views: 3,038 Sorry again... :$
Nice catch on the type of input. |
Forum: Python Jan 23rd, 2008 |
| Replies: 6 Views: 3,038 Vegaseat, you really ought to try to give people an idea instead of just writing code for them. People learn better when they can solve the problem themselves. A little direction --a nudge this way... |
Forum: Python Jan 17th, 2008 |
| Replies: 5 Views: 2,085 I feel like a total geek. I always use python straight from the command-line. |
Forum: Python Jan 15th, 2008 |
| Replies: 5 Views: 2,085 I don't have Vista, so I can't exactly identify what part of the OS is giving you the problem.
IDLE uses a feedback loop socket. This is a weird thing to do, so antivirus and internet access... |
Forum: Python Jan 12th, 2008 |
| Replies: 5 Views: 2,640 There is no button in graphics.py. How exactly are you trying to create one? |
Forum: Python Jan 6th, 2008 |
| Replies: 3 Views: 2,000 Unfortunately, the "Julian Day Number" is one of those terms I mentioned (or rather, it is often abused to mean "the day of the year").
Fortunately it looks like that link uses the JDN correctly!... |
Forum: Python Jan 4th, 2008 |
| Replies: 3 Views: 2,000 Python deals only with the Gregorian calendar. Certain terms (like "Julian") can be properly applied to specific things withing the Gregorian system, but the Julian calendar it is not.
Usually the... |
Forum: Python Oct 24th, 2007 |
| Replies: 2 Views: 1,044 Use the ord function.
print ord('A')
Prints the number 65 to the console.
Hope this helps. |