Re: Accessible_output2 does not compile

2015-10-29 Thread AudioGames . net Forum — Developers room : Rocky Waters via Audiogames-reflector
Re: Accessible_output2 does not compile Made progress.  The fault is connected with the autos module.  I can get the AO2 module working and compiling, but not the auto() method from the autos module I was using.  Code to follow, if anyone has a fix for the auto() method let me know:method1

Re: Accessible_output2 does not compile

2015-10-29 Thread AudioGames . net Forum — Developers room : dhruv via Audiogames-reflector
Re: Accessible_output2 does not compile (venv) C:\Users\diggle\projects\scroller>python Python 2.7.10 (default, May 23 2015, 09:40:32) [MSC v.1500 32 bit (Intel)] on wi n32 Type "help", "copyright", "credits" or "license" for more inform

Re: Accessible_output2 does not compile

2015-10-29 Thread AudioGames . net Forum — Developers room : SoundMUD via Audiogames-reflector
Re: Accessible_output2 does not compile In accessible output, py2exe_datafiles() had to be sent to the data_files parameter.data_files = ['sounds', ('blah.wav', 'woot.wav')] + accessible_output.py2exe_datafiles(),Maybe here it's the same but with ao2.find_datafiles() or accessible_output2

Re: Accessible_output2 does not compile

2015-10-27 Thread AudioGames . net Forum — Developers room : dhruv via Audiogames-reflector
Re: Accessible_output2 does not compile You need libloader and platform_utils. Gotten from the same website you got AO2 from.You also need to figure out a way to bundle dll files alongside your project. This must be done for AO2 and other products, you can use the interpreter to find out

Re: Accessible_output2 does not compile

2015-10-27 Thread AudioGames . net Forum — Developers room : Rocky Waters via Audiogames-reflector
Re: Accessible_output2 does not compile Yes, there are 2 dependencies, I installed both platform_utils and libloader before installing AO2.  AO2 is up and working fine.  Pyinstaller produces a distribution folder, it calls dist, for each of my projects that it compiles.  Each project

Re: Accessible_output2 does not compile

2015-10-27 Thread AudioGames . net Forum — Developers room : CAE_Jones via Audiogames-reflector
Re: Accessible_output2 does not compile Does it require something like the MS Visual C++ runtime resistributable? URL: http://forum.audiogames.net/viewtopic.php?pid=236400#p236400 ___ Audiogames-reflector mailing list Audiogames-reflector

Re: Accessible_output2 does not compile

2015-10-27 Thread AudioGames . net Forum — Developers room : SoundMUD via Audiogames-reflector
Re: Accessible_output2 does not compile Maybe this thread can help:http://forum.audiogames.net/viewtopic.p … 42#p178042 URL: http://forum.audiogames.net/viewtopic.php?pid=236411#p236411 ___ Audiogames-reflector mailing list Audiogames

Re: Accessible_output2 does not compile

2015-10-26 Thread AudioGames . net Forum — Developers room : momo7807 via Audiogames-reflector
Re: Accessible_output2 does not compile HiFirst, can you explain it in more detail?Next, I don't use python 2.7Also, accessible_output 2? Can you tell me the detailed version? How did you install it? Hmmm I've installed accessible_output 0.7.8, by typing easy_install accessible_output.And

Re: Accessible_output2 does not compile

2015-10-26 Thread AudioGames . net Forum — Developers room : CAE_Jones via Audiogames-reflector
Re: Accessible_output2 does not compile IIRC, accessible_output2 had another dependency? I don't remember what it was, but it's probably on the same site, or pipy. If you can paste any error messages, that might help. URL: http://forum.audiogames.net/viewtopic.php?pid=236322#p236322

Accessible_output2 does not compile

2015-10-26 Thread AudioGames . net Forum — Developers room : Rocky Waters via Audiogames-reflector
Accessible_output2 does not compile I am using python 2.7, and so far all my projects are compiling fine with pyinstaller.  Accessible_output2 is working fine in my python scripts and works fine using pygame.  However it does not compile properly for me.  Is this a known issue