If I have an animated marquee, I can not place it on the top layer. If I have a static marquee, it's not a problem. Do you advise anyone?
Animate with Property Animation :
local scale_cfg = {
when = Transition.ToNewSelection,
property = "scale",
start = 1.0,
end = 1.1,
time = 1200
tween = Tween.Quad,
}
local scale1_cfg = {
when = Transition.ToNewSelection,
property = "scale",
start = 1.1,
end = 1.0,
time = 1200
tween = Tween.Quad,
delay = 1200
}
animation.add( PropertyAnimation( OBJECTS.marquee, scale_cfg ) );
animation.add( PropertyAnimation( OBJECTS.marquee, scale1_cfg ) );
Animated Marquee :

Static Marquee :
