变量到自定义组件 - flex
我试图将一个变量从我的主 Flex 应用程序传递到我创建的自定义组件,但还没有真正弄清楚任何事情。
我的变量只是一个字符串 - public var test:String = "a test";
我的自定义组件在我的主应用程序中实现,如下所示 -
在我的自定义组件“finaltest”中,我只想显示变量“test”。像这样的东西 - finalmessage.text = test;
I'm trying to pass a variable from my main flex application to a custom component I've created, but haven't really figured anything out.
my variable is just a string - public var test:String = "a test";
my custom component is implement in my main application like this - <ns1:finaltest includeIn="FinalTest" x="26" y="19" />
In my custom component 'finaltest' I'd like just to display the variable 'test'. something like this - finalmessage.text = test;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MainApp.mxml
FinalTest.mxml
MainApp.mxml
FinalTest.mxml