[图片]
公众平台缴费后10个月了,发票还在审核中,打电话也无效,发票什么时候能开出来呢?公众平台缴费后10个月了,发票还在审核中,打电话也无效,发票什么时候能开出来呢?
2023-12-14我也遇到同样的问题了,楼主的问题解决了吗? //监听玩家发送的语音消息 onPlayerWsAudioMessage:function (o) { cc.xdConst.HALL_VOICE[cc.xdConst.HALL_VOICE.length] = o; this.playerPlayVoice(cc.xdConst.HALL_VOICE[0]); }, playerPlayVoice:function (voiceData) { let seat = voiceData.seat; let audioPath = voiceData.audioPath; if(this.playerScripts[seat]!=null){ this.playerScripts[seat].showAudioMessage(audioPath, ()=>{ //开始播放 cc.xdConst.HALL_VOICE.splice(0,1); }, (len)=>{ //播放中 }, ()=>{ //播放完成 if(cc.xdConst.HALL_VOICE.length > 0){ this.playerPlayVoice(cc.xdConst.HALL_VOICE[0]); } }); } }, //展示语音消息 showAudioMessage:function (o, startPlay, playing, playEnd) { let anim = this.audioMessage.node.getChildByName("audioplay").getComponent(cc.Animation); cc.xdSdk.playVoiceFile(o, ()=>{ //开始播放 cc.xdSdk.log('开始播放语音'); startPlay(); }, (len)=>{ //播放中 playing(); cc.xdSdk.log('播放语音ing ' + + len + '秒'); this.audioMessage.node.active = true; this.audioMessage.node.getChildByName("audiolength").getComponent(cc.Label).string = len+"\""; anim.play(); cc.xdAudioManager.pauseMusic(); }, ()=>{ //播放完成 playEnd(); // cc.xdConst.HALL_VOICE.splice(0,1); cc.xdSdk.log('停止语音'); this.audioMessage.node.active = false; anim.stop(); cc.xdAudioManager.resumeMusic(); }); }, //小游戏播放语音 playVoiceFile:function (audioPath, callStarPlay, callbackPlaying, callbackEnd) { if(window.wx){ let flag = true; let innerAudioContext = wx.createInnerAudioContext(); innerAudioContext.src = audioPath; //播放语音 innerAudioContext.play(); innerAudioContext.onPlay(() => { console.log('开始播放'); callStarPlay(); }); innerAudioContext.onTimeUpdate(res=>{ if(flag){ callbackPlaying(innerAudioContext.duration.toFixed(2)); flag = false; } }); innerAudioContext.onEnded(()=>{ console.log('播放完成'); callbackEnd(); }); innerAudioContext.onError((res) => { console.log(res.errMsg); console.log(res.errCode); }); } }, 收到多条语音时,采用逐条播放,第一条语音可以正常播放,正常走onEnded(), 但第二条语音播放完成后不回调onEnded(),是因为什么原因呢?
声音播放完不触发onEnded事件- 声音播放结束不触发onEnded - 期望播放结束 触发onEnded - 不是所有播放都不触发 , 一段1分钟背景音乐 结束 切换下一首 第一次100%不触发 - no demo
2018-09-25为什么我用官方的事例代码,按钮却无法显示呢?我自己的代码也无法显示这个按钮。 let button = wx.createUserInfoButton({ type: 'text', text: '获取用户信息', style: { left: 300, top: 320, width: 200, height: 40, lineHeight: 40, backgroundColor: '#ff0000', color: '#ffffff', textAlign: 'center', fontSize: 16, borderRadius: 4 } }); button.show(); cc.xdSdk.log('button:' + button); button.onTap((res) => { console.log(res); });
小游戏授权按钮wx.createUserInfoButton 创建的按钮怎么自适应居中呢,或者能在不同机型的相同的位置
2018-08-29