Flash 按钮适用于除 Safari 之外的所有平台
基本上,每个按钮都可以在 Firefox、Chrome、IE 中使用,但在 Safari 中则无法使用。
我使用简单的代码:
Button1.addEventListener(MouseEvent.CLICK, ButtonClick);
function ButtonClick(event:MouseEvent):void {
gotoAndStop(3);
}
电影从第 2 帧开始 - 第 1 帧是预加载器。类设置为从第 2 帧开始,但将其更改为第 1 帧也没有执行任何操作。
我在这里不知所措。有什么线索吗?
谢谢
Basically, every button works in Firefox, Chrome, IE, but they will not work in Safari.
I'm using straightforward code:
Button1.addEventListener(MouseEvent.CLICK, ButtonClick);
function ButtonClick(event:MouseEvent):void {
gotoAndStop(3);
}
The movie starts on frame 2 - frame 1 is a preloader. Classes are set to start on frame 2, but changing that to frame 1 didn't do anything either.
I'm at a loss here. Any clue?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
第一件事是学习如何格式化代码,以便我们更容易阅读
下一步,是确保您的浏览器和 FlashPlayer 使用的是最新更新
最后,尝试添加 trace() 语句以便查找找出应用程序中断的地方。
在 Firefox 和 Firefox 中进行调试时例如,Safari 可能会给您一些线索,并可能帮助您使问题更加具体。
First thing is to learn how to format your code so that it's easier for us to read
Next, is to make sure you're using the last updates both for your browsers and FlashPlayer
Finally, try to add trace() statements in order to find out where the application breaks.
When debugging both in Firefox & Safari , for instance, it may give you some clues and probably help you make your question more specific.
如果您已经尝试过此操作,但看看更改对象/嵌入标签的“wmode”属性是否会产生影响,我深表歉意。曾几何时,我在 Safari 中将其设置为“透明”时遇到了问题。
My apologies if you've already tried this but see if changing the "wmode" attribute of the object/embed tags makes a difference. I had issues with having it set to "transparent", in Safari, once upon a time.