Not sure if this is by design or a bug.
I have a Flex website with integrated content management feature. When
content is rendered to a list and the itemRenderer Text component is
set to
buttonMode="true"
useHandCursor="false"
selectable="false"
it works just fine.
However building the Text components on a multicolumn layout
dynamically using addChild method the settings are not respected at all.
var contentObj:Text = new Text();
contentObj.htmlText = cContentLive;
contentObj.width = col1.width
contentObj.buttonMode="true"
contentObj.name ="contentLive"+i
contentObj.useHandCursor="false"
contentObj.addEventListener(MouseEvent.CLICK,goto)
contentObj.selectable="false"
VB.addChild(contentObj)
Am I missing something here ? [ I tried using
setStyle("useHandCursor","false") with same results.]