flash动态读取xml数据来实现评论功能
作者 佚名技术
来源 服务器技术
浏览
发布时间 2012-07-12
mmentArray[id].comment_author + " IP: " + commentArray[id].comment_ip; //get infoBG _y assoc.infoBG.ref._y = assoc.contentBG.ref._y + assoc.contentBG.ref._height; //get the templateBG height assoc.templateBG.ref._height = assoc.infoBG.ref._y + assoc.infoBG.ref._height + 20; //postion the comment if (id == commentArray.length-1) { postionComment(); } id++ }; function postionComment(){ // Loop through each one for (i=0; i this["comment"+i+"_mc"]._y = 0; } else { this["comment"+i+"_mc"]._y = this["comment"+(i-1)+"_mc"]._y+this["comment"+(i-1)+"_mc"]._height; //trace(this["comment"+i+"_mc"]._y); } commentMC[i] = {obj:this["comment"+i+"_mc"]}; //trace(commentMC[i].obj); //放入commentMC数组 } _parent.refreshPane(); if(i==commentArray.length){ //trace("loopMC"); loopMC = setInterval(showContents,300,commentMC,i); } } function get_page_info(page_infoNode){ for(p = 0; p < page_infoNode.length;p++){ //trace(page_infoNode[p].childNodes[0].nodeValue); /*if(page_infoNode[p].nodeName=="page_current"){ page_current = page_infoNode[p].firstChild.nodeValue; }*/ if(page_infoNode[p].nodeName=="page_total"){ page_total = page_infoNode[p].firstChild.nodeValue; } if(page_infoNode[p].nodeName=="page_comment"){ page_comment = page_infoNode[p].firstChild.nodeValue; } /*trace(page_infoNode[p].nodeName); trace(page_infoNode[p].firstChild.nodeValue); trace("=====");*/ } _root.page_current_info.text = "第" + _root.page_current + "页"; _root.page_total = page_total; _root.page_comment = page_comment; _root.page_info.text = "当前有评论"+ page_comment + ",共" + page_total + "页"; } function get_comment_info(comment_infoNode){ for(c=0; c get_comment(comment_infoNode[c].childNodes,comment_id); } }; function get_comment(comment_node,comment_id){ comment_id_data = comment_id; for(m=0;m //trace(comment_title_data); comment_title_data = comment_node[m].firstChild.nodeValue; }else if(comment_node[m].nodeName == "comment_author"){ comment_author_data = comment_node[m].firstChild.nodeValue; }else if(comment_node[m].nodeName == "comment_content"){ comment_content_data = comment_node[m].firstChild.nodeValue; }else if(comment_node[m].nodeName == "comment_time"){ comment_time_data = comment_node[m].firstChild.nodeValue; }else if(comment_node[m].nodeName == "comment_ip"){ comment_ip_data = comment_node[m].firstChild.nodeValue; } } commentArray.push({comment_id:comment_id_data,comment_title:comment_title_data,comment_author:comment_author_data,comment_content:comment_content_data,comment_ip:comment_ip_data,comment_time:comment_time_data}); //debug beign ArrayID = comment_id_data - 1; /*trace("A new Recore called Comment id"+ comment_id_data + " has been added to CommentArray"); trace(commentArray[ArrayID].comment_title); trace(commentArray[ArrayID].comment_author); trace(commentArray[ArrayID].comment_content); |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: 直线绘制方法之“大杂烩”下一篇: 关于Fscommand的使用教程+打开方式的链接
关于flash动态读取xml数据来实现评论功能的所有评论