FLASH GAME教學..."

2007-10-01 1:34 am
請問flash game用咩軟件,希望你比網址我

有冇一個網頁直程教人整flash game(例如教整撞尊..)?因為其它既網既教學我唔知係教flash game定flash動畫...- -

要求多.....

回答 (1)

2007-10-03 8:55 pm
✔ 最佳答案
1.flash game就是用flash這soft作的
2.現新版本 flash cs3 (或稱呼 flash 9.0)
想學flash點整, 就要學action script ,
不同版本的flash 配合寫出的action script 版本也不同

3.action script大致就這樣


// 動作連貫控制
_root:hit = 0;
// 連擊記數
_root:lianji = 0;
// 持續按鍵控制
_root:h = 0;
// 能量參數
_root:s = 0;
_root:h1 = 0;
// 分數
_root:scr = 0;
// 血參數
_root:hhp = 1;
// 大暴參數
_root:b = 0;
_root:b1 = 0;
// 大暴初始個數
_root:b2 = 3;
// 死亡不移動參數
_root:die = 0;
// 巨劍出現參數
_root:jujian = 0;
// 被定參數
_root:bd = 0;
// 過fm參數
_root:pass = 0;


4.或者這是控制上下左右跟攻擊的

// 移動上
onClipEvent (enterFrame) {
if (this, _y>160) {
if (Key.isDown(87) and _root:die<>1 and _root:bd==0) {
setProperty(this, _y, getProperty(this, _y)-10);
}
}
}
// 移動下
onClipEvent (enterFrame) {
if (this, _y<365) {
if (Key.isDown(83) and _root:die<>1 and _root:bd==0) {
setProperty(this, _y, getProperty(this, _y)+10);
}
}
}
// 移動左
onClipEvent (enterFrame) {
if (this, _x>0) {
if (Key.isDown(65) and _root:die<>1 and _root:bd==0) {
setProperty(this, _x, getProperty(this, _x)-10);
}
}
}
// 移動右
onClipEvent (enterFrame) {
if (this, _x<480) {
if (Key.isDown(68) and _root:die<>1 and _root:bd==0) {
setProperty(this, _x, getProperty(this, _x)+10);
}
}
}
// 攻擊
onClipEvent (enterFrame) {
if (Key.isDown(74)) {
if (_root:hit == 0 and _root:h == 0) {
_root:h = 1;
if (_root:lianji == 2) {
gotoAndPlay(35);
if (_root:jujian == 1) {
with (_root.juj) {
gotoAndPlay(25);
}
}
}
if (_root:lianji == 1) {
gotoAndPlay(25);
if (_root:jujian == 1) {
with (_root.juj) {
gotoAndPlay(15);
}
}
}
if (_root:lianji == 0) {
gotoAndPlay(15);
if (_root:jujian == 1) {
with (_root.juj) {
gotoAndPlay(10);
}
}
}
}
} else {
_root:h = 0;
}
}




就要把這些學會
便可作簡易game

要多跟會的人請教 好像跟著師父學 去慢慢累積不同方法
參考: 自己blog上面也有些flash game的文 我的Blog http://thought01.blogspot.com/


收錄日期: 2021-04-11 22:09:13
原文連結 [永久失效]:
https://hk.answers.yahoo.com/question/index?qid=20070930000051KK03547

檢視 Wayback Machine 備份