Nobody has asked for it so far. Feel free to implement it. -Alex
From: Serkan Taş <[email protected]> Reply-To: "[email protected]" <[email protected]> Date: Monday, November 25, 2019 at 1:05 AM To: "[email protected]" <[email protected]> Subject: textFlow is missing in TextArea component Hi, I am using popup to show a content of a file and setting the "textFlow" attribute of TextArea component. protected function setLineNumbers():void { var flowComposer : StandardFlowComposer = StandardFlowComposer(mainTextField.textFlow.flowComposer); var absoluteIndex : int = mainTextField.selectionActivePosition; var lineIdx : int = flowComposer.findLineIndexAtPosition(absoluteIndex); lineNumbers.text = (lineIdx + 1) + "/" + mainTextField.textFlow.numChildren; //endOff.value = 5000; } I have two questions : 1. Setting modal true does not make the popup modal, is it possible ? 2. TextArea in royale is missing textFlow. Is there any other option ? Thanks, Serkan
