gpt4 book ai didi

android - 播放钛金属声音未找到错误功能

转载 作者:行者123 更新时间:2023-12-03 02:08:24 24 4
gpt4 key购买 nike

我无法播放简单的声音,因为该函数未定义。声音文件在正确的位置,所以我不知道出了什么问题。我是一个初学者,因此非常感谢您的帮助。

//Level 1 Page
var win = Titanium.UI.currentWindow;
var tab = Titanium.UI.currentTab;

var leveloneview = Ti.UI.createView({
width : '100%',
height : '100%',
backgroundColor : 'blue',
});
var tile1 = Ti.UI.createImageView({
bottom : '100',
width : '100',
height : '100',
image : "images/pirate-icon.png",
});
var tile2 = Ti.UI.createImageView({
left : '50',
bottom : '100',
width : '100',
height : '100',
image : "images/pirate-icon.png",
});
var tile3 = Ti.UI.createImageView({
right : '50',
bottom : '100',
width : '100',
height : '100',
image : "images/pirate-icon.png",
});
var sound = Titanium.Media.createSound({
url : 'sounds/wheres_me_rum.mp3',
preload : true
});
var button = Ti.UI.createButton({
title : 'Click to play sound',
width : '200',
height : '40',
top : 20,
align:'center',
});
button.addEventListener('click', function(e) {
sound.play();
});

leveloneview.add(tile1);
leveloneview.add(tile2);
leveloneview.add(tile3);
leveloneview.add(button);
win.add(leveloneview);

最佳答案

Uncaught TypeError: undefined is not a function at /index.html (line 6080) 

移动网络不支持Ti.Media.Sound。有关支持的平台,请参见 http://docs.appcelerator.com/titanium/latest/#!/api/Titanium.Media.Sound

关于android - 播放钛金属声音未找到错误功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26269801/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com