实战Flash mx 2004+XML+ASP
作者 佚名技术
来源 服务器技术
浏览
发布时间 2012-07-12
注:本代码没有优化,希望给菜鸟们带来收获! on (release) { System.useCodepage = true; var theItem; _root.clear(); //======================== FileXML = new XML(); FileElement = FileXml.createElement("FILE"); //==================================================== YearElement = FileXml.createElement("YEAR"); YearNode = FileXml.createTextNode("year"); YearNode.nodeValue = _root.years.text; YearElement.appendChild(YearNode); //==================================================== MonthElement = FileXml.createElement("MONTH"); MonthNode = FileXml.createTextNode("month"); MonthNode.nodeValue = _root.months.value; MonthElement.appendChild(MonthNode); //===================================================== FileElement.appendChild(YearElement); FileElement.appendChild(MonthElement); FileXml.appendChild(FileElement); //construct XML obj //===================================================== FileRepley = new XML(); FileRepley.onLoad = onRepleyXml; FileXml.sendAndLoad("repair_record.ASP", FileRepley); function onRepleyXml(success) { if (success) { //trace(FileRepley); amount = FileRepley.childNodes[0].childNodes[1].nodeValue; _root.lineStyle(2, 0xff0000, 100); _root.moveTo(2, 447.6); var point = new Array(amount+1); var resultNum = new Array(amount); var i = 1; //======================================================== //西厂门80T/50T render = FileRepley.childNodes[0].attributes["西厂门80T/50T"]; //trace(render) _root.lineTo(25, 447.6-render*25); _root.createEmptyMovieClip("showNum1", 1); theItem = _root["showNum1"]; theItem._x = 25; theItem._y = 447.6-render*25; //render*25 for magnify theItem.index = 1; theItem.attachMovie("circle", "circle", 1); //Get Number,and sure coordinate! //========== _root.createEmptyMovieClip("bill1", 51); _root.bill.createTextField("sgxg", 100, 0, 0, 40, 20); _root.bill.sgxg.text = render; _root.bill.sgxg.border = false; _root.bill.sgxg.textColor = "0xffffff"; _root.bill.sgxg.borderColor = "0xffffff"; _root.bill.sgxg.background = false; _root.bill.sgxg.backgroundColor = "0x666666"; _root.bill.sgxg._visible = true; _root.bill._x = 25; _root.bill._y = 425.6-render*25; /////////// //简易轨道衡 render = FileRepley.childNodes[0].attributes["简易轨道衡"]; //trace(render+"ddd"); _root.lineTo(50, 447.6-render*25); _root.createEmptyMovieClip("showNum2", 2); theItem = _root["showNum2"]; theItem._x = 50; theItem._y = 447.6-render*25; theItem.index = 2; theItem.attachMovie("circle", "circle", 1); _root.createEmptyMovieClip("bill2", 52); _root.bill2.createTextField("sgxg", 100, 0, 0, 40, 20); _root.bill2.sgxg.text = render; _root.bill2.sgxg.border = false; _root.bill2.sgxg.textColor = "0xffffff"; _root.bill2.sgxg.borderColor = "0xffffff"; |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: 在SWF中获取HTML网页参数下一篇: 球体发光效果和基础Action的学习
关于实战Flash mx 2004+XML+ASP的所有评论