Settings | Sign in | Sign up

The author has 3 posts.

目前正在制作:调用公共事件

Floor 1 巨大八爪鱼 12/12/15 23:44
以及当两个文章被分开后,

第二个文章不能显示的问题
Floor 2 巨大八爪鱼 12/13/15 0:02
第二个文章不能显示的问题已解决。
解决的方法,使用delay参数:
        private function stopWaiting(delay:Boolean = false):void {
            if (delay) {
                eventTimer.reset();
                eventTimer.repeatCount = 1; // 等待1帧后再次执行stopWaiting()
                eventTimer.start();
                return;
            }
            waiting = false; // 停止等待
            execute(); // 继续执行后续内容
        }
Floor 3 巨大八爪鱼 12/13/15 0:13
公共事件可以调用了!

Content converter:

Reply the post
Content:
User: You are currently anonymous.
Captcha:
Unclear? Try another one.