storyboard.reloadScene() bug

I think storyboard.reloadScene() function is not working.

I tryed the following code:

-- Called immediately after scene has moved onscreen:  
function scene:enterScene( event )  
 local group = self.view  
  
 -----------------------------------------------------------------------------  
  
 print "enterScene"  
 timer.performWithDelay(2000, function()   
 print"reload"   
 storyboard.reloadScene()   
 end)  
  
 -----------------------------------------------------------------------------  
  
end  

The following code would print “enterScene” and “reload” only once.

I am using version 2012.964

Thanks [import]uid: 76413 topic_id: 32918 reply_id: 332918[/import]

This is a known/reported bug (case 18108). You can work around with the following for the time being:

scene:exitScene()
scene:enterScene() [import]uid: 106799 topic_id: 32918 reply_id: 130800[/import]

This is a known/reported bug (case 18108). You can work around with the following for the time being:

scene:exitScene()
scene:enterScene() [import]uid: 106799 topic_id: 32918 reply_id: 130800[/import]