A Flash Developer Resource Site














Internet Commerce

Partners & Affiliates














Developer Channel

internet.com


Featured Flash FLA
Gallery Downloads 11303 Flash Movies | 7 New Flash Movies Added
What's New | Top 100

Featured FLA

» Author: Nitin Tikhe
» Title: Cart
» Description: This Animation Tut is a fun and useful for kids below 15 years. Watch the Flag, Doors, Stick and Horse movements.
» More by Nitin Tikhe


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

Featured Site

» Posted in the Flash Kit Links section
» Title: Banana Swimwear
» Description: This is a banana swim wear interactive catalog we designed and animated in Flash


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

» Make flash video player for broadcasting live streaming video / TV on website
» How to convert the project file of Flash Demo Builder 2.0 into FLV file
» FLV to PSP for Mac - How to convert YouTube video to PSP on mac
» How to Convert FLV to MP4 for Playback on iPod
» how to download and convert youtube video to AVI with Leawo Free FLV converter
» Flash Multi-player Game Tutorial - TicTacToe
» How to make Flash elearning tutorials with screen recorder?
» Fader API:Slideshow with MovieClips on stage
» How to convert MS PPT file into an FLV File
» Unknown Tag: Title10
Random Tutorial | Add Site

Network Design Manager
The Computer Merchant, Ltd
US-VA-Hampton

Justtechjobs.com Post A Job | Post A Resume


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

Search Tutorials


Categories Simple animation slider
Author: koritis@hotmail.com

 
Page 3
«prev 1 2 3 4 5 next»

'

B2. CONTINUE WITH THE CODE

this.slide.onEnterFrame = function() {
 if (draged<>"yes") {
 this._x = Math.ceil((_root._currentframe*percentage)+origX-1);
 } else {
 _root.gotoAndStop(Math.floor((this._x-origX)/percentage)+1);
 }
};

This script does most of the work.
If the slider is not draged it reads the current frame of the movie, it converts it according to the proportion (percentage) and
it adds the original X position of the slider. Then it tells the slider to move to X coordinate = the result of the calculation.
If it is draged, a reverse procedure is happening and the slider tells the movie to go to frame = the result of the calculation.
In both cases I've used Math.ceil or Math.floor to round the result.

I'm sure you've noticed that I used minus or plus 1 to the calculation.
This is a small correction because the slider's starting point is 0 and the movie's 1st frame is 1.

this.slide.onPress = function() {
 _global.draged = "yes";
 this.startDrag(false, origX, origY, origX+(factor*Math.ceil(_root._framesloaded/_root._totalframes)), origY);
};

When the slider is pressed the following is happening:
The global variable draged is changing to "yes", to inform the onEnterFrame script and act accordingly.
The slider is draged. Its limits (on X axis) are its original position on the left and on the right (here is a very useful trick if you don't preload the whole movie)
a position which is dependable on how many frames of the movie are loaded.

this.slide.onRelease = function() {
 _global.draged = "no";
 stopDrag();
 if (played == "played") {
 _root.play();
 _global.togle = false;
 }
};

When the slider is released it informs the whole world about it, by using again the draged variable, it stops been draged and
if the state of the movie is "played" it tells the movie to play and gives "togle" its apropriate value.
The togle line, can be erased if you won't use the play/stop button ("stopbut" clip).

Take a breath. One more piece of code and we're done!

'

«prev 1 2 3 4 5 next»

» Level Intermediate

Added: : 2005-07-06
Rating: 7.34 Votes: 24
Hits: 1478
» Author
koritis@hotmail.com
» Download
Download the files used in this tutorial.
Download (17 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