Internet Commerce

Partners & Affiliates

Developer Channel


Featured Flash FLA
Gallery Downloads 11401 Flash Movies | 5 New Flash Movies Added
What's New | Top 100

Featured FLA

»  Author: Nick Kouvaris
»  Title: Znax
»  Description: Znax is a board game. Click 4 tiles of the same color and form squares as big as you can. You will erase all the tiles inside the square and collect points. Get maximum score if you make a square with game edges.
»  More by: Nick Kouvaris


Random FLAs | Add Flash Movie
Featured Flash Site
Gallery Downloads 4941 Flash Sites | 1 New Flash Links
What's New | Top 100 Flash Site

Featured Site

»  Author Agence WOP Digital Agency
»  Title: Electricdrum
»  Description: French WOP Agency, 3D websites, Flash (Papervision, Away 3D), event or institutional projects. The agency operates on all digital projects: consulting, design, graphic design, development, online communication. The WOP agency follows you on the implementation of original, creative and optimized digital projects.


Random Links | Add your own Flash Related Links
Flash Tutorials 1481 Tutorials 7 New Tutorials Added!
What's New | Top100

» How To Make A Simple Animation Using Christmas Clips
» Simple Step by step flash game tutorial Spot the diffrence
» How To Make A Moving Text Slide
» Create Flash Banner With Text Float Effect
» How To Make Zoo Photos Slideshow
» How To Make A Dolphin Photos Slideshow
» How To Make A Fathers Day Slideshow
» How To Make A Transparent Background of Your Flash File
» Create Flash Banner With Text Disco Light Effect Today we will introduce you a Text Disco Light eff
» Unknown Tag: Title10
Random Tutorial | Add Site


Tutorials Home What's New Top Rated Submit myTutes Random!

Search Tutorials


Tutorials Tutorials » Special_Effects

Categories Dragable Mask Effect
Author: Joshua Weitzman | Website: http://www.jcsaviorproductions.com |

 
Page 3
«prev 1 2 3

Dragable Masks in Flash 5

Adding the Script

While still in the edit mode for 'dragMovieClip', right-click on the button and select actions. (You can also select the button and choose the actions panel from the menu.) Add the following code:

on (press) {
  startDrag ("");
}
on (release) {
  stopDrag ();
}
You can define the drag area to the size of the background image as well, which I would recommend.

Now exit the movie clip edit mode and return to the main stage. Select 'dragMovieClip', set and give it the matching name in the Instance panel, 'dragMovieClip'. Right-click on the clip and select actions. Add the following code:

onClipEvent (enterFrame) {
  setProperty (this.bgImage, _x, -this._x);
  setProperty (this.bgImage, _y, -this._y);
}
This tells 'bgImage' to reset its position based on the position of 'dragMovieClip' on the stage. If 'dragMovieClip' is at 100, then 'bgImage' moves to -100 to offset the movement and give the appearance of the the bacground image staying still.

At this point you are done. Publish the movie and see your work. If there are problems, first check to see that you gave 'bgImage' and 'dragMovieClip' and instance name. If the movement is off, make sure the image in 'bgImage' is aligned to 0,0 and that it's original position is where you want it on the main stage. Finally, check to see that the action on your movie clip is set to 'onMouseEvent(enterFrame)' instead of the default 'onMouseEvent(Load)'. If you are still having problem go back through and double check all of your step. If you're really stuck you can email me at tutorials@jcsaviorproductions.com.

«prev 1 2 3

» Level Intermediate

Added: : 2002-02-16
Rating: 7.33 Votes: 70
Hits: 7093
» Author
Freelance web designer and youth ministries webmaster at The Church On The Way in Van Nuys, California, USA.
» Download
Download the files used in this tutorial.
Download (26 kb)
Get conversion and unzipping tools for PC and Mac here!

» Forums
More help? Search our boards for quick answers!

Please rate this tutorial, 10 is the top rating, you can also click the comments link to read/write a review.
10 9 8 7 6 5 4 3 2 1
Read or Post Comments