答案 0 :(得分:1)
好吧,我只是按照我们的讨论去做,所以看不到任何阴影。我正在使用AS 3.1.3。请参见下面的代码。该按钮有一些阴影,但不受高程的影响,因此我想它只是背景的9色补丁或其他内容的一部分。我没有在问题跟踪器中看到任何当前问题。
https://issuetracker.google.com/issues?q=shadow%20design
var urlGet = "http://192.168.156.38/data/static.xml"
var urlPost = "http://192.168.156.38/data/changes.xml"
var push = '<?xml version="1.0" encoding="UTF-8"?><Devices><Device><ID>EZR0116AF</ID><HEATAREA nr="4"><T_TARGET>17.0</T_TARGET></HEATAREA></Device></Devices>'
function httpGetAsync() {
var xmlHttp = new XMLHttpRequest();
xmlHttp.onreadystatechange = function() {
if (xmlHttp.readyState == 4 && xmlHttp.status == 200)
console.log(xmlHttp.responseText);
}
xmlHttp.open("GET", urlGet, true);
xmlHttp.send(null);
}
function httpPostAsync() {
console.log(push)
var xmlHttp = new XMLHttpRequest();
xmlHttp.onreadystatechange = function() {
if (xmlHttp.readyState == 4 && xmlHttp.status == 200)
console.log(xmlHttp.responseText);
}
xmlHttp.open("GET", urlPost, true);
xmlHttp.send(push);
}