Select and Resize InlineGraphicElement
hey frnds,
i'm using simple TLF editor where user can add image in it.
my code is
var textFlow:TextFlow = new TextFlow();
var p:ParagraphElement = new ParagraphElement();
img = new InlineGraphicElement();
img.source = relativePath+addPopupIMG.filePath;
img.height = 100;
img.width = 100;
p.addChild(img);
textFlow.addChild(p);
var tf:String = TextConverter.export(textFlow,
TextConverter.TEXT_LAYOUT_FORMAT,
ConversionType.STRING_TYPE).toString();
Now i want tht user can select this image in my TLF Editor and can resize its width and height.
Is any way there to change selected image from TLFEditor ?
thx in advanced,
![]()
