- + P A

- 中文繁体版的最新ADOBE CS3套件

      软件 2007-7-19 21:58

中文繁体版的最新ADOBE CS3套件

(请直接用迅雷下载)

Adobe® Creative Suite® 3 Design Premium 软体是设计师在列印、网页设计和行动出版等工作上梦寐以求的工具套件。 它结合了全新版本的基本工具, 让您在整合且直觉式的环境中, 製作从专业版面设计到丰富的互动经验等各式各样的创意作品。

产品介绍

Adobe Creative Suite 3 Design Premium 结合了 Adobe Bridge CS3、Adobe Version Cue® CS3、Adobe Device Central CS3、Adobe Stock Photos 及 Ac

标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 秋沁5-1圆柱表面积计算

      AS 2007-7-15 23:20

这个作业是聪明和爱好讨论到半夜的成果,

var r = h=s="";
var shang = "爱好聪明为你加油!";
function sun(r, h) {
 return (2*Math.PI*r*r+2*Math.PI*r*h);
}
function myColor() {
 _root.ss.background = true;
 _root.ss.backgroundColor = 0x00FFFF;
 _root.ss.border = true;
 _root.ss.borderColor = 0xFF0000;
}
js.onRelease = function() {
 if (r == "" || h == "" || isNaN(r) || isNaN(h) || r<=0 || h<0) {
  s = "请输入正确的数据";
  myColor();
 } else if (h == 0) {
  s = Math.PI*r*r;
  myColor();
  _txt.text = shang;
 } else {

标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 随机出题

      AS 2007-7-15 22:59

var myarry = new Array("+", "-", "*", "/");
var h;
function mycolor() {
 a.background = b.background=c.background=true;
 a.backgroundColor = b.backgroundColor=c.backgroundColor=0x00FFFF;
 a.border = b.border=c.border=d.border=true;
 a.borderColor = b.borderColor=c.borderColor=d.borderColor=0xff00ff;
}
b1_btn.onRelease = function() {
 e = myarry[random(4)];
 m = a.text=random(1000);
 n = b.text=random(1000);
 mycolor();
};
function da() {
 switch (e) {
 case ("+") :
  h = Number(m)+Number(n);
  break;
 case ("-") :
  h = Number(

标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 循环顺播倒播方法(爱好整理)

      AS 2007-7-15 10:53

/循环顺播方法
next_btn.onRelease = function() {
 var vfm:Number = 1+tu._currentframe%tu._totalframes;
 tu.gotoAndStop(vfm);
};


//循环倒播方法
prev_btn.onRelease = function() {
        var vfmC:Number = tu._currentframe;
        var vfmT:Number = tu._totalframes;
        tu.gotoAndStop((vfmC-1-1+vfmT)%vfmT+1);//吉人循环倒播精华
//特别的这里如果把vfmC-1-1中的后一个-1换成一个变量vx,即有vfmC-1+vx,则
//实现了当vx为正值1时为顺播,当vx为负值1时为倒播,当vx为正负除1外的数值时
//实现了跳播作用。请深入理解tu.gotoAndStop((vfmC-1+vx+vfmT)%vfmT+1);
};


//==================================================================
//循环倒播方法又一方法
pr

标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()