Comments on: Transcript 1 – Making a Barebones Pygame Program http://www.scriptedfun.com/transcript-1-making-a-barebones-pygame-program/ Game Programming for Beginners: Video Tutorials, Source Code, and Articles Mon, 18 May 2009 14:34:51 +0000 hourly 1 http://wordpress.org/?v=3.3.1 By: Don Ramsey http://www.scriptedfun.com/transcript-1-making-a-barebones-pygame-program/comment-page-1/#comment-19308 Don Ramsey Tue, 19 Aug 2008 00:55:50 +0000 http://www.scriptedfun.com/?p=17#comment-19308 Maybe you can help. I just started learning Python. I know virtually nothing about developing games. I,m a chocolate maker who designed his own webpages. Anyway,I downloaded the current Pygames. What I got was Pygames 1.8 "Documents and Examples" to go with my Python2.5. When I try to open the Docs and Examples in Pygame, all I get is the black screen appearing for a second. I can't "import" anything and forget "modules" - always comes back as error. I know this is a dumb question, but you gotta start learning somewhere. I'm working through "Python Programming" second edition, but even the enclosed CD (which is out of date) didn't help with Pygame and Livewires. Maybe it's too complicated for a dummy.Anxious to try your tutorial. Thanks. Don Maybe you can help. I just started learning Python. I know virtually nothing about developing games. I,m a chocolate maker who designed his own webpages. Anyway,I downloaded the current Pygames. What I got was Pygames 1.8 “Documents and Examples” to go with my Python2.5. When I try to open the Docs and Examples in Pygame, all I get is the black screen appearing for a second. I can’t “import” anything and forget “modules” – always comes back as error. I know this is a dumb question, but you gotta start learning somewhere. I’m working through “Python Programming” second edition, but even the enclosed CD (which is out of date) didn’t help with Pygame and Livewires. Maybe it’s too complicated for a dummy.Anxious to try your tutorial. Thanks. Don

]]>
By: jackthechemist http://www.scriptedfun.com/transcript-1-making-a-barebones-pygame-program/comment-page-1/#comment-19108 jackthechemist Tue, 12 Aug 2008 21:57:32 +0000 http://www.scriptedfun.com/?p=17#comment-19108 Really enjoyed your work. Trying to learn python in my spare time and thought it would be neat to write some games. This document has been most helpful and I look forward to the next part! (I don't have internet at my new house so I copied and printed the transcript :p ) Really enjoyed your work.
Trying to learn python in my spare time and thought it would be neat to write some games. This document has been most helpful and I look forward to the next part!
(I don’t have internet at my new house so I copied and printed the transcript :p )

]]>
By: YiannisValassakis http://www.scriptedfun.com/transcript-1-making-a-barebones-pygame-program/comment-page-1/#comment-11904 YiannisValassakis Sun, 23 Dec 2007 12:52:42 +0000 http://www.scriptedfun.com/?p=17#comment-11904 Thank you for the tutorials. They are invaluable for a starting game developer here...trying to work on a special needs children game with PyGame. Also, transcripts are great because one of my connections are 56K :(! Thank you for the tutorials. They are invaluable for a starting game developer here…trying to work on a special needs children game with PyGame. Also, transcripts are great because one of my connections are 56K :( !

]]>
By: Chuck http://www.scriptedfun.com/transcript-1-making-a-barebones-pygame-program/comment-page-1/#comment-946 Chuck Fri, 20 Oct 2006 13:11:01 +0000 http://www.scriptedfun.com/?p=17#comment-946 I haven't replied to people in a very long time, and for this I apologize. Thank you so much to everyone for visiting the site and leaving valuable feedback. Horst: Thank you so much for pointing out the errors in the way the code is presented on the web page. This is something I have to fix soon! Alex: Thank you for the encouragement! :) I hope to come up with more screencasts soon. Again, thank you so much! I haven’t replied to people in a very long time, and for this I apologize. Thank you so much to everyone for visiting the site and leaving valuable feedback.

Horst: Thank you so much for pointing out the errors in the way the code is presented on the web page. This is something I have to fix soon!

Alex: Thank you for the encouragement! :) I hope to come up with more screencasts soon.

Again, thank you so much!

]]>
By: Alex http://www.scriptedfun.com/transcript-1-making-a-barebones-pygame-program/comment-page-1/#comment-52 Alex Sat, 22 Jul 2006 02:38:34 +0000 http://www.scriptedfun.com/?p=17#comment-52 I recently left a comment but on the 2nd screencast page, probably the wrong place for it. Let me say, I think you are doing an excellent job here, and I love these screencasts! Are you making the fourth one soon? Can't wait for it! -Alex I recently left a comment but on the 2nd screencast page, probably the wrong place for it. Let me say, I think you are doing an excellent job here, and I love these screencasts! Are you making the fourth one soon? Can’t wait for it!

-Alex

]]>
By: Horst JENS http://www.scriptedfun.com/transcript-1-making-a-barebones-pygame-program/comment-page-1/#comment-47 Horst JENS Fri, 21 Jul 2006 18:51:05 +0000 http://www.scriptedfun.com/?p=17#comment-47 Hi, this video transcripts are really cool. I found a 'bug' in this html-site: the line: if __name__ == ‘__main__’: main() should be: if __name__ == '__main__': main() If using the the version with the backwards ticks (´ ) i got an encoding error (using drpython). please keep up the good work ! -Horst Hi, this video transcripts are really cool.
I found a ‘bug’ in this html-site:
the line:
if __name__ == ‘__main__’: main()
should be:
if __name__ == ‘__main__’: main()

If using the the version with the backwards ticks (´ ) i got an encoding error (using drpython).

please keep up the good work !
-Horst

]]>
1|2|3|4|5|6|7|8|9|10|11|12|13|14|15|16|17|18|19|20|21|22|23|24|25|26|27|28|29|30|31|32|33|34|35|36|37|38|39|40|41|42|43|44|45|46|47|48|49|50|51|52|53|54|55|56|57|58|59|60|61|62|63|64|65|66|67|68|69|70|71|72|73|74|75|76|77|78|79|80|81|82|83|84|85|86|87|88|89|90|91|92|93|94|95|96|97|98|99|100|101|102|103|104|105|106|107|108|109|110|111|112|113|114|115|116|117|118|119|120|121|122|123|124|125|126|127|128|129|130|131|132|133|134|135|136|137|138|139|140|141|142|143|144|145|146|147|148|149|150|151|152|153|154|155|156|157|158|159|160|161|162|163|164|165|166|167|168|169|170|171|172|173|174|175|176|177|178|179|180|181|182|183|184|185|186|187|188|189|190|191|192|193|194|195|196|197|198|199|200|201|202|203|204|205|206|207|208|209|210|211|212|213|214| no prescription antibiotics online online pharmacy no prescription astelin purchase lipitor medication eurax kaufen ohne rezept cheapest premarin without prescription purchase cheap maxalt cheap citalopram no prescription bactrim without prescription how to buy bupropion online no prescription buying actos with no prescriptionAccutane Online Doxycycline online Buy Cheap Lexapro Online No Prescription Prednisone Online Buy Accutane No Prescription