21-07-2005, 19:55
|
|
|
|
חבר מתאריך: 22.03.04
הודעות: 1,234
|
|
למי שלא ידע..
בקשר לתזוזה של MC,
אפשר לתת קוד כזה:
קוד:
onClipEvent (enterFrame) {
if(Key.isDown(39)) {
this._x=_x+10;
} else if (Key.isDown(37)) {
this._x=_x-10;
}
}
onClipEvent (enterFrame) {
if(Key.isDown(40)) {
this._y=_y+10;
} else if (Key.isDown(38)) {
this._y=_y-10;
}
}
בעת שאת המספרים אפשר להחליף ל:
Key.......................... Key code
Backspace................. 8
Tab........................... 9
Clear........................ 12
Enter......................... 13
Shift.......................... 16
Control...................... 17
Alt............................ 18
Caps Lock................. 20
Esc........................... 27
Spacebar................... 32
Page Up.................... 33
Page Down................ 34
End........................... 35
Home........................ 36
Left Arrow................. 37
Up Arrow................... 38
Right Arrow............... 39
Down Arrow............... 40
Insert........................ 45
Delete....................... 46
Help.......................... 47
Num Lock.................. 144
; :............................. 186
= +........................... 187
- _............................ 189
/ ?............................ 191
\Q ~......................... 192
[ {............................ 219
\ |............................. 220
] }............................ 221
'' '............................. 222
Function key........... Key code
F1............................. 112
F2............................. 113
F3............................. 114
F4............................. 115
F5............................. 116
F6............................. 117
F7............................. 118
F8............................. 119
F9............................. 120
F10........................... 121
F11........................... 122
F12........................... 123
F13........................... 124
F14........................... 125
F15........................... 126
Numeric keypad key............................................... .............. Key code
Numbpad 0................ 96
Numbpad1................. 97
Numbpad 2................ 98
Numbpad 3................ 99
Numbpad 4................ 100
Numbpad 5................ 101
Numbpad 6................ 102
Numbpad 7................ 103
Numbpad 8................ 104
Numbpad 9................ 105
Multiply..................... 106
Add........................... 107
Enter......................... 108
Subtract.................... 109
Decimal..................... 110
Divide....................... 111
Letter or number key .................................................. .......... Key code
A.............................. 65
B.............................. 66
C.............................. 67
D.............................. 68
E.............................. 69
F............................... 70
G.............................. 71
H.............................. 72
I............................... 73
J............................... 74
K.............................. 75
L............................... 76
M.............................. 77
N.............................. 78
O.............................. 79
P.............................. 80
Q.............................. 81
R.............................. 82
S.............................. 83
T.............................. 84
U.............................. 85
V.............................. 86
W............................. 87
X.............................. 88
Y.............................. 89
Z.............................. 90
0.............................. 48
1.............................. 49
2.............................. 50
3.............................. 51
4.............................. 52
5.............................. 53
6.............................. 54
7.............................. 55
8.............................. 56
9.............................. 57
https://2005-uploaded.fresh.co.il/2...21/36788640.fla
https://2005-uploaded.fresh.co.il/2...21/13174775.swf
(נמצא במעמקי בפרש)
_____________________________________
"ניסיון רב לימדני, שלא תמיד העובדה שמבקרים אותך, משמעה שאתה טועה", רוברט אנטוני אדן.
"לא נכשלתי. רק מצאתי 10,000 דרכים שלא עובדות", תומאס אלווה אדיסון.
|