//1. stoping the timeline:
gwd.actions.timeline.pause('mypage');
//2.setting a timeout:
setTimeout(function(){
//3. going to specific label and play again(if the label is exactly over the event, then timeline will continue from the current position.
gwd.actions.timeline.gotoAndPlay('mypage', 'mylabel');
//4. make the call after 2000milisecond or 2 seconds.
}, 2000);
This is my script
gwd.makeapause = function(event)
{
gwd.actions.timeline.pause('page1');
setTimeout(function() {
gwd.actions.timeline.gotoAndPlay('page1', 'r1');
}, 2000);
Roman