Sorry I didn't realize anyone else responded to this post
ExtremeAudio
No problem, there may be better ways, but this is what I did to add the File Manager to my home menu as a main menu item.
Note that I am new at this so not everything may work correctly, for example submenu's, etc. but this could at least get you started.
You are correct, the IncludesVIPmenu.xml is the file to use.
Within this file you will see a whole bunch of <item id="#"> tags
Choose where you want the NEW item to appear on your list by placing the following code between the "item id" tags you desire to place this NEW item.
CODE TO USE:
Code:
<item id="90">
<label>FILE MANAGER</label>
<label2>Files</label2>
<icon>special://skin/backgrounds/filemanager.jpg</icon>
<onclick>ActivateWindow(filemanager)</onclick>
<visible>[SubString(skin.string(settingsfilemanager.submenu),on) | Skin.HasSetting(custommode)]</visible>
</item>
CODE EXPLAINED (AS BEST I CAN AT THE MOMENT):
Code:
<item id="90">
The id number here can be what ever you want it to be, as long as it is not already used
<label>FILE MANAGER</label>
This is what the main menu item will display, you can change it to anything you want.
<label2>Files</label2>
This is what the little description under the main label say, to the right of the little colored box graphic, you can change this to whatever you want.
<icon>special://skin/backgrounds/filemanager.jpg</icon>
This links the background image that displays when you have menu item selected.
I created an image named "filemanager.jpg" and placed it in the "backgrounds" folder within the ace skin folder
<onclick>ActivateWindow(filemanager)</onclick>
This links the file manager location to the menu item itself
<visible>[SubString(skin.string(settingsfilemanager.submenu),on) | Skin.HasSetting(custommode)]</visible>
This one will need to be edited if you want the file manager main menu item to have a submenu like all the other items.
This code is currently not correct.
I personally removed all my submenu's so this does not affect my setup, but may mess with yours.
</item>
This closes the "item" tag
As a rule of thumb, make a copy of your xml file (IncludesVIPmenu.xml) before you edit it just in case, this way you can always revert back if things don't work out correctly.
Anyways hope this helps