|
Acorn catcher
|
Other links at Flash |
| 1. |
how to make people/things move with the arrow keys
|
|
|
a tutorial for begginers. 1.open flash. 2.create a new flash document. 3.create a movie clip of the person/thing you want to be able to move. 4.if its a person, animate it walking in an upward motion. 5. asign it these actions.(You can change the speed if you want) onClipEvent (load) { movespeed = 2; } onClipEvent (enterFrame) { if (Key.isDown(Key.RIGHT)) { _x-= movespeed; } if (Key.isDown(Key.LEFT)) { _x+= movespeed; } if (Key.isDown(Key.UP)) { _y+= movespeed; } if (Key.isDown(Key.DOWN)) { _y-= movespeed; } } 6.just copy and paste it. 7.press control and enter to watch it/him/her move!
|
| 2. |
Ninja Bonsai
|
|
|
Throw around, lift and drop this ball. Gravity effect takes it down to the ground it also bounces of the walls.
|
| 3. |
RSS feed reader
|
|
|
Add RSS power to your website. Read your favorite news, websites and blogs with style.
|
| 4. |
iMPlayer SL2 Flash Music Player
|
|
|
The Internet Music Player is a drag and drop setup. The iMPlayer can be embedded into a webpage, opened into a floating window or even played directly from your computer - even without an internet connection. PC and MAC EXE files are included! No knowledge of Flash is required... just simple copy and paste within some text files. Docs are included. There is an Example site setup to show you exactly what the download zip contains. The download has everything youll need to setup a music website: HTML templates, JPG and SWF album art, TEXT liner notes. Multiple playlist support. NEW - MULTI LANGUAGE SUPPORT. *You control the mp3 path per Track. This makes it possible to stream different qualities of mp3 from a single player. Have some playlists for dialup and others for broadband. You could also use this to have mp3s streaming from different folders on a per Track basis. The iMPlayer itself is only 112kb.
|
| 5. |
Creating Motion Tween in Flash
|
|
|
The Flash tweening is the most interesting part of Flash. It directly influences the way animation is done. Consider that you have to create an animated ball on the timeline that moves from one point to another in about 5 seconds.
|
|
|