Re: [flexcoders] newbie question : putting a semicolon in a mxml property

2009-07-12 Thread Sam Lai
Not if there is just a single line of script within the quotation marks. If you wanted to do something like this though, mx:Button label=some label click=t1.text = t2.text; doSomethingElse(); t3.visible = false; / Then you do need the semi-colons. Most people just have the semi-colon there out

[flexcoders] newbie question : putting a semicolon in a mxml property

2009-07-11 Thread ew6014
hi guys i was reading the flex documentation and i noticed a ; inside a mxml property let me give you an example mx:Button label=some label click=t1.text = t2.text; / ive tried removing the semicolon ; and also tried leaving it there and there was no error of any kind. so im just wondering