通过 AJAX 提交 Flash AS2 表单

发布于 2024-12-05 12:07:27 字数 411 浏览 1 评论 0原文

我有一个客户制作基于 Flash AS2 的语言学习软件。

他们想向应用程序添加错误报告电子邮件。

如果您不介意 swf 的帖子打开新选项卡,那就非常简单:

on (release, releaseOutside) {
  var my_Var:LoadVars = new LoadVars();
  my_Var.brsub = subject.text;
  my_Var.brmsg = message.text;
  my_Var.send("bug_report.php", "_blank", "POST");
}

我正在寻找文档或 AS2 中的示例,通过 AJAX 制作这篇文章而不打开新选项卡。

任何人都知道我可以在哪里阅读它。我知道它一定在那里,但我的谷歌搜索却一无所获。

I have a client who makes Flash AS2 based language learning software.

They wanted to add a bug report email to the apps.

It is dead simple if you don't mind the swf's post opening a new tab:

on (release, releaseOutside) {
  var my_Var:LoadVars = new LoadVars();
  my_Var.brsub = subject.text;
  my_Var.brmsg = message.text;
  my_Var.send("bug_report.php", "_blank", "POST");
}

I am looking for docs or an example in AS2 of making this post via AJAX and not opening the new tab.

Anyone know where I can read up on it. I know it must be out there but my Googling has come up empty.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

又爬满兰若 2024-12-12 12:07:27

您不需要在 Flash 中发出 AJAX 请求来处理该请求:
您可以使用 loadVariables 方法通过 POST 发送数据,而无需离开 Flash 影片:

Adobe 帮助参考

You don't need to make an AJAX Request in Flash to process that request:
you can use the loadVariables method to send data via POST, without leaving your Flash movie:

Adobe Help Reference

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