Hello!
I have a combobox that's in the bottom left corner of my screen, but on certain mobile devices (Like an iPhone 6) the combobox opens down below the screen instead of upwards as expected. See the sample code and screenshot below.
Code
<combobox name="Location" design="MyStyle" align="leftbottom" x="18" y="18" zorder="5" onloaded="locationsEnglish();" />
<action name="locationsEnglish">
layer[Location].removeall();
layer[Location].addNamedItem("Floorplan","[b]FLOOR PLANS[/b]", ;);
layer[Location].addNamedItem("Plan_1", "[b]Floorplan_1[/b]", loadscene(Floorplan_1, BLEND(1, linear)););
</action>
<combobox_design name="MyStyle" margin="0" open_close_speed="0.25">
<style name="combobox_container_style"
bgcolor="0x660000"
bgalpha="0.8"
bgborder="2 0xFFFFFF 1.0"
bgroundedge="0"
bgshadow=""
height="50"
/>
<style name="combobox_marker_style"
css="color:#FFFFFF;font-family:Roboto, sans-serif;font-size:1.3em"
bg="false"
txtshadow=""
/>
<style name="combobox_item_style"
css="color:#FFFFFF;font-family:Roboto, sans-serif;font-size:1.3em"
padding="7"
bg="false"
bgcolor="0xFFFFFF"
bgalpha="1.0"
bgroundedge="0"
txtshadow=""
onoveritem="set(bg,true); set(css, 'color:#660000;font-family:Roboto, sans-serif;font-size:1.3em');"
onoutitem="set(bg,false); set(css, 'color:#FFFFFF;font-family:Roboto, sans-serif;font-size:1.3em');"
/>
</combobox_design>
Display More
Thanks for your help!