Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
Hi Everyone,
Good Afternoon,
On click event I want to move to next step of a sequence
while a particular step of a sequence is being played.
Please help as soon as possible.
Thanks in advance.
Regards,
Aditya Gupta
Hi @Aditya1702
regarding your question , I am not sure what is the issue. So to next step inside a function something like that
$scope.view.wdg['model-1'].currentStep= $scope.view.wdg['model-1'].currentStep+1
// or
$scope.setWidgetProp('model-1','currentStep',$scope.getWidgetProp('model-1','currentStep')+1)
ok possibly if we are reaching the loast step and then go to first step or in reverse direction when we reach the first step then will go again to the last step ...
Or when you try that ... what is the problem. Possibly for long step it will not interrupt it ... or ...? Thanks
Hi @RolandRaytchev ,
Thanks for your response.
My scenario is suppose step1 is being played and
in the middle of step1, I want to see step 2, like I want to move to step2 without watching complete step1.
How can I achieve this?