2014-07-16 92 views

回答

1

可以使用的setTimeout

import flash.utils.setTimeout; 

setTimeout(initPage, 3000); // Time is in milliseconds so 3000 = 3 seconds 

function initPage(){ 
    // go to some frame or do other stuff if you are not using timeline 
}