Re: [flexcoders] "With" statement in Pascal what is it in AS3

2008-02-25 Thread Maciek Sakrejda
, Inc. http://www.truviso.com -Original Message- From: Troy Gilbert <[EMAIL PROTECTED]> Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] "With" statement in Pascal what is it in AS3 Date: Mon, 25 Feb 2008 11:49:55 -0600 > Is the

Re: [flexcoders] "With" statement in Pascal what is it in AS3

2008-02-25 Thread Troy Gilbert
> Is there a similar shortcut in AS3 to save my delicate fingers from > excessive typing? Yes, it's the "with" keyword... clever, huh? ;-) Though, it's generally avoided because the scoping issues can be unclear when reading the code. Troy.

[flexcoders] "With" statement in Pascal what is it in AS3

2008-02-25 Thread boy_trike
In Delphi, I can type: with CLASSNAME property1 = xxx property2 = yyy etc. without having to type CLASSNAME.property1 = xxx Is there a similar shortcut in AS3 to save my delicate fingers from excessive typing? Thanks Bruce