- All
- User Interface
- Scroll Bar Components
- Flash XML Calendars
- HTML / XML News Readers
- HTML / XML Tables & Grids
- Flash Contact Forms
- Date Picker Components
- Flash XML Guestbooks
- Color Picker Components
- Countdown Components
- Flash Tool Tip Components
- Image Zoom & Panning Controls
- Flash Text Tools & Editors
- Rating and Pool Systems
- Flash Weather Widgets
- 3D Object Rotators
- Shopping Carts
- Flash Maps
- Galleries & Slideshows
- Menus & Navigation
- Design & Effects
- Audio & Video
- Templates
- Applications & Games
- Various
- Adobe Flex
- Adobe AIR
- Free Flash Files
- Lightroom Plugins
- Dreamweaver Extensions
Posted by : Flashtuning
26 purchases
Package includes: MXP,FLA
Opens with: Flash CS3, Flash Lite, Adobe Air, Flex, Flash CS4
AS Version: ActionScript 3.0
Flash knowledge required: Advanced
Documentation: Excellent documented
Set two component instances to build a Scroll Pane
The Scroll Bar can be configured to work in either free or snapped to content modes. You can use it in either vertical or horizontal modes and you can configure two component instances to create a Scroll Pane.
Download FREE scroll bar component trial version with limited functionality before you buy from the Downloads tab.
The component features extensive visual customization option which include support for custom skins and color overlays.
This component is available for:
Flash CS3, Flash CS4 ( ActionScript 3.0 - AS3 )
If you already purchased the Advanced Scroll Bar AS 2.0 ( AS2 ) version, you are eligible for the SPECIAL $3 UPGRADE PRICE (just login, go to BUY NOW tab and you will see the Buy Upgrade option).
You can also download the HTML Help Books from the following location: DOWNLOAD HELP BOOKS
Check also other great FlashTuning.net products such as 3D XML Carousels, 2D & 3D XML Menus, XML Banner Rotators, XML Galleries & Slideshows, Video Lists & FLV Players, HTML News Readers by clicking the image below:
This product is included in ALL FILES PACKAGE:
- Price : $7
- buy now
- add to alerts
The Scroll Bar adjust itself dynamically
Hi,
This is a common issue previously discussed few times and is due to the scrollacceleration parameter causing the scroller to freeze sometime.
The solution is to go to the Advanced Options Group and activate the easing and choose the easing type and easing delay instead the default acceleration.
Best regards,
Flashtuning
Hi
very often when trying to sroll got error:
Error: Error #1502: A script has executed for longer than the default timeout period of 15 seconds.
at FtScrollBar/tween()
at FtScrollBar/oTqrRireWVWVlVIxgYvUaW()
Cannot display source code at this location.
Please help
We have sent you back a working example with the Scroll Bar and the Data Grid placed inside a Movie Clip and the Scroll Bar component is working just fine, hope this will help you with your application.
Send us a .fla example and other additional file(s) if any inside a .zip package at contact [at] flashtuning.net and we’ll get back to you as soon as we can with an answer for your particular dataGrid case. In the meantime you can use the product in your current and future projects to scroll anything you like.
I have tried every which way you have described and the viewAreaWidth and viewAreaHeight are smaller than the dataGrid in every instance.
Can I either send you along my example or can you send along an example to me showing the scroll bar working with a dataGrid?
When I try attaching to a dataGrid anytime the scroll bar is inactive, no roll overs, no nothing, can’t click or move it, when I attach it to a movie symbol that is not a dataGrid it works just fine.
Let me know whether I can send you something or you can send me an example, you can email me at temp@u4c.com and then I will provide you with my registered email through flash components unless of course you can access it. Or however you require to be able to show a working example of the scroll bar working with a dataGrid.
Please let me know, this was the sole reason we purchased your component because it stated in the features it would work with a dataGrid in AS3.
Thanks in advance.
Hi,
Can you explain what exactly happens when you attach the Scroll Bar to a Data Grid place inside a Movie Clip.
Did you properly set the viewAreaWidth and viewAreaHeight parameter values (to be less than the grid size , else the scroller will automatically hide or disable depending on the autoHide parameter value).
Best regards,
Flashtuning
Any Example you can give me showing how to attach this to a flash AS3 data grid would be appreciated. I have tried numerous ways and nothing has been successful. I have tried attaching the FtScrollBar to the dataGrid through ActionScript, I have tried placing the component on the stage and then pointing to the targetMovieClip pointing to the data grid with both the data grid and scroll bar on the same level. I have placed the datagrid into a new movie clip and then placed that and the scroll bar on the same level and so far nothing has resulted in being able to scroll an AS3 dataGrid as mentioned in the features.
Thanks in advance, other than this not working with the dataGrid every other test I have done works great on any other movie clip and the component is a great scroll utility now if I can get it to work on a dataGrid it would be perfect.
I am trying to scroll a flash data grid component with no luck so far. Am I missing something extra that needs to be enabled in order for the scroll bar to scroll the data grid component? It shows the scroll bar but does not allow me to click and drag the scroll bar once I publish.
Any insight as to how to get this to work with the AS3 Flash DatGrid component would be much appreciated.
Thanks
Hi,
Use the activateEasing and set the easingType and easingDelay parameters from Advanced Options group (this is a Flash Player 10 issue – not the scroller).
Best regards,
Flashtuning























help
and feedback
latest
news
latest
forum entries
Here is a simple function that you can use to load images, SWFs etc inside an empty movie clip:
function loadResource(resURL) { var url = resURL; var request1 = new URLRequest(url); var loader1 = new Loader(); var mc1 = this.getChildByName("mc" var nc = mc1.numChildren; if (nc) { var l1 = mc1.getChildAt(0); mc1.removeChild(l1); l1 = null; } loader1.load(request1); //start loading img/swf mc1.addChild(loader1); loader1.contentLoaderInfo.addEventListener("complete", this.finished_loading); }function finished_loading(e:Event) { trace("Loading completed." }, where mc is the instance name of an empty movie clip from the stage. You can simply call this function with the path string to your external SWfs and images.