Talk:XMBML Coding Examples

From PS3 Developer wiki
Jump to navigation Jump to search

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>