“未定义不是功能”在Dashcode中播放声音

时间:2012-01-26 12:23:29

标签: macos audio widget dashcode

我正在尝试在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"

1 个答案:

答案 0 :(得分:1)

我刚刚使用

在我自己的小部件上解决了这个问题
var qtElement = document.getElementById('AlainVoice');
// QuickTime code
qtElement.children[0].play();

重要的部分是孩子[0],因为Dashcode现在将Id放在一个封闭的div上。