How can u access a variable defined in 1 MXML file to another?
Answer Posted / Sumit Choudhary
To access a variable defined in one MXML file from another, you can use Application or bindings. In Application, you can define shared properties that are accessible across the entire application. To use bindings, you can bind a property in one component to a property in another using the binding syntax {otherComponent.property}. This allows data to be shared between components.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers