In TextArea with id="TextView" the loaded html-text length is 1080 lines. This process takes 3-4 seconds and would be desirable to indicate this to the user.
TextView.textFlow = TextFlowUtil.importFromString(data.readUTFBytes(data.bytesAvailable), WhiteSpaceCollapse.PRESERVE);
I think the delay in TextFlowUtil is in the process of converting a large number of tags (e.g., <span>
). What events can help? Are there any progress or completion events to hook? Thanks in advance!