Solved
Repeast a sequence
Hi,
how can I repeat a sequence? JS code would be appreciated.
Many Thanks
Janos
Hi,
how can I repeat a sequence? JS code would be appreciated.
Many Thanks
Janos
I found a solution. This is able to play a sequence 10 times in all sec.
$scope.startseq = function() {
$scope.intervalPromise = $interval($scope.rotate, 1000, 10);
};
$scope.stopseq = function() {
$interval.cancel($scope.intervalPromise);
};
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.