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


Categories Making an Info-Window with Scrolling Text
Author: Patrick Jansen | Website: http://orbita.starmedia.com/~pjv |

 
Page 10
«prev ... 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 ... next»

Adding the drag-scrolbar and nessary trigger.

Step 7 :

Now it's time for the dragable scrollbar. Create a button which will function as the draggable button. Name it scroll drag button. Because the button should be dragged in a straight line of a certain distance, we'll create a container Movie Clip for the button. Make a new Movie Clip and call it scroll drag mc. Place the scroll drag button in frame one of its existing (and only) layer1 exactly with it's center point at x=0 and y=0 so that it won't shift some pixels the moment it's dragged.

To make the button in this Movie Clip draggable we need to add some action to this button. Remember that in the beginning we added a variable balkheight in frame 4 of layer actions in Movie Clip window? Besides using this variable later to calculate/set the position of the drag button, we are going to use it to set the dragable distance of the button. Add the following action to the button:

on (press) {
 startDrag ("", false, 0, 0, 0, _parent._parent.balkheight);
 _parent.gotoAndPlay(2);
}
on (release, releaseOutside) {
 stopDrag ();
 _parent.gotoAndStop(1);
}

By leaving the target blank, the whole Movie Clip in which this button is placed, will be dragable. It is contained however between position 0,0 and 0,80 since balkheight was set at 80. On Release or Release Outside, the dragging will stop. We are not (!) going to place Movie Clip scroll drag mc directly in Movie Clip textMC. Why not? Well, because we are going to create a container movieclip to make some things easier. First, by placing scroll drag mc into a container Movie Clip, the position will be relative to that Movie Clip so that it will be more flexible to position in Movie Clip textMC. Also, by placing it in a container Movie Clip, we can use actionscript to create more easily the movement of the dragable scroll button once the arrow buttons / scrollUp or scrollDown buttons are hold down.

«prev ... 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 ... next»

» Level Intermediate

Added: : 2001-01-25
Rating: 8.23 Votes: 123
Hits: 6461
» Author
Patrick Jansen is a freelance flash-, graphic- and webdesigner. Born in Holland, currently residential in Brazil. Worked for the compagnies Lectric b.v. (www.lectric.nl) and NIC b.v. (www.notenbomer.nl).
» Download
Download the files used in this tutorial.
Download (138 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