Talk:XMBML Coding Examples: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
|||
Line 4: | Line 4: | ||
===Disabling icons for "XMB in-game" mode=== | ===Disabling icons for "XMB in-game" mode=== | ||
{{Boxcode| | {{Boxcode|code=<syntaxhighlight lang="xml"> | ||
<?xml version="1.0" encoding="UTF-8"?> | <?xml version="1.0" encoding="UTF-8"?> | ||
Latest revision as of 05:10, 30 August 2021
Others that doesnt worths a page[edit source]
Disabling icons for "XMB in-game" mode[edit source]
<?xml version="1.0" encoding="UTF-8"?> <!-- ORIGINAL, the query is not linked to an attribute table --> <XMBML version="1.0"> <View id="root"> <Items> <Query class="type:x-xmb/folder-pixmap" key="seg_gamedata" src="#seg_gamedata" /> </Items> </View> </XMBML> <!-- HIDDEN INGAME, the query has been linked to an attribute table, containing the attribute to disable the query ingame --> <XMBML version="1.0"> <View id="root"> <Attributes> <Table key="gamedata"> <Pair key="ingame"><String>disable</String></Pair> </Table> </Attributes> <Items> <Query class="type:x-xmb/folder-pixmap" key="seg_gamedata" src="#seg_gamedata" attr="gamedata" /> </Items> </View> </XMBML>