Flash 按钮适用于除 Safari 之外的所有平台

发布于 2024-10-01 15:23:36 字数 332 浏览 7 评论 0原文

基本上,每个按钮都可以在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

薄暮涼年 2024-10-08 15:23:36

第一件事是学习如何格式化代码,以便我们更容易阅读

 Button1.addEventListener(MouseEvent.CLICK, ButtonClick); 

 function ButtonClick(event:MouseEvent):void 
 { 
     gotoAndStop(3); 
  }

下一步,是确保您的浏览器和 FlashPlayer 使用的是最新更新

最后,尝试添加 trace() 语句以便查找找出应用程序中断的地方。

 Button1.addEventListener(MouseEvent.CLICK, ButtonClick);
 trace("Button instance " , Button1); 

 function ButtonClick(event:MouseEvent):void 
 { 
     gotoAndStop(3); 
    trace(event); 
  }

在 Firefox 和 Firefox 中进行调试时例如,Safari 可能会给您一些线索,并可能帮助您使问题更加具体。

First thing is to learn how to format your code so that it's easier for us to read

 Button1.addEventListener(MouseEvent.CLICK, ButtonClick); 

 function ButtonClick(event:MouseEvent):void 
 { 
     gotoAndStop(3); 
  }

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.

 Button1.addEventListener(MouseEvent.CLICK, ButtonClick);
 trace("Button instance " , Button1); 

 function ButtonClick(event:MouseEvent):void 
 { 
     gotoAndStop(3); 
    trace(event); 
  }

When debugging both in Firefox & Safari , for instance, it may give you some clues and probably help you make your question more specific.

就此别过 2024-10-08 15:23:36

如果您已经尝试过此操作,但看看更改对象/嵌入标签的“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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文