
Код:
import flash.external.*;
butt.onPress = function () {
var RESIZE_CONTAINER:XML = new XML("<script><![CDATA[function(height) {var objNode = document.getElementById('flashid');objNode.style.height = 300}]]></script>");
ExternalInterface.call(RESIZE_CONTAINER); //Type mismatch.
}
butt.onRelease = function () {
var RESIZE_CONTAINER:XML = new XML("<script><![CDATA[function(height) {var objNode = document.getElementById('flashid');objNode.style.height = 100}]]></script>");
ExternalInterface.call(RESIZE_CONTAINER); //Type mismatch.
}
ExternalInterface - чем и как можно заменить на AS2 ..?