Featured FLA
» Author: Bugra Ozden
» Title: Skatalog v9 - product catalog
» Description: Create your product catalog easly and publish on your website or Create your image gallery, documents list, portfolio. Fully XML Driven
» More by Bugra Ozden
Featured Site
» Posted in the Flash Kit Links section
» Title: Creative DW Image Show PRO
» Description: Creative DW Image Show PRO is a Dreamweaver extension which enables the user to create multimedia presentations. It combines the features of the popular Creative DW Image Show with the ability to add professional text effects to slides (similar to After Effects). The product is very customizable: the user can choose the duration of the transition effects, the slide motion start and end position, zoom and panning type for both images and texts.
With that said and done, test your movie. Just see if it works like the example so far.
If you would also like a scrolling background then make one and put it on a separate layer underneath the character MC on the main stage. Right-click on it, go to Convert to Symbol, and make it a movie clip.
Now put the following actions in the movie clip and it should work for you. E-Mail me if it doesn't.
onClipEvent (enterFrame) {
if (Key.isDown(Key.UP)) {
setProperty (this, _y, this._y+3);
} else if (Key.isDown(Key.RIGHT)) {
setProperty (this, _x, this._x-4);
} else if (Key.isDown(Key.DOWN)) {
setProperty (this, _y, this._y-3);
} else if (Key.isDown(Key.LEFT)) {
setProperty (this, _x, this._X+4);
}
}
Hope that works for ya! If you use this tutorial for any work then I would appreciate it! Thanks for reading!