|
|
|
The Code For Fred:
onClipEvent(enterFrame){
if(Key.isDown(Key.RIGHT)){
this._x += 12;
this.gotoAndStop ("right");
}
else if(Key.isDown(Key.LEFT)){
this._x -= 12;
this.gotoAndStop ("left");
} else { this.gotoAndStop("still");
}
}
Stop Frame:
stop();
---------------------------------------...
Tags:
Flash Professional Cs3 Tutorial Moving The Character |
|
Put On Item:
onClipEvent(enterFrame) {
if(_root.char.hitTest(this)) {
_root.addToSlot(this);
}
}
Put On Frame:
currentslotnum = 1;
stop();
function addToSlot(item){
if(!item.found){ item._x = eval ("itemslot" + currentslotnum)._x; item._y = eval ("itemslot" + currentslotnum)._y; item.found...
Tags:
Tutorial Flash Professional CS3 Tutorial Creating An Inventory |
|
In this Dreamweaver training video you will learn Dreamweaver CS3, Creating a New Site, delivered by AGI's Fred Gerantabee. This video comes from the Dynamic Learning: Dreamweaver CS3 book published by O'Reilly and available at bookstores including Amazon.com. Buy the full-length DVD to get more...
Tags:
Dreamweaver AGI Aquent Graphics Institute Adobe |
|