Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图在我加载的图像中添加一个按钮模式。显示此错误:
Error #1056: Cannot create property buttonMode on flash.display.Loader.
有什么帮助吗?
Loader 扩展了 DisplayObjectContainer,但 buttonMode(和 useHandCursor)属性属于 Sprite 类和子类。
所以 - 最简单的解决方案是简单地创建一个新的 Sprite() 然后 addChild(yourLoader) 到精灵。并将 Sprite 添加到您希望加载程序所在的位置。然后将 buttonMode 和任何单击事件侦听器分配给该精灵。
对我来说,Loader 类可以调度点击事件但不能分配 buttonMode 从来没有意义,所以在这方面你的困惑是共享的!