Re: combine pictures

2013-09-24 Thread andypu
Oh i thaught maybe python comes with something native, bevore i install something new i think i might better look into if kivy can do the job - thats allready installed... -- https://mail.python.org/mailman/listinfo/python-list

combine pictures

2013-09-24 Thread andypu
hello, i have a picture and i want to merge it with an other picture which is half transparent and the first picture will shine through it, has python the library's to do this? -- https://mail.python.org/mailman/listinfo/python-list

Re: parse list recurisively

2013-09-23 Thread andypu
i have a list and i want to search for a certain string and replace it. i think i got it now... sbxe1 = list([['type','ter','lala'],'name']) def parsesb(lis, string, replacement): for num, nam in enumerate (lis): if type(nam) == list: parse

Re: parse list recurisively

2013-09-23 Thread andypu
thanks i was not able to figure it out some days before but now i think i can do it myself: a nice function that searches a string in a list. def parsesb(lis, string): print lis for num, nam in enumerate (lis): print num, nam if type(nam) == list:

parse list recurisively

2013-09-23 Thread andypu
Hello, i use a load of lists and often i dont know how deep it is, how can i parse that lists elegantly (without a bunch of for loops) -- https://mail.python.org/mailman/listinfo/python-list

Animations and images with use for commercial license

2013-09-22 Thread andypu
Hello all, I am designing a roleplay game, right now i think i might go into the anime direction and style it accordingly... how do i get animations and images to give it a nice feeling. Where do you get your graphics from for such kind of games do you paint them yourself? -- https://mail.pyth