Kodi Community Forum
Aeon Madnox for Krypton / Jarvis - (no longer in development) - 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: Madnox (https://forum.kodi.tv/forumdisplay.php?fid=314)
+----- Thread: Aeon Madnox for Krypton / Jarvis - (no longer in development) (/showthread.php?tid=230821)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - fidofido300 - 2020-03-29

(2020-02-12, 23:08)meowmoo Wrote:
(2020-01-04, 22:37)paulsk2 Wrote: artist slideshow has been updated and no longer works with this skin . any chance anyone could be a hero and help fix this . been my favourite skin for years :-) so thanks for all the hard work :-)

Open the musicvisualization.xml

Search for ArtistSlideshow

You find something like this
Code:
<control type="multiimage"> <aspectratio>scale</aspectratio> <timeperimage>10000</timeperimage> <randomize>true</randomize> <fadetime>600</fadetime> <loop>yes</loop> <imagepath background="true">$INFO[Window(Visualisation).Property(ArtistSlideshow)]</imagepath> <visible>System.HasAddon(script.artistslideshow)</visible> </control>]

Replace it with that
Code:
<control type="image"> <aspectratio>scale</aspectratio> <fadetime>400</fadetime> <animation effect="fade" start="0" end="100" time="400">WindowOpen</animation> <animation effect="fade" start="100" end="0" time="300">WindowClose</animation> <texture background="true">$INFO[Window(Visualisation).Property(ArtistSlideshow.Image)]</texture> <visible>!String.IsEmpty(Window(Visualisation).Property(ArtistSlideshow.Image))</visible> </control>]
Hi Can you Be more specific there is nothing matching exactly in the \addons\skin.addon.madnox\1080i\MusicVisualisation.xml file
Thank you!!


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - Busta Uppa - 2020-03-30

(2020-03-29, 16:58)fidofido300 Wrote:
(2020-02-12, 23:08)meowmoo Wrote:
(2020-01-04, 22:37)paulsk2 Wrote: artist slideshow has been updated and no longer works with this skin . any chance anyone could be a hero and help fix this . been my favourite skin for years :-) so thanks for all the hard work :-)

Open the musicvisualization.xml

Search for ArtistSlideshow

You find something like this
Code:
<control type="multiimage"> <aspectratio>scale</aspectratio> <timeperimage>10000</timeperimage> <randomize>true</randomize> <fadetime>600</fadetime> <loop>yes</loop> <imagepath background="true">$INFO[Window(Visualisation).Property(ArtistSlideshow)]</imagepath> <visible>System.HasAddon(script.artistslideshow)</visible> </control>]

Replace it with that
Code:
<control type="image"> <aspectratio>scale</aspectratio> <fadetime>400</fadetime> <animation effect="fade" start="0" end="100" time="400">WindowOpen</animation> <animation effect="fade" start="100" end="0" time="300">WindowClose</animation> <texture background="true">$INFO[Window(Visualisation).Property(ArtistSlideshow.Image)]</texture> <visible>!String.IsEmpty(Window(Visualisation).Property(ArtistSlideshow.Image))</visible> </control>]
Hi Can you Be more specific there is nothing matching exactly in the \addons\skin.addon.madnox\1080i\MusicVisualisation.xml file
Thank you!!      


@fidofido300, the text in my file wasn't an exact match to the OP's example:
Code:
<control type="multiimage">
     <timeperimage>15000</timeperimage> <!-- option for time? -->
     <aspectratio>keep</aspectratio>
     <include>MusicVizBG</include>
     <imagepath background="true">$INFO[Window(Visualisation).Property(ArtistSlideshow)]</imagepath>
     <visible>String.IsEmpty(Window.Property(ArtistSlideshowRefresh))</visible>
     <fadetime>3000</fadetime>
     <randomize>true</randomize>
    </control>
^^^ but I replaced THAT with the supplied text and it worked!  The fully updated Artist Slideshow now runs on the Leia build of Madnox.

So much thanks to @meowmoo !!  This just leaves me with one small issue -- while the addon now works, the background images do not animate.  I double checked and made sure "Animated fanart in music visualization" was selected.  In fact, if I change the Background customizer to "Artist fanart (Extrafanart)," the background animates like normal.  But once I switch back to Artist Slideshow the animation stops.  Anyone know how to fix this (another value to change in the MusicVisualisation.xml perhaps)?  Or is this an inherent limitation of updating Artist Slideshow on this skin?


Also just wanted to comment on my own prior post - I got clearart logos and cdart working via Artwork Beef (I had skipped that addon before because, I thought it only dealt with movies), and record labels worked once I moved the artwork from the default location to media\flags\music\recordlabel.  This skin keeps getting more and more beautiful!!!


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - MANswers - 2020-04-03

I have installed the original NOX Silvo skin, and have installed all the dependencies (Addons). I am on CoreElec platform, and i have installed the skin directory as you have instructed in /storage/.kodi/addons
I have restarted Kodi after this, but the skin does not show up in the options under Change skin in the Interface UI. What am i doing wrong?


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - MANswers - 2020-04-03

Does this work with Kodi 18.5 Leia? I believe thats the issue, I downloaded the skin from git and from the master drop down, i choose Leia, installed it, but it did not work. After spending several hours, I choose to go and uninstall the NOX theme, trying to get back to AEON MQ 8, i noticed that the Madox skin is disabled, upon enabling it, I got an error saying that the skin is of unsupported version.
So has anyone ever been able to make it work with Kodi 18.5 Leia? Why was the Leia branch under the git master


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - meowmoo - 2020-04-04

https://github.com/mikesilvo164/skin.aeon.madnox


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - MANswers - 2020-04-08

I have been able to customize madnox to my liking and everything is looking great, except that Movie Set collection cases are not showing up. All the other cases DVD, BluRay, Web-DL.. everything else is showing fine, except the movie set cases are not showing up for none of the movie sets.
What am i missing?


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - zorg2000k - 2020-04-21

Hi ,

Quick question, any reason why the music genre is not showing icons ? as per screen below.

Thanks

Image


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - Karellen - 2020-04-21

I don't have this skin installed, but you may need to enable a genre icon pack in the skin settings.


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - DirtPT - 2020-04-25

Hi guys, can anybody tell if the latest version of madnox already supports custom startup intro or not?
I love Madnox but not having the possibility to add an custom intro, is a bit of a let down for me.
If Madnox doesn't have support for a custom intro, is there any way that you guys know that i can put an startup custom intro?
Keep up the good work. Cool


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - homerjs - 2020-05-15

I know it can be done in this version but I cannot remember how to do it...I just reinstalled Kodi... How do I change studio and Media flags from Black and White to the Color ones?
thanks

**** nevermind I found the answer


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - Simkin84 - 2020-06-06

edit----


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - STAG - 2020-07-07

(2020-02-16, 15:19)homerjs Wrote: The scrollbar length is too short, however if I go and change the setting "enable alphabet scroll bar" that works, and then if I go back and disable alphabet scrollbar then back to movies, the scrollbar length is correct...but this goes away on reboot.

Does anyone find to solve this issue ? I experiment the same and it would be great to know what to do !


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - homerjs - 2020-07-14

(2020-07-07, 19:10)STAG Wrote:
(2020-02-16, 15:19)homerjs Wrote: The scrollbar length is too short, however if I go and change the setting "enable alphabet scroll bar" that works, and then if I go back and disable alphabet scrollbar then back to movies, the scrollbar length is correct...but this goes away on reboot.

Does anyone find to solve this issue ? I experiment the same and it would be great to know what to do !
Seems that nobody but you and I are affected or care about this


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - STAG - 2020-07-16

(2020-07-14, 00:25)homerjs Wrote:
(2020-07-07, 19:10)STAG Wrote:
(2020-02-16, 15:19)homerjs Wrote: The scrollbar length is too short, however if I go and change the setting "enable alphabet scroll bar" that works, and then if I go back and disable alphabet scrollbar then back to movies, the scrollbar length is correct...but this goes away on reboot.

Does anyone find to solve this issue ? I experiment the same and it would be great to know what to do !
Seems that nobody but you and I are affected or care about this

I'm on Kodi 18.5 and u ?


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - Karellen - 2020-07-16

(2020-07-14, 00:25)homerjs Wrote: Seems that nobody but you and I are affected or care about this
As far as I am aware, this skin is unmaintained.