2016-05-12, 15:15
hello
I have this issue with aeon mq6 spin jarvis mod , I want to show the colored flags(.png) files to show for both audio language and subtitle language,
my problem is with this code in includes.xml file <texture>$INFO[ListItem.Property(AudioLanguage.1),flags/subtitles/flags/,.png]</texture> no matter what I change it either shows one langauge or nothing, but the label code shows all languges in text without problem
originally the code was like this for SubtitleLanguage, it is almost the same for AudioLanguage
I changed it into:
Here is the result:
http://i.imgur.com/vm8NuDE.jpg?1
http://i.imgur.com/ur7oPzE.jpg?1
I even tried to change the texture code without success
from this
to this
I really appreciate some help here, I have spent the past 48 hours trying to figure it out.
I have this issue with aeon mq6 spin jarvis mod , I want to show the colored flags(.png) files to show for both audio language and subtitle language,
my problem is with this code in includes.xml file <texture>$INFO[ListItem.Property(AudioLanguage.1),flags/subtitles/flags/,.png]</texture> no matter what I change it either shows one langauge or nothing, but the label code shows all languges in text without problem
originally the code was like this for SubtitleLanguage, it is almost the same for AudioLanguage
Code:
<control type="label">
<left>60</left>
<top>42</top>
<width>555</width>
<height>38</height>
<aligny>top</aligny>
<font>Font_18A</font>
<label>$INFO[ListItem.Property(SubtitleLanguage.1)]$INFO[ListItem.Property(SubtitleLanguage.2), / ]$INFO[ListItem.Property(SubtitleLanguage.3), / ]$INFO[ListItem.Property(SubtitleLanguage.4), / ]$INFO[ListItem.Property(SubtitleLanguage.5), / ]$INFO[ListItem.Property(SubtitleLanguage.6), / ]$INFO[ListItem.Property(SubtitleLanguage.7), / ]$INFO[ListItem.Property(SubtitleLanguage.8), / ]$INFO[ListItem.Property(SubtitleLanguage.9), / ]$INFO[ListItem.Property(SubtitleLanguage.10), / ]</label>
<textcolor>FFFFFAF0</textcolor>
<scroll>true</scroll>
<scrollout>false</scrollout>
<animation effect="slide" end="0,-42" time="0" tween="sine" easing="out" condition="IsEmpty(ListItem.Property(AudioLanguage.1))">Conditional</animation>
<visible>!Control.IsVisible(71)</visible>
</control>
I changed it into:
Code:
<control type="image">
<left>60</left>
<top>42</top>
<width>auto</width>
<height>auto</height>
<texture>$INFO[ListItem.Property(SubtitleLanguage.1),flags/subtitles/flags/,.png]</texture>
<aligny>top</aligny>
<font>Font_18A</font>
<label>$INFO[ListItem.Property(SubtitleLanguage.1)]$INFO[ListItem.Property(SubtitleLanguage.2), / ]$INFO[ListItem.Property(SubtitleLanguage.3), / ]$INFO[ListItem.Property(SubtitleLanguage.4), / ]$INFO[ListItem.Property(SubtitleLanguage.5), / ]$INFO[ListItem.Property(SubtitleLanguage.6), / ]$INFO[ListItem.Property(SubtitleLanguage.7), / ]$INFO[ListItem.Property(SubtitleLanguage.8), / ]$INFO[ListItem.Property(SubtitleLanguage.9), / ]$INFO[ListItem.Property(SubtitleLanguage.10), / ]</label>
<textcolor>FFFFFAF0</textcolor>
<scroll>true</scroll>
<scrollout>false</scrollout>
<animation effect="slide" end="0,-42" time="0" tween="sine" easing="out" condition="IsEmpty(ListItem.Property(AudioLanguage.1))">Conditional</animation>
<visible>!Control.IsVisible(71)</visible>
</control>
Here is the result:
http://i.imgur.com/vm8NuDE.jpg?1
http://i.imgur.com/ur7oPzE.jpg?1
I even tried to change the texture code without success
from this
Code:
<texture>$INFO[ListItem.Property(SubtitleLanguage.1),flags/subtitles/flags/,.png]</texture>
to this
Code:
<texture>$INFO[ListItem.Property(SubtitleLanguage.1),flags/subtitles/flags/,.png], $INFO[ListItem.Property(SubtitleLanguage.2),flags/subtitles/flags/,.png] $INFO[ListItem.Property(SubtitleLanguage.3),flags/subtitles/flags/,.png]</texture>
I really appreciate some help here, I have spent the past 48 hours trying to figure it out.