skinning: conditonal list dimensions
#3
How would I go about that? I tried something like that earlier but I must be doing something wrong then.
Something like this?

Code:
<include name="ListViewNoPlayback">
    <control type="list" id="50">
               <height>800</height>
        <visible>!Player.HasAudio</visible>
                <animation effect="slide" start="0,100" end="0,0" Condition="!Player.HasAudio" time="100">Conditional</animation>

Code:
<include name="ListViewPlayback">
    <control type="list" id="50">
               <height>500</height>
        <visible>Player.HasAudio</visible>
                <animation effect="slide" start="0,100" end="0,0" time="100" Condition="Player.HasAudio">Conditional</animation>

Then I run into the same problem of having no list at all when stopping playback. But I'm probably overlooking something and I feel a doh! moment coming up Big Grin

edit: I thought I had it, but no. I realized that you meant two seperate itemlayouts and not two seperate lists like I described, but you can only set the dimensions of the entries right?
Reply


Messages In This Thread
[No subject] - by jmarshall - 2008-06-12, 14:24
[No subject] - by Jeroen - 2008-06-12, 15:13
[No subject] - by jmarshall - 2008-06-12, 16:32
[No subject] - by Jeroen - 2008-06-12, 17:15
Logout Mark Read Team Forum Stats Members Help
skinning: conditonal list dimensions0