摘要:
<?xml version="1.0"?><!-- Simple example to demonstrate the ColumnChart and BarChart controls. --><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="initApp()" backgroundColor="#FFFFFF" width="350" height=" 阅读全文
摘要:
<?xml version="1.0"?><!-- charts/PredefinedAxisStyles.mxml --><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"> <mx:Script> <!--[CDATA[ //导入相关包 import mx.collections.ArrayCollection; import mx.charts.*; import mx.charts.series.items.ColumnSerie 阅读全文
摘要:
CategoryAxis有一个叫做labelFunction的属性,这个属性的定义:指定一个函数,用于定义为CategoryAxis的dataProvider中的各个项目生成的标签。所以修改的原理:可以利用labelFunction得到每个Label,然后再对其进行修改。片段代码:<mx:horizontalAxis> <mx:CategoryAxis id="ca" categoryField="@date" title="August 2007" labelFunction="categoryAxisL 阅读全文
摘要:
<?xml version="1.0"?><!-- charts/PredefinedAxisStyles.mxml --><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"> <mx:Script> <!--[CDATA[ //导入相关包 import mx.collections.ArrayCollection; import mx.charts.*; import mx.charts.series.items.ColumnSerie 阅读全文
摘要:
曾指点江山,激扬文字 三更灯火五更鸡,寒窗苦读无人问, 一举成名天下知,父辈割肉弃袍凑学费。 谁知“谈情,说爱,泡妞,衣食无忧。 晴川历历,芳草萋萋。鸟朦胧,月朦胧。” 晃晃悠悠四载。 光阴似箭,日月如梭。 曾经梦想“一证在手,天下我有”。 然造化弄人。 毕业即失业,哪来的回哪里。 招聘会上挤死人,售楼,保安争的热火朝天。 有人为求职无耐喝厕水。 ...... 唉叹,天生我才必有用。 啥时才有用我时。 阅读全文
摘要:
#比较两个目录中有没有同名的文件,有就输出目录及名字#!usr/bin/perluse strict;use warnings;use Win32::OLE; #??win32 OLE?#Auther: lancer#Data: 3/12/2010 #Function: Find and list the files with same name between two folders#Version: 1.00#TODO:Add recursion sub-foldermy $src_dir = "C://bt1//game//builds//iPhone//tmp//res&qu 阅读全文
摘要:
<?xml version="1.0" encoding="utf-8"?><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="doDraw()" backgroundColor="#d6d4d4" backgroundGradientColors="[#FFFFFF, #FFFFFF]"> < 阅读全文
摘要:
package{ import fl.controls.Button; import fl.controls.TextArea; import flash.display.Sprite; public class test extends Sprite { private var b1:Button; private var b2:Button; private var b3:Button; private var ta:TextArea; publi... 阅读全文
摘要:
http://eclipseme.org/docs/installation.html官方站点Eclipse3.5 里面是是 Help->Install New Software->Add然后把网页上eclipseme的链接加进去下载安装 阅读全文
摘要:
google chart使用非常简单,用非常的简单的js代码就能实现很漂亮的常用的图表类型,下面是一个示例,直接保存为html文件,用浏览器打开就能显示图表,使用非常简单。<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title> Google Visu 阅读全文