Talk:XMBML Coding Examples: Difference between revisions
Jump to navigation
Jump to search
(Created page with " ==Others that doesnt worths a page== ===Disabling icons for "XMB in-game" mode=== {{Boxcode|content=<syntaxhighlight lang="xml"> <?xml version="1.0" encoding="UTF-8"?> <!...") |
mNo edit summary |
||
(One intermediate revision by the same user not shown) | |||
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"?> | ||
<!-- ORIGINAL, is not linked to an attribute table --> | <!-- ORIGINAL, the query is not linked to an attribute table --> | ||
<XMBML version="1.0"> | <XMBML version="1.0"> | ||
<View id="root"> | <View id="root"> | ||
Line 20: | Line 20: | ||
</XMBML> | </XMBML> | ||
<!-- HIDDEN INGAME, has been | <!-- HIDDEN INGAME, the query has been linked to an attribute table, containing the attribute to disable the query ingame --> | ||
<XMBML version="1.0"> | <XMBML version="1.0"> | ||
<View id="root"> | <View id="root"> |
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>