Featured FLA » Author: Surjit Dhami » Title: Book » Description: Book » More by Surjit Dhami
Featured Site » Posted in the Flash Kit Links section » Title: All-American Rejects » Description: Get to know this great band by exploring their "practice room".
Trading Customer Accounting (IL)Next Step SystemsUS-IL-Chicago
Bounding Box + Ball Author: Fraggs | Website: http://www.adeptdesigns.co.uk |
With our nice newly created clip, open the actions panel, then copy and paste the following code into it. I will explain what all the parts do afterwards.
onClipEvent(load){ speedx += 5; speedy += 5; } onClipEvent(enterFrame){ this._x = speedx; if (this._x>= 585) { speedx = -speedx; } else if (this._x <= 15) { speedx = -speedx; } this._y = speedy; if (this._y>= 385) { speedy = -speedy; } else if (this._y <= 15) { speedy = -speedy; } }