Is there a way to make sure that an item appears “above” other items. I know it normally just uses top to bottom based on your xml. But how do you handle it on repeated items like this (this is the item in my repeater):
<Content>
<Graphic Name=”Poster” Content =”[Item!code:TvShow.Poster]” MaintainAspectRatio=”true” SizingPolicy =”SizeToConstraint” >
<Animations>
<Animation Type=”GainFocus” CenterPointPercent=”0.50,0.50,0.50″ >
<Keyframes>
<ScaleKeyframe Time=”0.0″ Value=”1,1,1″ RelativeTo =”Current” Interpolation =”EaseIn” />
<ScaleKeyframe Time=”0.2″ Value=”1.2,1.2,1″ RelativeTo =”Absolute” />
</Keyframes>
</Animation>
<Animation Type=”LoseFocus” CenterPointPercent=”0.50,0.50,0.50″ >
<Keyframes>
<ScaleKeyframe Time=”0.0″ Value=”1,1,1″ RelativeTo =”Current” Interpolation = “EaseIn” />
<ScaleKeyframe Time=”0.2″ Value=”1,1,1″ RelativeTo =”Absolute”/>
</Keyframes>
</Animation>
</Animations>
</Graphic>
</Content>