Hello,
I want to ùknow if it'is possible to annimate the listbox's selected color
i try this but not working :
local overlay_lb = fe.add_listbox(lbx,lby-4*ith,lbw,lbh);
overlay_lb.rows=9;
overlay_lb.align=Align.Left;
overlay_lb.selbg_alpha=0;
overlay_lb.visible=false;
fe.overlay.set_custom_controls( overlay_l, overlay_lb );
local pulse3= { when = Transition.ShowOverlay , property = "****SelectionColor*****", end = { red = 255, green = 0, blue = 50 }, start = { red = 255, green = 255, blue = 255 }, time = 250, loop=true }
animation.add( PropertyAnimation( overlay_lb, pulse3 ) );
What is the "property" of the "selected color", in a fe.listbox element ?
Thank you for reading me