Flash 横幅上的此错误意味着什么?
我收到以下错误
[ImageError - Reason: FLASH_HAS_RANDOM_NUM, Field Path = Operations[0].operand.ad.image.data]
你知道这意味着什么吗?
我唯一的随机调用是获取一组粒子的随机 360 角度,并且代码位于其他影片剪辑中的影片剪辑的末尾
谢谢
更新: 我使用的是 Flash CS3,横幅设置为:Flash 8 和 AS2,
随机位的代码为 this._rotation = Math.random() * 360;
I get the following error
[ImageError - Reason: FLASH_HAS_RANDOM_NUM, Field Path = operations[0].operand.ad.image.data]
Any ideas what that means?
The only random call I have is to get a random 360 angle for a set of particles, and the code is at the end of a movieclip within other movieclips
Thanks
UPDATE:
I am using Flash CS3 and the banner settings are: Flash 8 and AS2,
The code for the random bit is this._rotation = Math.random() * 360;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 Google Ads 生成的错误,当然是为了防止横幅出现不可预测的行为。因此你不能在横幅中使用 Math.random() ...
It is an error generated by Google Ads, certainly to prevent the banner from having an unpredictable behavior. Thus you can't use Math.random() in a banner...