Is there any way to eliminate text overlapping the scroll bar track within the properties section?
Printable View
Is there any way to eliminate text overlapping the scroll bar track within the properties section?
I had messaged Wilbert earlier in the year about this when wondering what the default behavior was as I was experiencing the same:
This is from him:
var tfmt:TextFormat = new TextFormat();
tfmt.leftMargin = 5;
tfmt.rightMargin = txt1.defaultTextFormat.rightMargin + 10;
txt1.setTextFormat(tfmt);
Thanks Chris, will keep that handy 'til fixed.
However, the problem movie happens to be in AS1. Chris? Wilbert? Bret? Anyone?
Ok man...now you went and made me change my export settings to AS1...oh how you owe me (kidding) :)
Not much to change:
tfmt = new TextFormat();
tfmt.leftMargin = 5;
tfmt.rightMargin = 30;
txt1.setTextFormat(tfmt);