Share Posted June 5, 2014 I have added dynamic text to my TransformManager, is it possible to change the size of dynamically added text ? Link to post Share on other sites
Share Posted June 5, 2014 Sure, TransformManager can transform pretty much any DisplayObject. It's fine if you're dynamically adding text (although not right in the middle of while your user is dragging/resizing). Link to post Share on other sites
Author Share Posted June 5, 2014 Sure, TransformManager can transform pretty much any DisplayObject. It's fine if you're dynamically adding text (although not right in the middle of while your user is dragging/resizing). maybe I'm doing something wrong because I add my text to the TransformManager but it only transformes the text box not the text inside Link to post Share on other sites
Share Posted June 5, 2014 Right, it looks like your TextField is sized bigger than you want. Perhaps you should just try making sure it's collapsed to the size of your text. That's not something TransformManager does for you - TransformManager honors the size of the DisplayObject you feed in. You may need to look into the sizing options/parameters for the TextField you're using. Sorry, I don't quite remember all those settings from Adobe's API. Link to post Share on other sites