“未定义不是函数”在 Dashcode 中播放声音

发布于 2024-12-29 06:03:37 字数 337 浏览 2 评论 0原文

我正在尝试在 Dashcode 小部件中播放声音。我刚刚将文件放在小部件上,现在我是一个视频项目。

这是我正在使用的代码:

// Values you provide
var qtElement = document.getElementById("video"); // replace with the ID of a QuickTime element
// QuickTime code
qtElement.Play();

当到达最后一行时,我收到此错误:

"Undefined is not a function"

I'm trying to play a sound in a Dashcode widget. I just droped the file over the widget and now I a video item.

This is the code I'm using:

// Values you provide
var qtElement = document.getElementById("video"); // replace with the ID of a QuickTime element
// QuickTime code
qtElement.Play();

When it gets to the final line I got this error:

"Undefined is not a function"

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

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

发布评论

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

评论(1

面如桃花 2025-01-05 06:03:37

我刚刚通过使用 The important part is the kids[0] 解决了我自己的小部件上的问题,

var qtElement = document.getElementById('AlainVoice');
// QuickTime code
qtElement.children[0].play();

因为 Dashcode 现在将 Id 放在封闭的 div 上。

I just solved the issue on my own widget via using

var qtElement = document.getElementById('AlainVoice');
// QuickTime code
qtElement.children[0].play();

The important part is the children[0] since Dashcode now puts the Id on an enclosing div.

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