Thanks - yeah - getting the xml in a text file would be great as I could search for strange characters.
Also - I have a question, I'd like to add commands like view live tv etc. I was looking at the xml code to see what I'd need to edit and it looks pretty straight forward. (I use to program aLOT in pascal in the olden days).
anyway where do you get a list of all the XBMC strings... like
<cmdString>ExecBuiltin(ActivateWindow(MusicLibrary,Songs))</cmdString>
musiclibrary,songs ? Appears there are some executables built in... is there a list of them that can be called?
I'd like to find the TV/channels built ins. I could then edit your code to add my own vox commands.
Hi Rojoyinc,
Currently Vox Commando uses XBMC's HTTP API found here
http://wiki.xbmc.org/index.php?title=Web_Server_HTTP_APIWhen you scroll down abit you will find the Command Tables Reference.
Here you will basicly find everything you need.
To talk specificly about the ExecBuiltin command, you can find it's functions and explaination here
http://wiki.xbmc.org/index.php?title=List_of_Built_In_FunctionsFor instance :
ActivateWindow(window[,dir,return])
Opens the given window. The parameter window can either be the window's id, or in the case of a standard window, the window's name. See here for a list of window names, and their respective ids. If, furthermore, the window is Music, Video, Pictures, or Program files, then the optional dir parameter specifies which folder XBMC should default to once the window is opened. This must be a source as specified in Sources.xml, or a subfolder of a valid source. For some windows (MusicLibrary and VideoLibrary), the return parameter may be specified, which indicates that XBMC should use this folder as the "root" of the level, and thus the "parent directory" action from within this folder will return the user to where they were prior to the window activating. On Xbox, the special command ActivateWindow(MyFiles,autodetection) opens the filemanager with the autodetected Xbox in the left hand pane.
I'm fairly new this this also so I hope this is helpfull to you.
Correct me if I'm wrong james
Regards
Auri