Editing XMBML module-action
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 1: | Line 1: | ||
= | ==module-action example== | ||
This is an XMB command, typically this is utilised with the [[XMB XML Coding|XML code]] below: | |||
{{Boxcode|content=<syntaxhighlight lang="xml"> | |||
<View id="Entry_1"> | |||
<Attributes> | |||
<Table key="XMB_MODULE"> | |||
<Pair key="icon"><String>a valid entry for this pair key</String></Pair> | |||
<Pair key="title"><String>a valid entry for this pair key</String></Pair> | |||
<Pair key="info"><String>a valid entry for this pair key</String></Pair> | |||
<Pair key="module_name"><String>a valid entry for this pair key</String></Pair> | |||
<Pair key="module_action"><String>a valid entry for this pair key</String></Pair> | |||
</Table> | |||
</Attributes> | |||
<Items> | |||
<Item class="type:x-xmb/module-action" key="XMB_MODULE" attr="XMB_MODULE"/> | |||
</Items> | |||
</View> | |||
</syntaxhighlight>}} | |||
The list of | This is acts like a module (SPRX) intercom, allowing XML files to use/send commands to a selected module, so it can perform functions outside the limits of the module managing that XMB Category. | ||
The list of 'useable' modules is indexed in '''xmb_plugin.sprx''' (modules availables in main XMB) and '''xmb_ingame.sprx''' (modules availables in in-game XMB) and contains the Module Reference, the path to the module (.sprx file), and the path to the associated resource (.rco file). | |||
All the .sprx modules are stored in path: '''/dev_flash/vsh/module/''' and the .rco resource files in path: '''/dev_flash/vsh/resource/''' | All the .sprx modules are stored in path: '''/dev_flash/vsh/module/''' and the .rco resource files in path: '''/dev_flash/vsh/resource/''' | ||
Line 8: | Line 26: | ||
{{XMB_Indexed_Modules}} | {{XMB_Indexed_Modules}} | ||
= Common uses = | ===Common uses=== | ||
*explore_plugin.sprx | |||
Can be used to stub XMB items in {{Shop}} Firmware. All firmwares use this method to stub XMB items which have been stubbed. <small>With the exception of some XMB items which make "sel://" calls (such as "What's New") which have been left in-tact and Shop FW modules have only recently (4.30+?) blocked these calls returning the "This operation cannot be used during demonstration mode" message.</small> | |||
*webbrowser_plugin.sprx | |||
Can be used to create [[XMB XML Coding#A Web-Site link|website links]] | |||
Can be used to | |||
{{ | {{System Firmware}}<noinclude>[[Category:Main]]</noinclude> |