Flex 自定义预加载器图像加载
我正在编写一个自定义的 Flex 预加载器,它扩展了 IPreloaderDisplay
类。 如何在自定义预加载器中加载来自网络的图像?
谢谢,
弗拉基米尔
I am writing a custom flex preloader which extends the IPreloaderDisplay
class. How can I load the images from web in my custom preloader?
Thanks,
Vladimir
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法从网络加载预加载器图像,因为框架尚未加载。 您需要保持预加载器非常轻量级并且不使用任何框架代码。 只需扩展 Sprite 并实现 IPreloaderDisplay 方法,但嵌入图像并且不要尝试在运行时加载它们。
You can't load your preloader images from the web because the framework hasn't loaded. You need to keep preloaders VERY lightweight and don't use any framework code. Just extend Sprite and implement the IPreloaderDisplay methods but embed your images and don't attempt to load them at runtime.
您不能只创建一个图像对象并将其添加到舞台吗? 您可以发布您的进度,以便我知道其中的哪一部分可以帮助您吗?
更新
暂时提供一个通用的解决方案:
Can't you just create an image object and add it to the stage? Can you post your progess so I know which part of this to help you with?
UPDATE
Here is a general solution for the time being: