• 1
  • 2(current)
  • 3
  • 4
  • 5
  • 8
Mod JB-SimilarArtist in music visualization for MQ7
#16
wrap list dont have this
<preloaditems>6</preloaditems>

see here, and dont use this for wraplist...make bug Smile

http://kodi.wiki/view/Wrap_List_Container
XBoxMediaCenter (Kodi Matrix ) 19.3 , AndroidBox -Matrix Skin AeonMQ6
Reply
#17
although I've given up on MQ and can't comment on how this actually works, great job! Great idea and great implementation! Will def give this a go if I decide to come back to MQ.
Reply
#18
Thanks @Angelinas
I also found it Blush

@Jumpy73
The new version of the download - link in the first post.

JB
Reply
#19
(2016-11-02, 10:18)JohnyBee Wrote: @Jumpy73
The new version of the download - link in the first post.

JB

This evening I'll check the new release and I'll give you a feedback
Tks JB

EDIT: I tested the new version and the overlapping issue seems not to be visibile anymore... tks for your work. It is really appreciated
Reply
#20
Hi @Angelinas,

I have a little problem with wraplist. Confused
Wraplist displays item of list, while item of list is setting visible to false.
This is when the existing position on further in the list.
I want to display the items for existing artwork.
Please take a look into my code.

I have 2 albums in wraplist:Sad
Image

After refreshing kodi:Smile
Image
Please help.
JB
Reply
#21
Realy dont understand what you want...Smile

But see wrap list that I change for Krypton version (mq6) and see if this you want
Overwrite your wraplist id="880004

Code:
<control type="wraplist" id="880004">
                    <viewtype label="icon">List Info</viewtype>
                    <left>30</left>
                    <top>130</top>
                    <width>510</width>
                    <height>90</height>
                    <orientation>horizontal</orientation>
                    <scrolltime tween="cubic" easing="inout">6000</scrolltime>
                    <focusposition>-1</focusposition>
                    <autoscroll>true</autoscroll>
                    <!-- CD Wyswietlanie w rzedzie listy wszystkich pozycji listy gdy nie ma fokusa-->
                    <itemlayout height="170" width="85">
                        <control type="image">
                            <left>0</left>
                            <top>5</top>
                            <width>80</width>
                            <height>80</height>
                            <aligny>center</aligny>
                            <align>center</align>
                            <aspectratio>scale</aspectratio>
                            <include>Animation_Fade</include>
                            <texture fallback="defaultaudiocover.png" diffuse="thumb_shelf_diffuse.png" background="true">$INFO[ListItem.Icon]</texture>
                            <animation effect="fade" end="90" condition="true">Conditional</animation>
                        </control>
                    </itemlayout>
                    <!-- CD Wyswietlanie w rzedzie listy wszystkich pozycji listy gdy JEST FOKUS-->
                    <focusedlayout height="170" width="85">
                        <control type="image">
                            <left>0</left>
                            <top>5</top>
                            <width>80</width>
                            <height>80</height>
                            <aligny>center</aligny>
                            <align>center</align>
                            <aspectratio>scale</aspectratio>
                            <include>Animation_Fade</include>
                            <texture fallback="defaultaudiocover.png" diffuse="thumb_shelf_diffuse.png" background="true">$INFO[ListItem.Icon]</texture>
                            <animation effect="fade" end="50" condition="true">Conditional</animation>
                        </control>
                    </focusedlayout>
                    <include>CDArtist</include>
                </control>
In mine, I add DiscArt Wink
Image
XBoxMediaCenter (Kodi Matrix ) 19.3 , AndroidBox -Matrix Skin AeonMQ6
Reply
#22
Hi, (@Angelinas Smile)

KODI Jarvis
1. I've got wraplist for album.

2. Wraplist is filled with name album and cover
PHP Code:
<content>
            <
item id="1">
                <
icon>$INFO[Window(Visualisation).Property(ArtistSlideshow.1.AlbumThumb)]</icon>
                <
label>$INFO[Window(Visualisation).Property(ArtistSlideshow.1.AlbumName)]</label>
                <
onclick>noop</onclick>
                <
visible>!IsEmpty(Window(Visualisation).Property(ArtistSlideshow.1.AlbumThumb))</visible>
            </
item>
(...)
</
content

3. In position where there is no cover (only name album) visibility is set to false.
PHP Code:
<visible>!IsEmpty(Window(Visualisation).Property(ArtistSlideshow.1.AlbumThumb))</visible

4. When wraplist is displayed, in visualisation where visibility is set to false I've got reserve cover with fallback="defaultaudiocover.png"
Image
When I delete fallback="defaultaudiocover.png" from
PHP Code:
<texture fallback="defaultaudiocover.png" diffuse="thumb_shelf_diffuse.png" background="true">$INFO[ListItem.Icon]</texture
for code
PHP Code:
<texture diffuse="thumb_shelf_diffuse.png" background="true">$INFO[ListItem.Icon]</texture
it displaying empty items in list
Image

5. I want to display wraplist without reserve picture(graphic), empty postitions. Everythink is filled by existing graphic (all position in view)
Image

Once again, please help. Maybe someone knows how to do it.

JB
Reply
#23
This is your Kodi error...cant have for two same thumb different image.
Your code have error and you didnt remove as I write in post before.
Overwrite mine code over your ...just for album and see if this isue have with new changes.

In your image I see that your wrap list of album have only two label.
Handwriten
Illuminate
For me is wright in your post images, only last image, and I have like that galery.Two images that round in circle 2+2+2 ...

Mine excample:
In music inf dialog have album without thumb(image no.1), and in second is full screen music Vis(That label is missing in image no.2)
Everything is corect Smile

no.1
Image
no.2
Image
XBoxMediaCenter (Kodi Matrix ) 19.3 , AndroidBox -Matrix Skin AeonMQ6
Reply
#24
Hi @Angelinas,

I overwrite my code by yours, it's still the same...
Image

It happens randomly (once displayed correctly 2+2+2+2...., or not) I dont know why?! Sad
I want to wraplist always is displaying correctly (without reserve graphics, empty positions) only existing covers (post #22 graphics no. 3).

JB
Reply
#25
Use this code in your wrap list
Code:
<width min="170" max="520">auto</width>
insted of standard ..limited on fix position 520
XBoxMediaCenter (Kodi Matrix ) 19.3 , AndroidBox -Matrix Skin AeonMQ6
Reply
#26
(2016-11-04, 22:25)Angelinas Wrote: Use this code in your wrap list
Code:
<width min="170" max="520">auto</width>
insted of standard ..limited on fix position 520

Hi Angelinas,
it's still the same ...... Sad
Reply
#27
No updates on wraplist issue solution?
Reply
#28
(2016-11-19, 00:38)Jumpy73 Wrote: No updates on wraplist issue solution?

Unfortunately, no solution to the problem of wraplist
Reply
#29
Unfortunately, cant get it to work.. Dwonloaded zip, extracted it, copied the files into 1080i folder, edited the 2 files, using cut-n-paste, and noughta, song looks for lyrics, finds them and nothing more.

Running 16.1 on android boxes.

It looked cool, thnx for creating it.
Kodi v20.1 with goodies from the PSMC Collection / Using on PC's, Nvidea Shields, and other Android TV Boxes
Reply
#30
(2016-12-31, 20:11)Wanderer189 Wrote: Unfortunately, cant get it to work.. Dwonloaded zip, extracted it, copied the files into 1080i folder, edited the 2 files, using cut-n-paste, and noughta, song looks for lyrics, finds them and nothing more.

Running 16.1 on android boxes.

It looked cool, thnx for creating it.

Hmmmm, Huh
Require:
- script.artistslideshow
in script.artistslideshow set:
- album info
- similar artists
JB
Reply
  • 1
  • 2(current)
  • 3
  • 4
  • 5
  • 8

Logout Mark Read Team Forum Stats Members Help
JB-SimilarArtist in music visualization for MQ72