Leandro Amano wrote:
Hello,
Change border width I don't know....

but try this:

myTextArea.label.border = true;
myTextArea.label.borderColor = 0x990000;

However label (textField object) is a private member of the TextArea
Component....

regards.
--
Leandro Amano
Digital Bug
Chief Creative Officer
Adobe Certified Expert
Adobe Certified Instructor
Adobe User Group Leader

On 5/2/07, john robinson <[EMAIL PROTECTED]> wrote:

Hello all -

I'm using the TextArea component in Flash 8. I need to give the
component a border that is 1 pixel wide. I've found that using
setStyle("borderStyle", "solid") gives me a solid border but it is
wider than I need. Can anyone give me a hint as to how to change the
width of the border?

Thanks!
John
_______________________________________________
[email protected]
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


To change the thickness of a border set these properties:

setStyle('borderStyle', 'solid');
setStyle('borderThickness', 1);
setStyle('borderColor', 0x999999);

Cheers,
Nick J


_______________________________________________
[email protected]
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to