在 Adobe Flash 中启动预加载器之前加载图像
基本上我有一个背景图像,在加载 Flash 文件的其余部分时加载。因此,一旦预加载器最终出现,它就已经完成了一半,这是我不想要的。
有没有办法可以指定在 Flash 文件中的其他所有内容之前以及第一帧开始之前加载某个图像?
Basically I have a background image which is loaded while the rest of the flash file is loaded. So once the preloader has finaly appeared its already half way through which I dont want.
Is there a way I can specify a certain image to be loaded before everything else in the flash file and before the first frame to start?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将其嵌入到 swf:
AS3
中,也可以将其预加载到您的网页中,因为 Flash 使用与浏览器相同的缓存。
You can either embed it in the swf:
AS3
or preload it in your webpage since Flash uses the same cache as the browser.
创建一个单独的预加载器 flash 文件,首先加载您的图像,然后加载主文件。该预加载器可以非常小,因为它需要的图形很少。
如果您采用这种方法并使用像 Greensock 的 LoaderMax 这样的库,您还将获得更准确的预加载器。
Create a separate preloader flash file that first loads your image, then your main file. This preloader can be very small as it requires very little in the way of graphics.
You will also get a much more accurate preloader if you take this approach and use a library like Greensock's LoaderMax.