ActionScript supports different RegExp flags than Javascript suports. ActionScript has: g, i, s, m and x Javascript has: g, i, m, u and y
So we have a mismatch between “s” and “x” on one side and “u” and “y” on the other. Currently, ActionScript flags compile to Javascript, but the google compiler complains that they are not valid. What’s the “correct” way to deal with this incompatibility? Harbs