コンボボックス(flex 4)が1つあるのですが、アイテムを設定したいです。
var tempObject:Object;
tempObject.clientName="Raju";
clientList.selectedItem = tempObject;
それが正しいか?.しかし、このエラーが表示されます
*TypeError: Error #1009: Cannot access a property or method of a null object reference.*
私のコンボボックス:
<s:ComboBox id="clientList" width="14%" height="85%"change="clientList_changeHandler(event)"
dataProvider="{clientListForcombo}" labelField="clientName"
prompt="Select the one"/>