Adobe Flash AS 2.0

Adobe flash AS 2.0

我想知道 "and" 在 AS 2.0 中的用途。 如果试了很多forma都不行。

我尝试过类似的方法:

onClipEvent (enterFrame) {
    if (Key.isDown(Key.SPACE)) and (Key.isDown(Key.DOWN)){
        _root.speed = 10
    }
}

请举例说明

A​​S 2 中的 and 等于 AS 3 中的 &&

表示两个条件都要满足

您的代码中的括号有问题,请按以下方式使用它们:

onClipEvent (enterFrame) {
    if (Key.isDown(Key.SPACE) and Key.isDown(Key.DOWN)){
        _root.speed = 10
    }
}