|
-
Scroll Bar Track Interference
Is there any way to eliminate text overlapping the scroll bar track within the properties section?
Last edited by Phil1615; 05-04-2009 at 06:35 AM.
-
up to my .as in code
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?
-
up to my .as in code
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);
-
Perfect Chris!!!
Last edited by Phil1615; 05-04-2009 at 05:45 PM.
Reason: Forgot to say thank you.
-
up to my .as in code
 Originally Posted by Phil1615
In any case, I am going to tuck both the AS1 and AS3 script away so I can forget where I placed it a couple months from now. 
Hahahahaha....sounds familiar
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|