This repository was archived by the owner on Mar 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 88
Prompting Text Input kills flash #359
Copy link
Copy link
Open
Description
Originally filed by [email protected] on 2011-05-16T18:40:18
What steps will reproduce the problem?
- Create prompting text input object. Width 100%.
- Create string validator and set the source to be the prompting text input.
- resize browser and flash crashes.
What is the expected output? What do you see instead?
The UI should resize properly. It crashes flash instead.
What version of the product are you using? On what operating system?
Flash builder 4. Windows Vista and Windows 7
Please provide any additional information below.
<fx:Declarations>
<mx:StringValidator id="vAccountName" source="{account_name}" maxLength="200" required="true" property="text" />
</fx:Declarations>
<s:Panel title="Account Information" width="100%" dropShadowVisible="false" chromeColor="#c0d360" backgroundColor="#efefef">
<code:AdvancedForm x="0" y="0" width="100%">
<mx:FormItem label="Account Name" fontWeight="bold" width="100%">
<code:PromptingTextInput prompt="hello world" id="account_name" width="100%" />
</mx:FormItem>
</code:AdvancedForm>
</s:Panel>