You are not logged in.

1

Saturday, August 13th 2022, 4:43pm

Scrollarea settings in combobox

Hello! Please tell me how to add scrollarea to combobox so that you can scroll through one scene as in thumbs?

<combobox name="cbscenes" design="vtour" align="leftbottom" x="10" y="10" onloaded="add_scene_items();" />
<action name="add_scene_items" scope="local">
for(set(i,0), i LT scene.count, inc(i),
caller.additem(calc('[img src=[dq]' + scene[get(i)].thumburl + '[dq] style=[dq]border:1px solid rgba(255,255,255,0.5);width:48px;height:32px;vertical-align:middle;margin-right:8px;[dq]/] '+scene[get(i)].title), calc('loadscene('+i+',null,MERGE,BLEND(0.5))') );
);
</action>


I assume I need to edit the combobox.xml?




2

Saturday, August 13th 2022, 4:45pm