I used .net word to convert docx to swf file, what i want is to disable selection, copying and printing in the swf file, is there a way to do that?
Update:
I just found out we can just use the following code to get rid of the text selection command button at the top panel in the swf viewer:
SwfTopPaneControlFlags topPanelFlag = SwfTopPaneControlFlags.ShowAll ^ SwfTopPaneControlFlags.ShowTextSelectionMode;
But there still exist one entry in the right click context menu that could just enable selection mode again, how to avoid that?