How to disable vertical menu on install? - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67) +---- Forum: Skin Archive (https://forum.kodi.tv/forumdisplay.php?fid=179) +----- Forum: Cirrus Extended (https://forum.kodi.tv/forumdisplay.php?fid=133) +----- Thread: How to disable vertical menu on install? (/showthread.php?tid=282780) |
How to disable vertical menu on install? - oldgit9 - 2016-07-15 can someone please help me. im a bit of a noob when it comes to .xml code and i would appreciate the help. basically, im making my own build and i am using cirrus extended as the skin. mainly coz i like it and im sick and tired of all the nox builds. my issue is, my build will only suite the horizontal menu format. the vertical will simply not work. what i would like to happen, when someone installs the build, that the default menu, will be horizontal and not vertical. is there a way to change this setting via the xml code? i know you can do it via the settings screen, but i will be disabling that option and only have the menu bar in the horizontal view. thanks RE: How to disable vertical menu on install? - Rufoo - 2016-07-16 (2016-07-15, 11:22)oldgit9 Wrote: can someone please help me. im a bit of a noob when it comes to .xml code and i would appreciate the help. This isn't just a simple setting. Most of what you are looking for is in the files like Home.xml, IncludesHomeXXX.xml. The default state (ie: no option toggled on Home) is Leftlist. Picking the option of Horizontal Home informs the skin to switch from its default state to the selected state, Lower Horizontal requires the Horizontal state to be selected first (thusly you cannot jump immediately from Leftlist to Lower Horizontal without enabling Horizontal first). You'd need to reorganise / change the order of the states which will appear as conditions in various include and visible tags in the XML files to achieve this. If you're not familiar with XML and skin editing then it may be beyond your grasp currently, however, if you're looking to just jump right in and get your hands dirty, you picked a good place to start. RE: How to disable vertical menu on install? - oldgit9 - 2016-07-16 thanks for the reply...can i PM RE: How to disable vertical menu on install? - Rufoo - 2016-07-17 (2016-07-16, 16:45)oldgit9 Wrote: thanks for the reply...can i PM You don't need to ask to PM. RE: How to disable vertical menu on install? - oldgit9 - 2016-07-17 It's only polite to ask first RE: How to disable vertical menu on install? - Rufoo - 2016-07-17 (2016-07-17, 07:44)oldgit9 Wrote: It's only polite to ask first Heh! True, true. RE: How to disable vertical menu on install? - paradix - 2016-07-18 I would do this by setting on load in Startup.xml the setting to for the horizontal menu. Code: <onload>Skin.SetBool(horzHomeMenu)</onload> RE: How to disable vertical menu on install? - oldgit9 - 2016-07-20 (2016-07-18, 13:03)paradix Wrote: I would do this by setting on load in Startup.xml the setting to for the horizontal menu. thank you Paradix...i will give it a go...much appriciated RE: How to disable vertical menu on install? - oldgit9 - 2016-08-01 (2016-07-18, 13:03)paradix Wrote: I would do this by setting on load in Startup.xml the setting to for the horizontal menu. sorry for the delay with my reply...had family stuff to sort out. i have tried what you have suggested, but i still can get it work i've attached a link to a screenshot of what ive done. is where ive placed the code correct? https://my.pcloud.com/publink/show?code=XZM97fZ9C5DTibNF08vXfkuhWsVazzsyk9V RE: How to disable vertical menu on install? - paradix - 2016-08-01 looks right what you did, and it works for me. After I start kodi the skin has the horizontal menu. RE: How to disable vertical menu on install? - oldgit9 - 2016-10-15 sorry for the latte reply...i honestly thought i did reply. yes it did work....it was just me being dumb and not restarting kodi thanks for your help and support |