Scroll « Operations « Flash Tutorials

Home
Flash Tutorials
1.Actionscript Programming
2.Animals
3.Animation
4.Colors
5.Design
6.Effects
7.Game Cartoon
8.Humans
9.Models
10.Nature
11.Operations
12.Shapes
Flex
Flash / Flex / ActionScript
Flash Tutorials » Operations » Scroll 

1. Biochimistu's Corner: Custom Scrollbar    biochimistu.blogspot.com

2. Learn2Flash: Animation: Beijing Olympics Scroll    learn2flash.blogspot.com

Learn2Flash: Animation: Beijing Olympics Scroll

4. ActionScript 3 Custom Scrollbar | FlashMyMind - Flash and ActionScript 3 Tutorials    tutorials.flashmymind.com

(Either JavaScript is not active or you are using an old version of Adobe Flash Player. Please install the newest Flash Player.)

7. Triple Scroll Gallery    flash-game-design.com

Triple Scroll Gallery

9. Scrollbar in Flash    flashdesignerzone.com

Scrollbar in Flash

10. Create A Custom Scrollbar In AS3 | Flash Essential    flashessential.com

//Create the URLLOader instance var myLoader:URLLoader = new URLLoader() //the data will come as URL-encoded variables myLoader.dataFormat = URLLoaderDataFormat.VARIABLES //Load using an URLRequest, even beeing local myLoader.load(new URLRequest("about.txt")) //onLoad handler listener myLoader.addEventListener(Event.COMPLETE, onDataLoad) //Error handling myLoader.addEventListener(IOErrorEvent.IO_ERROR, onIOError) myLoader.addEventListener(SecurityErrorEvent.SECURITY_ERROR, onSecurityError) //Could be an error or just a message myLoader.addEventListener(HTTPStatusEvent.HTTP_STATUS, onHTTPStatus) //add a listener for the complete event function onDataLoad(evt:Event){ Title_txt.text = evt.target.data.Title Comments_txt.text = evt.target.data.Comments } //error callbacks function onIOError(evt:IOErrorEvent){ trace("IOError: "+evt.text) } function onHTTPStatus(evt:HTTPStatusEvent){ trace("HTTPStatus: "+evt.status) } function onSecurityError(evt:SecurityErrorEvent){ trace("SecurityError: "+evt.text) }

11. Simple Scrollbar    flashkit.com

12. Nice Scrollbars    flashkit.com

13. Scrollbar - Getting Started - FlashValue.net    flashvault.net

Scrollbar - Getting Started - FlashValue.net12 Free Online Quiz Creators for Teaching Online Last post by: Sunnyme Date: 01.10.2009 06:26:27

15. Beijing Olympics Scroll | Flash Tutorials    webdesign.org

Step 1. Create a Default Flash document e.g. width 550, height 400. Using the rectangle tool (R) to draw a rectangle, Stroke Height is 2 and the Fill Colour is #BED0BF.

16. Do-It-Yourself Scrollbar | Flash Tutorials    webdesign.org

This is a pretty good scrollbar for scrolling text or other objects within your Flash movie. It doesn't require too much coding and it uses simple ActionScript commands that most people learn soon after getting Flash Designer. It resizes itself automatically for the number of lines in your HTML text field. Once it's complete, you can insert it into any SWF with an HTML text field or edit field, add two lines of code to your project, and have a working scrollbar. You can click an arrow to move the text up or down one line, click and drag the bar, or click in the track to make the text "jump" several lines.

java2s.com  |  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.