obj.over and obj.down in drawComboBox
-
Why obj.over and obj.down are not available in the drawComboBox LAF? They're not working for me at least.
-
@bendurso In the draw list item functions perhaps?
-
@d-healey Only obj.area, obj.text, obj.active and obj.enabled are available for drawComboBox. But for some reason obj.over and obj.down are not included :(
-
I just checked the laf for the combo box (not the menu). It has obj.hover, which is the same as obj.over. I don't see anything to replace the down action though.
You could perhaps handle this with a broadcaster, or
Content.isMouseDown()
-
@d-healey Nice, thanks! It does work obj.hover :beaming_face_with_smiling_eyes: