2010-03-24, 01:51
Before updating to Camelot (and Confluence) I used a version of the Aeon skin. A feature I found very useful was the “Kiosk Mode” which allowed you to turn off the menus which change the views in the media screens (ie the menu bars that slide out from the left-hand side). Here is a mod I did to bring that functionality to Confluence – once you turn on the setting (SYSTEM-Skin-General) the left slide-out menu will no longer appear when you press left or up. I hope some other people out there find it useful:
Its not too hard to implement if you know where to look.
STEP 1: Edit custom_SkinSetting_1111.xml (back it up first) and after line 197 add this control:
<control type="radiobutton" id="1010">
<width>750</width>
<height>40</height>
<font>font13</font>
<label>Enable Kiosk Mode (disable slideout menu)</label>
<textcolor>grey2</textcolor>
<focusedcolor>white</focusedcolor>
<texturefocus>MenuItemFO.png</texturefocus>
<texturenofocus>MenuItemNF.png</texturenofocus>
<onclick>Skin.ToggleSetting(kiosk)</onclick>
<selected>Skin.HasSetting(kiosk)</selected>
</control>
STEP 2: Edit MyVideoNav.xml (back it up first) and after line 4 (<views>50,500,501...etc</views>) add the following on a new line:
<visible>!Skin.HasSetting(kiosk)</visible>
STEP 3: Repeat Step 2 for MyMusicNav.xml and MyPics.xml (and to reiterate, back them up first)
Now you can toggle Kiosk Mode on and off by going to SYSTEM > SKIN > GENERAL and its up the top under ‘Miscellaneous’.
Note: This mod also disables the scroll bars - you can still see them, you just can't 'select' them for ultra-fast scrolling.
Its not too hard to implement if you know where to look.
STEP 1: Edit custom_SkinSetting_1111.xml (back it up first) and after line 197 add this control:
<control type="radiobutton" id="1010">
<width>750</width>
<height>40</height>
<font>font13</font>
<label>Enable Kiosk Mode (disable slideout menu)</label>
<textcolor>grey2</textcolor>
<focusedcolor>white</focusedcolor>
<texturefocus>MenuItemFO.png</texturefocus>
<texturenofocus>MenuItemNF.png</texturenofocus>
<onclick>Skin.ToggleSetting(kiosk)</onclick>
<selected>Skin.HasSetting(kiosk)</selected>
</control>
STEP 2: Edit MyVideoNav.xml (back it up first) and after line 4 (<views>50,500,501...etc</views>) add the following on a new line:
<visible>!Skin.HasSetting(kiosk)</visible>
STEP 3: Repeat Step 2 for MyMusicNav.xml and MyPics.xml (and to reiterate, back them up first)
Now you can toggle Kiosk Mode on and off by going to SYSTEM > SKIN > GENERAL and its up the top under ‘Miscellaneous’.
Note: This mod also disables the scroll bars - you can still see them, you just can't 'select' them for ultra-fast scrolling.