Editing XMBML Folder Trees
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 3: | Line 3: | ||
First create the root XMB item which acts as a folder | First create the root XMB item which acts as a folder | ||
{{Boxcode| | {{Boxcode|content=<syntaxhighlight lang="xml"> | ||
<View id="root"> | <View id="root"> | ||
<Attributes> | <Attributes> | ||
Line 28: | Line 28: | ||
In order to create a working XMB sub menu the root xmb item must have its 'src' linking to a "container" (its the best way to think about it) and not directly linking to XMB items in the sub menu.( If you do not do this when you select your root XMB item to display a sub menu, the 'output' or 'action' of the XMB items of the sub menu will be shown rather than the actual XMB items): | In order to create a working XMB sub menu the root xmb item must have its 'src' linking to a "container" (its the best way to think about it) and not directly linking to XMB items in the sub menu.( If you do not do this when you select your root XMB item to display a sub menu, the 'output' or 'action' of the XMB items of the sub menu will be shown rather than the actual XMB items): | ||
{{Boxcode| | {{Boxcode|content=<syntaxhighlight lang="xml"> | ||
<View id="seg_folder_tree_main_container"> | <View id="seg_folder_tree_main_container"> | ||
<Items> | <Items> | ||
Line 42: | Line 42: | ||
Now to create the segment which holds the sub menu items: | Now to create the segment which holds the sub menu items: | ||
{{Boxcode| | {{Boxcode|content=<syntaxhighlight lang="xml"> | ||
<View id="seg_folder_tree_main_contents"> | <View id="seg_folder_tree_main_contents"> | ||
<Attributes> | <Attributes> |