MM5 scripting exception: app.player.nextAsync(); [#13945]

Post a reply

Smilies
:D :) :( :o :-? 8) :lol: :x :P :oops: :cry: :evil: :roll: :wink:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: MM5 scripting exception: app.player.nextAsync(); [#13945]

Re: MM5 scripting exception: app.player.nextAsync();

by PetrCBR » Wed Jan 25, 2017 5:29 am

Thanks. Currently nextAsync require one bool parameter (whether to increase skip count or not), but for a next build we will make it optional. Added as 13945.

MM5 scripting exception: app.player.nextAsync(); [#13945]

by stax76 » Tue Jan 24, 2017 5:53 pm

I get an exception with following code:

app.player.nextAsync();

it's defined in an custom action:

Code: Select all

actions.rate0 = {
    title: 'rate0',
    hotkeyAble: true,
    execute: function () {
        app.player.nextAsync();
    }
}
log: http://pastebin.com/8TAuBMp1

Top