Eclectic wrote:none of these W, O, R, L, D files play - corrupt data?
No, non-existent data

. The demo just shows how the menus work for anyone interested in writing their own scripts.
Eclectic wrote:XBMC folder already present in %appdata%/roaming
Jumpy uses python's sys module to identify the platform, and may or may not have an issue with identifying Windows Home Server. The relevant code is in
jumpy\xbmc\xbmcinit.py:
- Code: Select all
elif platform.startswith('win32'):
_special['home'] = os.getenv('APPDATA') + '\\XBMC'
You can hack this to force execution of this conditional:
- Code: Select all
elif True:
_special['home'] = os.getenv('APPDATA') + '\\XBMC'
and make sure your XBMC folder is wherever %appdata%\XBMC works out to be on your server. If you want to check what python thinks the os is, open a python console (execute python.exe) and see what you get as output after these 2 commands:
- Code: Select all
>>> import sys
>>> print sys.platform
and if it doesn't start with 'win32' I can add another test to xbmcinit.py to cover the situation.