add pop up
I have a portion in the form that I want to add if the user has multiple records...
For example:
<mx:Label x="10" y="611" text="Information" fontWeight="bold"/>
<mx:ComboBox x="10" y="625" prompt="Make a Selection"></mx:ComboBox>
<mx:Label x="10" y="645" text="Part A" fontWeight="bold" >
<mx:RichTextEditor x="10" y="663" title="Record A" height="249" width="454">
</mx:RichTextEditor>
<mx:RichTextEditor x="472" y="663" title="Record B" height="249" width="518">
</mx:RichTextEditor>
<mx:Label x="10" y="645" text="Part B" fontWeight="bold" />
<mx:Button
x="878" y="625" label="Add New Record"/>
So if the user wants to add a new record... the user can hit Add New Record Button and everything after the first Label is re-generated...
How can i do that?
Any help is appreciated...
