动态文本字段中的 Actionscript 问题
是否可以在 Flash as3 的动态文本字段中制作一个单词作为按钮?
Is possible to make a word as button within the dynamic textField in flash as3?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
实际上与这个问题的其他答案相反,你可以(有点)。通过在
Textfield
对象的htmlText
属性的字符串值中使用图像标记,您可以使用库中的显示对象作为其源。然后,您可以使用Textfield
对象的getImageReference()
方法获取以库中的显示对象作为源的图像标记。这是一个示例:Actually contrary to the other answers for this question, you can(kind of). By using an image tag in a string value for a
Textfield
object'shtmlText
property you can use a display object in the library as its source. Then you can use theTextfield
object'sgetImageReference()
method to get the image tag which has the display object from the library as its source. Heres an example:http://help.adobe.com/en_US /AS2LCR/Flash_10.0/help.html?content=00000552.html
http: //circlecube.com/2008/12/asfunction-texteventlink-tutorial-for-as3-flash-html-link-to-call-actionscript-function-tutorial/
这将帮助你。
http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=00000552.html
http://circlecube.com/2008/12/asfunction-texteventlink-tutorial-for-as3-flash-html-link-to-call-actionscript-function-tutorial/
This will helps u.
TextField 中没有 addChild 方法。但是您可以作弊并将按钮放置在 TextField 上(即将其添加到 TextField 的容器中)。
there's no addChild method in TextField. But you may cheat and place button over TextField (i.e. add it to container of a TextField).
简短的回答,不。您需要创建一个包含按钮和文本字段的包装类/MovieClip。
Short answer, no. You'd need to make a wrapper class/MovieClip containing both the button and text field.