Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Moving Bars



Sorry guys, I'm a newbie. In order to do this effect: www.dnastudio.com

Do you just use tweens or actionscripting? If anyone can help me, I would greatly appreciate it.

Thanks in advance,
-Meezee



FlashKit > Flash Help > Flash ActionScript
Posted on: 08-27-2004, 05:44 PM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Moving Bars
Hi All!

Can anyone suggest a tutorial for "moving bars." I know this might not be the proper term for it, so I snagged an example. If you click here and look at her navigation bar, you'll notice the orange and white bars moving. How would I go about doing this? I prefer a tutorial, using a visual-aid works better for me. If not, your reply is appreciated!

Thanks a bunch

Moving Bars
This is a little silly - but I am trying to find an fla with moving background bars - sometimes called "blinds" - overlapping bars that move back and forth. I created one on my own but am not thrilled with it. Does anyone know where I can find this? I think it's fairly common although my searches in the movie area didn't turn up anything.

Thanks.

Moving Sound Bars
Good morning,

I just need to know how to do the moving sound bars. In other words, I need my bars to move with the music rhythm. Also, when I click on it, the soud will be on or off. Thanks

Horizontally Moving Bars
Hello,

Can anyone please let me know how can I make horizontally moving bars, like the one of a Music Equilizer. I dont want it to sync with music, just want to know how can I achieve the effect.

Kind Regards,

Farakh

Moving Sound Bars...
Hello,

I was wondering if there was a way to synchronize movieclips with a sound (i.e. make a bar move up or down according to variations in the music) to give the feeling of audio levels.

Does anyone know if this is possible?

Moving Lines/bars In Background
I'm new to Flash but have done a few very simple things for the company I work for. I was wondering, how would I go about creating the lines/bars in the background that are on the following site:

The Meridian Group

Are there any tutorials that explain this? I have seen it on a few sites and would like to replicate this in one of my own personal sites.

Thanks!

Mike

White Bars Moving Through Actionscript
Please have a look at the attached swf link. And tell me how to create a small white bars (going right to left) on the red background in the starting. I think this is created through any
actionscript but which one ?

Link
----
http://sv2.3dbuzz.com/vbforum/attach...&postid=762022

I'm Trying To Accomplish Moving Scroll Bars
I'm trying to make the moving scroll bars on the left side of the page, I basically want to try to re-create the menu on this site www.lindo.co.kr

Also, you know for each button you click on the menu, on the right hand side a big box with a small border opens right? For EACH link it has a box with different items inside, So for each link that you click on the menu, it opens up on the right side with a new box, does that mean that EACH link on the left is A separate movie clip that opens on the right? Each link is connected to a separate movie clip?

Can anyone help me. Thanks
My aol screen name is
pspromiseme
and my yahoo screen name is
pspromiseme

Thanks a lot.
If you can help me I will try and pay you over paypal depending on how much you want.
Thanks.

Volume Bars Moving To The Amplitude Of The Sound?
You know like on winamp and some stero systems, the louder the little green bars that go up and down for the amplitude, and in specific decible ranges? is this possible and is there a tutorial somewhere with information on this?

EDIT : An example of what I mean is here on Flashkit in the Loops section when you preview a loop.


Thanks.
[Edited by Corpse X on 05-25-2002 at 08:12 PM]

Anyone Have A Small Sound Control With Moving EQ Bars
im looking for the movie that you see on a lot of websites that is really small and tucked into the corner of sites. its the sound on/off movie with eq bars that go with the music.
anyone have an fla.

Randomly Moving Horizontal Bars/ Lines
Hi all,

Could anyone please tell me how do I do the effects on this page (the moving bars effects at the bottom of the page)?

http://a4desk.com/lib/show.php?id=A4DP026

Thanks.

Jeremy

Randomly Moving Horizontal Bars/ Lines
Hi all,

Could anyone please tell me how do I do the effects on this page (the moving bars effects at the bottom of the page)?

http://a4desk.com/lib/show.php?id=A4DP026

Thanks.

Jeremy

Moving Bars Conceal/reveal And Button Back Up?
Hello

Using Flash Prof 8...Couple of major things that I have no idea how to do...if you go to

http://www.enhancedwireless.net/Tech...Mechtest.shtml

and press play on the "ODMA" demo graphic (it's a work in progress not complete), you'll see the vise-like bars closing and shutting - I need for the text to be hidden then revealed as the bars move across the text...how do I do this? I'm newish to Flash so as detailed (code whatever) as you could be, would be appreciated greatly. Thanks in advance for your time.

And if you let the whole clip play to end (under :50) it jumps back to the beginning, which I want, but you'll notice that the "play_mc" button pops up then immediately disappears...I need it to stay on as at the beginning.

On the last frame (actions layer) of my main mc called keyMech_mc is this code:

gotoAndStop("Scene 1", 1);
_root.play_mc._alpha = 100;

My play button which is actually a movie clip, play_mc, has various alpha code for it on my main timeline on actions layer first frame as follows:

_root.KeyMech_mc.stop();

play_mc.onRollOver = function(){
this.gotoAndStop("over");
}
play_mc.onRollOut = function(){
this.gotoAndStop("out");
}
play_mc.onRelease = function(){
this.onEnterFrame = function(){
so = this;
rate = 5; // choose number between 1 and 100

newAlpha = so._alpha - rate; // subtract rate from current visibility
if(newAlpha > 0) { // continue fade
so._alpha = newAlpha; // set newVolume to decrease visibility

}else if(newAlpha == 0){
so._alpha = 0;
}

}
}


(ABOVE CODE WAS KINDLY GIVEN TO ME BY A FLASHKIT VIEWER)

===========

Just wanted you to have all the info possible re: this play_mc so I can get it to stay back up at the end of the movie...

And I'm really stumped as to how to do the revealing bars thing.

Thanks for any help!

KB

Moving Bars Conceal/reveal And Button Reappear -ho
Hello

Using Flash Prof 8...Couple of major things that I have no idea how to do...if you go to

http://www.enhancedwireless.net/Tech...Mechtest.shtml

and press play on the "ODMA" demo graphic (it's a work in progress not complete), you'll see the vise-like bars closing and shutting - I need for the text to be hidden then revealed as the bars move across the text...how do I do this? I'm newish to Flash so as detailed (code whatever) as you could be, would be appreciated greatly. Thanks in advance for your time.

And if you let the whole clip play to end (under :50) it jumps back to the beginning, which I want, but you'll notice that the "play_mc" button pops up then immediately disappears...I need it to stay on as at the beginning.

On the last frame (actions layer) of my main mc called keyMech_mc is this code:

gotoAndStop("Scene 1", 1);
_root.play_mc._alpha = 100;

My play button which is actually a movie clip, play_mc, has various alpha code for it on my main timeline on actions layer first frame as follows:

_root.KeyMech_mc.stop();

play_mc.onRollOver = function(){
this.gotoAndStop("over");
}
play_mc.onRollOut = function(){
this.gotoAndStop("out");
}
play_mc.onRelease = function(){
this.onEnterFrame = function(){
so = this;
rate = 5; // choose number between 1 and 100

newAlpha = so._alpha - rate; // subtract rate from current visibility
if(newAlpha > 0) { // continue fade
so._alpha = newAlpha; // set newVolume to decrease visibility

}else if(newAlpha == 0){
so._alpha = 0;
}

}
}

===========

Just wanted you to have all the info possible re: this play_mc so I can get it to stay back up at the end of the movie...

And I'm really stumped as to how to do the revealing bars thing.

Thanks for any help!

KB

[MX] Animated Menu Wit EQ Bars/Visualization Bars
Hi, I'm new. I've been around the world of flash, but I never really used it heavy. Only for buttons and sideshows. I want to try and make a navigation menu, with visualization bars in the background moving up and down as usual. Then put some buttons with a rollover effect. I know it is possible because I had used layers to have something animated in the background. Is it possible to do that? Does it kill a lot of bandwidth?

Slider Bars, Or Scroll Bars?
I'm looking at a web site that used scroll bars to move around a picture (.jpg) file. It is rather advanced since it also does a zoom in and out. I wanted to duplicate the pan feature, but I haven't seen it done anywhere else. Does anyone have any simple solutions to duplicate the features shown at this website?:

http://dsc.discovery.com/convergence.../bismarck.html

(Warning; If you're a history buff, you'll want to visit the whole website).

Help Required Progress Indicator Bars. NOT PRELOADING BARS AND NOT A PRELOADING QUE
Help required ! progress indicator bars. NOT PRELOADING BARS AND NOT A PRELOADING QUESTION!

OK I have a swf called audio.swf which just contains a 15 minute streaming audio file that it just dragged along the time line.

I want to have some visual indicators in the swf, so that the user has some info of what is going on:

What I require within the swf are the following:

1.Progress Bar: How much of the movie has been played. This will obviously go up as the timeline for the swf progresses.
2.Streaming bar: Giving the user an indication of the amount of swf that has currently been downloaded.
3.Time (minutes and seconds) that the movie clip has been playing for
4.Elaped time (time remaining)

As you can see I have attached no fla, as I am sure that these 4 visual indicators are all fairly simple to code of any of you action script daddies out there.

Any help on one or all the 4 things I require would be brilliant.

If anyone could help me this would be more than appreciated.
Cheers

Moving Vertical Bar Which Holds Moving Thumbnail Images When Mouse Is Over
Hi!

im not completely new to Flash MX - have utilised all basic animation tween/morphing /buttons
and very simple action script- movie controls - stop , back ,forward etc

however i need a moving bar feature, e.g. a moving news reel or a vertical bar which holds a number of images i.e.10 and
when the mouse is over - i want it to move downwards and when is not over the feature i want it to stop moving
(or even instaed of the feature to automatically scroll images i could also use a button to press to move through the images)

then: the thumbnail images from the moving feature i need to be selectable which then produces a larger version of the image on
another section of the page.

i dont no if i put this thread in the right forum!

if any one knows of any tutorials or has any suggestions to help implement this feature

i would appreaciate any help!
- dont really know where to start with it!
thanks

(i have looked at the flash kit tutorials but havent found what im looking for
dont even no if this is more of an animation or action script questions)

Slowly Moving Smoothly - Moving Photos And Pixel Smoothing
So, I'm slowly....very slowly moving a small thumbnail across my stage. The problem is that when the pic moves over a pixel it looks choppy, I want it to look smooth. The border of it looks especially choppy, it's distracting from the site.

Is there a pixel-smoothing option for the stage? or some equivalent?

Does my question even make sense?

Please help.
Thanks

How Do You Click On A Moving Button And Make It Stop Moving?
How do you click on a moving button and make it stop moving? Kind of like shooting a moving person i a flash game and they stop and die???

Moving Running Forward But Elements Moving Off Stage
I'm positive I've done it by the book. All symbols on the stage - one by one dragged them off the stage creating timelines - about 6 layers. Play the movie and all the elements start on the stage and move off. Just the way I wanted it but in reverse. Simple vertical and horizontal motions. My mistake must have been in the beginning somewhere - but where ?

Moving Across A Photo While Mose Moving With Acceleration
Do you know how to do this?
Example pages:
http://www.407.peugeot.com.pl/
http://www.pivotdesign.ca/

See Through Bars
Hello, I want to make a movie with a picture on the background of the movie and than lines that move over the picture but I want that you can see through the bars.
Does anyone know how I can do that?
If you don't know what I mean then go and take a look at http://www.incubusworld.cjb.net and watch the top menu, that's what I mean

Please help me.

Nav Bars
Sup everyone, im lookin for someone who hasexperience in creating menu's for a website and wondering if they may show me the way! my aim = ballitup332564
or post here thanks so much, i have a project i need to learn this for so any help would be apreciated ALOT! Thanks everyone - EnSanity

Help With My Bars
ok i found a cool site:

http://www4.tpgi.com.au/users/terorist/html/main.html

I want to replicate the nice menu bars that scroll on and off.


My version:

http://www.dekkershome.demon.co.uk

The problem is that i'm not coding it, when you roll-over a bar it moves the bar over and visa versa. If you move the mouse onto another bar before the original bar has finshed animating, they clog up. I need to find a way to reverse the animation while i can select other bars like in the original site.

can anyone help ?

I have attached my code

thanks

Moving Menu And Not (yet) Moving Arrows
Hi,

The title I guess say it all, huh?

But just to be sure.

I have a main menu wich goes right or left. Depends what categorie you choose. When it goes left I have to load a arrow movie wich goes left and for right has to load a moviw arrow which goes right (and not wrong). Thats means that there are two movies: arow left movie and arrow right movie. And both have to react at the moving menu, which were to load and play.
So first level would be the menu which ships from right to left.
Second level (under the menu) one of the arrow movie has to load depending which direction the movie goes.

(now Im confused. What was there I wanted??? A, right!)


I figured out that maybe its more confortable to load it from the library but also if it can be loaded from external files I dont mind. (I did the container thing before so I understand it a bit.

The arrow movies are movies played in the background, as the menu remains on top all the time.

The script for animating the menu is:

onClipEvent (load) {

_root.newposition = "null";

}

onClipEvent (enterFrame) {

current = getProperty(_root.drop, _x);

if (_root.newposition<current) {

distance = current-_root.newposition;

setProperty("_root.drop", _x, current-(distance*.1));

}

if (_root.newposition>current) {

distance = _root.newposition-current;

setProperty("_root.drop", _x, current+(distance*.1));

}

}

Moving Mouse Image Moving
hi everybody. i'm using flash professional 8 and i want to create something like this: http://www.kenzoparfums.com/FR/home/home_FR.html when moving the mouse on the stage the hole stage moves. how do i do that? thank you

Moving Objects: Moving Keyframes?
Can I move multiple layers on a timeline, so that they will all move. Basically I just want to move the location of the multiple layers.

Whenever I do this, it seems to move only some of them and thus the whole animation is messed, different starting points and ending points...a big mess.. It makes me want to cry.



Seems like there is an easy answer or I might just be the biggest chump on the planet.

Case

Moving Objects: Moving Keyframes?
Can I move multiple layers on a timeline, so that they will all move. Basically I just want to move the location of the multiple layers.

Whenever I do this, it seems to move only some of them and thus the whole animation is messed, different starting points and ending points...a big mess.. It makes me want to cry.



Seems like there is an easy answer or I might just be the biggest chump on the planet.

Case

Moving Across A Photo While Moving Mouse
Do you know how to do this?
As seen on 'http://www.pivotdesign.ca/'
main page.

Scroll Bars
Hi,

Can someone explain how this is done.

The scroll bars on the extreme right on

http://philterdesign.com/p2/flashplayground/

I mean how have you changed the color of the scroll bars.

Would appreciate an answer from Phil too.

Raj

Scroll Bars
Does anyone know the tag to remove "JUST" the bottom scrollbars?

Getting Rid Of Scroll Bars?
I am opening a new window with an swf embedded and I want no scroll bars. How can I achieve this?

Percentage Bars?
This is my first time on this board, so I hope i have the right forum for this!
I have been given a project where there is 7 questions, and the user must answer yes/no to them. (the questions are to the left, and the yes and no check boxes are to the right)
At the bottom of the screen they would like a 'live' bar (horizontal) that gives a percentage of how many questions they have answered yes and no to.
Basically the bar is colored red, and each time the user answers 'yes' to the question, the bar fills up with green. Since there is 7 questions, each question is worth 1/7. I know that the bar at the bottom needs a script that checks whether or not any of the checkboxes have been checked off or not, but I really have no clue where to begin with this.
Any help would be greatly appreciated.

SCROLL BARS
I NEED HELP!!! i dont know how to make a scroll bar work. Im not sure what to do. Do i have to make parameters for the scroll bar or what??
PLEASE HELP!!

No Title Bars? No One Seems To Know? Do You? HELP
I've been trying to figure out how to make my flash site without a title bar.

Example: www22.brinkster.com/gidip/


You know without the "blue explorer/ netscape bar"
I know I have to create my own and make the interface draggable, but how do I get rid of the bar?

Please help

mickeydelorenzo@yahoo.com

Growing Bars
i would like to no how on some peoles interfaces they make the navi bars appear as if they were growing

Scroll Bars
how do i make a scroll bar that scrolls down a dynamic text field?
thanks
-largefry

Audio Bars
Well...I want to know if anybody can hand me a tutorial or anything that shows me how to make a...well...those bars on the stereo that go up and down...i want a real one...not a animation that looks like one...
like when the music gets loud the bars go up...and when the music is soft the bars are low...you know...when you look on your stereo and you see those bars going up and down...i dunno is it's actionscript or anything...anyways can someone tell me or hand me a tutorial on it?

Progress Bars
I use SWiSH v 2.0 for Windows.
I was wondering how to create a progress bar in this program. Just a simple one that shows how much of the movie is loaded.

Help With Scroll Bars?
Could someone send me a script and example or something on how to make scrollbars that slide smoothly in flash .
I need one for a movie clip which is only part of the hole movie lets say bottom left corner.

Movie Bars...
don't you know how a dvd movie when played in 2:1 widescreen has a bar on the top and bottom? how do you do that in flash?

Scroll Bars
It is possible to link one scroll bar to two different text boxes.

Scroll Bars On The MAC
This might seem like an out there question....

I have used scroll bars in my flash movie and published it. The scroll bars work on any PC and on some MAcs... but not on all MAC's. How could this be? Is the code I am using somehow inconpatible with some browsers on the Macintosh platform?

Any help would be most appreciated.

Scroll Bars
Hello all. I am working on a site that requires the use of a text field with scroll bars. Now, my problem is that I already have much of the site drawn on the stage, and it will not allow me to place the scroll bar so that it works. I have tried placeing it on a new layer, and a new scene. It will work if I create a new file but that does not help me with the site that I am currently working on.

Any answers.
Thanks in advance.

Task

Scroll Bars ?
Does any1 know the easy way to make Scroll bar in Flash 5 & MX ?
For a beginer level ?
thanx

Scroll Bars
I have created a text field in a flash movie using a scroll bar. But when I try to make line separations, text disappears. I am using the my text= tags for the text to be shown I know this posting may be a little ambiguous, but if anyone can help, it'll be much appreciated. Thanks.

PS. if anyone knows a better and easier way for scrollbars, let me know please.

Help With Loading Bars ... PLEASE
I was wondering if anyone could tell me the action scripts on how to create
loading bars... and if not... than an already ready loading bar which I could use
would be great .





Thanks for help all!!!
Thanks a lot!

Scrolle Bars
hmmm

i have flash MX and i needed an actionscript to change the colour of my scrolebars on my website.


e-mail bsbsk78@hotmail.com

Copyright © 2005-08 www.BigResource.com, All rights reserved