Flex函数出现顺序(actionscript)

时间:2011-12-29 08:26:14

标签: flex actionscript

这是我的功能

private function dateChangeHandler(event:CalendarLayoutChangeEvent):void
        {
            Alert.show("hihi");
            Alert.show('You have selected ' +   ((event.target.selectedDate) as Date).toDateString());
            if ((event.target.id == "returnDate") && (pickupDate.selectedDate > returnDate.selectedDate))
            {
                Alert.show("Pickup date must be scheduled before return date.");
            }
        }

我不知道为什么" hihi"总是最后出现。 Thx给出解释。

1 个答案:

答案 0 :(得分:3)

这是正确的预期行为。我不明白为什么你需要多个警报对话框? 它只会在完成执行后按警报的队列顺序提示。