Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

ComboBox sizing

Community Beginner ,
Apr 21, 2016 Apr 21, 2016

AS3, ComboBox. How to set the height of the dropdown row?

TOPICS
ActionScript
375
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Apr 21, 2016 Apr 21, 2016

use the cb's dropdown.rowHeight property.

Translate
Community Expert ,
Apr 21, 2016 Apr 21, 2016

use the cb's dropdown.rowHeight property.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Apr 21, 2016 Apr 21, 2016

Thanks. I have a hard time trying to convince myself that I am not stupid.

De: kglad

Enviado el: jueves, 21 de abril de 2016 10:54

Para: Héctor Kilijanski

Asunto: ComboBox sizing

ComboBox sizing

created by kglad <https://forums.adobe.com/people/kglad> in ActionScript 3 - View the full discussion <https://forums.adobe.com/message/8702588#8702588>

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 21, 2016 Apr 21, 2016

if it's any consolation, it took me years to figure out how to control components.

eventually, i realized that components are often combinations of other components.  for example, the combobox is a text input component and a list component.  if you look at the adobe actionscript 3.0 reference, it tells you that when you check combobox:

Capture.PNG

if you wanted to control the textinput part of the combobox, you use its textField property:

Capture.PNG

and to figure out what you can do with that, you check the textinput section of the help file.

to control the dropdown part of the combobox, you use the combobox'es dropdown property and then check the list component's api to see what you can do with that.

i can't remember all that stuff (ie, that textField and dropdown are the needed properties), so i have a link to the 3.0 reference on my desktop and i just read/scan to find what i want.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Apr 21, 2016 Apr 21, 2016

Great. Thank you!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 21, 2016 Apr 21, 2016
LATEST

you're welcome.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines