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




Sliding Menu Bar



I have this website here, where I want to make the menu with a sliding bar:http://megamatique.ca/lvill/RDF/index.htmlNotice the 2 cursors in the menu? I want them to move according to the place where the cursor is pointing (the text)Also, i was wondering if it was possible that the cursors point to the current page that the user is browsing, like the css rule a:current.Any suggestions?



KirupaForum > Flash > Flash 8 (and earlier) > Flash MX 2004
Posted on: 03-29-2005, 03:59 AM


View Complete Forum Thread with Replies

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

Please Help With Sliding Menu Static Copy Works, Sliding Doesn't
I have a copy of the same sliding tab menu. On has actionscipt on the MC telling it to slide in/out. The other does not.

The moving one loses all it's sub-timeline actions.

The static one works fine. How do I get the moving to work?

Please help.

Will be very simple for the flash gurus out there.

RR

Sliding Menu - Need MC To Play After Sliding Has Finished
Hi,

I have created a Sliding Menu with about 12 sections. In one of the section/s I have a MC inside that I want to play. Is there a way to tell a MC to play once sliding has completed? Say based on pixel position (of the sliding MC) or something similar?

At the moment I'm using "on release" but with this method, the animation starts too early. (By the time you slide from section 1 to 12 the MC has already started playing)...



Any ideas?

Thanks in advance!!

Flash Sliding Menu / Horizontal Dynamic Picture Menu
Hello,

I am quite fascinated by the effect used to scroll a variety of pictures left and right with the ability to halt on a particular picture to click and navigate to another area of a site. Could anyone point me to a tutorial on how this is done? An good example of the effect may be seen on this site:

http://www.calatrava.com (click on the "slide show" link)

Would appreciate any pointers. Thanks!

Flash Sliding Menu / Horizontal Dynamic Picture Menu
Hello,

I am quite fascinated by the effect used to scroll a variety of pictures left and right with the ability to halt on a particular picture to click and navigate to another area of a site. Could anyone point me to a tutorial on how this is done? An good example of the effect may be seen on this site:

http://www.calatrava.com (click on the "slide show" link)

Would appreciate any pointers. Thanks!

Combine XML Menu Tutorial With Verticle Sliding Menu
Hey Guys,
IM trying to combine the dynamic XML menu tutorial found here on Kirupa with a tut ive found else where.

Now I under stand how the sliding tutorial works, but its based on some fixed dimensions.

Obviously the dimensions of the XML menu can change as items are added ...if any one could take a look a source (below) and tell me where to start referencing the variouse dimensions involved?

The news.xml and news.fla files contain a rough working model of the XML menu in case they are fo any use?

LINK: www.nineironmusic.co.uk/scrollmenu.zip

Scroll menu AS:


ActionScript Code:
mouseX = _ymouse;menuX = menu._y;if (mouseX > 280) {    diff = (mouseX-280)/15;}if (mouseX < 220) {    diff = (220-mouseX)/15;}if (mouseX <= 250 && menuX <= 56) {    setProperty("menu", _y, menuX+diff);}if (mouseX >= 250 && menuX >= -204) {    setProperty("menu", _y, menuX-diff);}if (menu._y >= 56) {    menu._y = 56;} else if (menu._y <= -204) {    menu._y = -204;   }gotoAndPlay(2);


Thanks... once again!
Zaid

Problem With Sliding Menu (menu.xml)
I have tweeked one of the free sliding menu's (menu xml) downloaded from a website.

We have made it to go vertical instead of horizontal, also we make it stop once the top or bottom of the menu reaches the top/bottom of the page. Therefore we have removed it from looping all over again. The problem that occurs is that once it does stop the last menu button jumps up a bit; and everytime we go up and back down it jumps again and this keeps on happening.

Also the top part does the same (going up), this only happens to the first and last buttons.

I have attached my file so you can see what I have done wrong and hopefully help me on this.

Thanks in advance.

Sliding Menu
//Variables
Hi,
I have this script for a sliding menu that works fine
except I need to have it stop sliding when the users
mouse is out of the navigation area(up or down).
This is probably not enough info but here is the script
and I would be happy to send anyone the fla if you
think you can help.

Thaanks



var stageWidth = 760;
var stageHeight = 42;
var st = 1;
var go = 42;
var halfStageHeight = stageHeight/2;
var speed = 0;
var scale = 1;
var maxScaleFactor = 4;
var minScaleFactor = 0.5;
var clipWidthNow = 902.85;
var actualClipWidth = 902.85;
var left2Right = false;
var right2Left = false;
var bigger = false;
var smaller = false;
//Initialize Movie
attachMovie("holderMovie", "holderMovie", 0);

_root.menu.holderMovie._x = stageWidth/2
for (var i=0; i< 2; i++){
_root.menu.holderMovie.attachMovie("menuMovie", "menuMovie" + i, i);
_root.menu.holderMovie["menuMovie"+i]._x -= i*acualClipWidth;
}
//Detect Mouse position and adjust speed
function move() {
if (_root._xmouse > 0 && _root._xmouse < stageWidth/5) {
_root.menu.speed = 15;
} else if (_root._xmouse >= stageWidth/5 && _root._xmouse < (2*(stageWidth/5))) {
_root.menu.speed = 4;
} else if (_root._xmouse >= (2*(stageWidth/5)) && _root._xmouse < (3*(stageWidth/5))) {
_root.menu.speed = 0;
} else if (_root._xmouse >= (3*(stageWidth/5)) && _root._xmouse < (4*(stageWidth/5))) {
_root.menu.speed = -4;
} else if (_root._xmouse >= (4*(stageWidth/5)) && _root._xmouse < (5*(stageWidth/5))) {
_root.menu.speed = -15;
}

if (_root.menu.speed < 0) {
_root.menu.left2Right = false;
_root.menu.right2Left = true;
} else if (_root.menu.speed > 0) {
_root.menu.left2Right = true;
_root.menu.right2Left = false;
} else {
_root.menu.left2Right = false;
_root.menu.right2Left = false;
}


if (_root.menu._ymouse < st)
tellTarget (menu.stop)

if (_root.menu._ymouse > go)
tellTarget (menu.stop)




for (var i=0;i<2;i++) {
_root.menu.holderMovie["menuMovie"+i]._x += _root.menu.speed;
}
}

//Detect clip location and remove and replace once clip is off-stage
function replace() {
for (var i=0; i<2; i++) {
if (left2Right == true) {
if (_root.menu.holderMovie["menuMovie"+i]._x > actualClipWidth) {
currentLoc = _root.menu.holderMovie["menuMovie"+i]._x;
removeMovieClip(_root.menu.holderMovie["menuMovie"+i]);
_root.menu.holderMovie.attachMovie("menuMovie", "menuMovie" +i, i);
_root.menu.holderMovie["menuMovie"+i]._x = currentLoc-(2*actualClipWidth);
}
} else if (right2Left == true) {
if (_root.menu.holderMovie["menuMovie"+i]._x < (-1*actualClipWidth)) {
currentLoc = _root.menu.holderMovie["menuMovie"+i]._x;
removeMovieClip(_root.menu.holderMovie["menuMovie"+i]);
_root.menu.holderMovie.attachMovie("menuMovie", "menuMovie" +i, i);
_root.menu.holderMovie["menuMovie"+i]._x = currentLoc+(2*actualClipWidth);

}
}
}
}

Sliding Menu Bar
a simple sliding menu bar nagivation that will move to the specific button when click and call URL in another window. it works initially but failed now goto <www.zeus-design.com/menubar.html> thanks!

[swf width=760 height=90]http://www.zeus-design.com/menbar.swf[/swf]
[Edited by stvlee on 12-13-2001 at 12:48 AM]

Sliding Menu
I am trying to do a sliding menu with Actionscript like the one on the Ultra16.com site, where there is Company Overview, Case Study, Process etc, but I cannot seem to find the right solution. Does anyone has the solution or else, is there a good tutorial which I can follow to create this kind of effect?

Your help is very much appreciated!

Thanks

Sliding Menu
can anybody explain me how this menu is made?

http://www.ausoleil-visual.com/

TIA

Sliding Menu
I've seen a beatiful menu over the net at this url: http://www.eskedahl.se/flash.html
Can anybody try to copy it and send it to my email? I am an half newbie and I cannot reproduce it!
Thanks!

Sliding Menu
Hello,

I looking for example how to control from main movie (menu 1,2,3) to control another movie (where are sliding images 1,2,3). I know how to access to another movie but I dont know how can I control exactly position of sliding images (actionscript), or if someone can explain me how to do that.

Thanks

Sliding Menu
Hello,

I looking for example how to control from main movie (menu 1,2,3) to control another movie (where are sliding images 1,2,3). I know how to access to another movie but I dont know how can I control exactly position of sliding images (actionscript), or if someone can explain me how to do that.

Thanks

Sliding Menu
Hi

I want to make a menu with pictures moving horizontally back and forth, and the speed is going to depends on the mouse positions. Also, when I click on one of the pictures in the sliding menu, the bigger picture is going to show on the side. Can you help me how to do this or tell me where I can get the sample file? I have the sample file for the slider menu with texts in it, but i can't get it work with pictures in it.
Thanks very much for everyone who's trying to help me on this.

Camsoon

Sliding Menu
Hi!

I want to make a meny split in "half" when I push a specific button. The lower part will then slide down and take with them 2 sub cats for the specific button mentioned before.
I have 4 layers:

1: Button 1-4.
2: A mask to hide the 2 sub cats buttons benieth layer 1.
3: Buttons 5-10.
4: Background.

I have tried to find a good lesson in Flash MX but I think it leaves much to wished for, so here I am trying to get some help.

Where do I start and where do I go from there?

Mark

Sliding Menu
I'm looking to creating a sliding menu...I'll have about 20 thumbnail pictures along the side of a page around 800 x 600. Obviously I can't fit all 20 thumbnails on the page at once so I want a slider bar so that the user can slide from top to bottom of the thumbnail list. I'm using Flash MX BUT I need to output my file to Flash 5, since I'm restricted to using my Flash file in Director 8.5 which only supports up to Flash 5 SWF files.

Anyone know of a way to do this? Please advise....Thanks!!!

-Foochuck

Sliding A.S. Menu Bar
I am trying to adapt a .fla it to my needs but there is code a bit everywhere : ) and i an not soo good.
Is just a bottom menu thumbnails bar with a mousover to slide some pics above in a clear way but i cannot make the small pics and the moving ones collime.
the pics are suppose to slide but they goes with no sense.
if u fell help .
the ugly buttons will be replaced with some nice thumbnails.

I'de like to know if iz possible to make it works without get into the code otherwise i won't be able to understand it.
thanks

Sliding Menu Bar.
This may be a stupid question, but I need some help. I want to build a site with the similar sliding menu bar/ bars, as seen on www.brokensoundrocks.com and www.misssixty.com My question is: Is this one movie, with many starts and stops, in which when you would click a button it would tell you, "Go to frame, 23, in same movie" ? If anyone could break down this for me it would be a huge help, I have tried to find numerous ways of doing this but no sucess yet.
Thanks and best Regards.
-GG.

Sliding Menu/NAv. Bar
This may be a stupid question, but I need some help. I want to build a site with the similar sliding menu bar/ bars, as seen on www.brokensoundrocks.com and www.misssixty.com My question is: Is this one movie, with many starts and stops, in which when you would click a button it would tell you, "Go to frame, 23, in same movie" ? If anyone could break down this for me it would be a huge help, I have tried to find numerous ways of doing this but no sucess yet.
Thanks and best Regards.
-GG.

Nav/ Sliding/ Bar/ Menu
This may be a stupid question, but I need some help. I want to build a site with the similar sliding menu bar/ bars, as seen on www.brokensoundrocks.com and www.misssixty.com My question is: Is this one movie, with many starts and stops, in which when you would click a button it would tell you, "Go to frame, 23, in same movie" ? If anyone could break down this for me it would be a huge help, I have tried to find numerous ways of doing this but no sucess yet.
Thanks and best Regards.
-GG.

Sliding Menu
Hi, do you know the script to make the effect achieved by clicking on the letters "b,l,o,n,d,i,e" on this site:

http://capitolrecords.com/blondie/

Someone said this was just some code on the buttons which specifies the position of the scrolling movie clip. Thanks in advance.

Sliding Menu
Hi,

I built this menu using code that I found on this forum. Everything is working great except for when the main menu goes up or down, the sub menu seems to come partially out then go back (the sub menu isn't supposed to move until you mouse over one of the buttons). I can't figure out what is causing this to happen and was hoping someone here may be able to help.

Thanks in advance.

JMK

Sliding Menu- How?
It probably very simple to all of you, but I don't understand the way
of doing sliding menu. this is the simplest menu you can imagine.
It just pop up from right to left.
details can be great.
thanks

Sliding Menu Help
okay.. here's the deal. i was doing a sliding menu tutorial online.. did everything the tutorial said.. i still CANNOT get the sliding menu to work.. i was hoping there would be an expert out there who could help me get this thing working for me.. i'm going to attach the file to this posting... please someone download it and get it working for me... probably something stupid but i really really want it to work.. i've been working on this thing for hours now.. !

Sliding Menu
Have a sliding menu , that contains 2 MC's , a Background Box & a MC containing 4 buttons. The menu slides up all fine etc , but the buttons for some reason will only show the Up effect , not the Over. Any ideas ? , probably summin simple. Brain aint on today

-edit- Aint tried the Onclick function either , but i doubt that also works.

FLA attached

http://www.liquid-webdesigns.co.uk/gynx/Site.fla

Sliding Up Sub Menu
Hi All,

I am trying to design a menu system in which the sub menu fades in in an upward direction. I can get it to slide up on mouse over and slide down on mouse out but I can not get it to stay so that you can select the submenu buttons. I have attached my file. Any suggestions? PS. This has to be done in Flash 5.

Sliding Menu
gooday all, i'm having a bit of trouble that I just can't quite get my head around. See what I'm trying to do is make this menu(attached) so that when you click on one of the links, they slide out to the right....now, I have the sliding part down. But seeing as there are 4 items in the menu (about, services, work, contact) I would like the menu to work so that there can only be one item selected at a time

(ex. u click on "about", it slides out to the right, and then u click on "services" and "about" slides back to the left with the rest and "services" slides out to the right....a bit confusing)

The BIG problem here is I can't get an item in the menu (ex. "about") to function so that if ANY of the other items are selected it must move back to the left. So far all I've accomplished is it's acknowledgment of ONE other item.

Here is my code:


Code:
_root.about._x += rate;

if (_root.services._x >= 32){
targetx = 31.9;
}
else {
targetx = 80;
}
if (_root.work._x >= 32){
targetx = 31.9;
}
else{
targetx = 80;
}
if (_root.contact._x >= 32){
targetx = 31.9;
}
else{
targetx = 80;
}
For reference: targetx = location of the item (31.9 = original position, 80 = when it slides out to the right)

It seems that with this code, flash only acknowledges the LAST If statement "if (_root.contact._x >= 32..."

THE QUESTION: Is there a way I can make it so that there can only be one item selected at a time? Using If statements or not...doens't matter

hope this makes sense =/

Sliding Menu
I am trying to get a sliding menu to work. I found a good tutorial on http://www.wildform.com/tutorials/sc...059881fc9&ref= but I need to change the size and am having problems with alignment and speed. I have put the original fla on http://www.gregbrophy.com/ixion/flash/ixionnew.fla

here is the code code: xm = 0;
//function to set the xpos of the movieclip
function xpos(bar_length,mul)
{
hpos = 0;
scroll_length = 814;
incr = bar_length/scroll_length;
xm = _xmouse;
if(_xmouse <= 10){xm = 10;}
if(_xmouse >= 407){xm = 407;}
scroll_x = hpos - xm;
scroll_x = scroll_x * mul;
x_pos = scroll_x * incr;
x_pos = x_pos + hpos;
return x_pos;
}

_root.onEnterFrame = function ()
{

// call function xpos
x_pos = xpos(400,.20);
with (bg)
{
_x += (x_pos - _x)*.4;
}

// call function xpos
x_pos = xpos(814,.75);
with (menu)
{
_x += (x_pos - _x)*.4;
}

}

Thanks,

Greg

Sliding Menu...
hi guys,
i have a menu and on some of the buttons when they are rolled onto i want the bottom half to slide down revealing sub-menu's in a button. and when the user rolse of i want the menu system to slide back into place. i attached a file to make my bad expalnantion easier to understand
thanks again,
tom

ps. I found something similar to what I needed but it seems to be quite mc heavy, which will slow it down I think. I also want the menu to reveal submenu's when the mouse roll' over it not once clicked, and to move more 'elastic';

http://www.flashkit.com/movies/Inte...-9094/index.php

Sliding Menu
hello expert flashers!

I am in need of your help. I'm still a beginner in making designs in flash so please bear with me.

My problem is this: A slider menu that has a link that calls html or php files. When I click on the thumbnail images or button from the slider menu, it will link to an html or php file similar to this website: http://sureseats.myayala.com/comingsoon/ This site has arrows (left and right) so when your mouseover on the left and right arrow it would move according to the direction you want. In addition, when you click on the thumbnail, you will be directed to a url (which is fine) but no pop windows. Just opening on the same window.

Somehow, this tutorial works http://www.kirupa.com/developer/mx/infinite.htm ) however how do I place the left and right arrows? the links or urls? no pop windows just opening on the same window.
I know I'm asking a lot from all of you but I have been searching for tutorials all day and I haven't found what I've been looking for. I have to admit I'm not good in creating action scripts that is why I'm asking for help.

If you can help or suggest a tutorial, please email me at this address: jazgirl20@mail.com I'll be checking my mail and kirupa forum for any replies.

Thank you and have a nice day!

Regards,

Jazgirl

P.S. Tutorials can be Flash MX or Flash MX 2004

Sliding Menu Help
Within my site I'm trying to incorporate a sliding menu display, similar to the one used at www.digforfire.co.uk dose anyone know where i could find a tutorial or fla. file for such a menu?

Any help gratefully received.

Thanks,
Laurence.

Sliding MENU Bar
Hi,

Can someone show me how to create a sliding menu bar exactly like the one at J. Robert Scott: http://www.jrobertscott.com/home.html

Can it be done using Action Scripting? I've enclosed a 'jpeg' of how i wanted to use it on my website.

Thank You.

Warm regards, Royroytorres@msn.com

Sliding Menu
does anyone know the tutorial that when you click on a button it scrolls over eitehr left or right to a new content



kind of like this

http://www.webagent007.com/2001/default.html

Sliding Menu Help
http://www.tarkan.com/English/FotoAlbum.php

where can i get a menu like this??
i need the fla which is easy to modify /

thanks

Sliding Menu?
How is this done ? can someone point me 2 a tutorial? i cant seem 2 find one.
go to this site and click on "authentic" http://www.kappausa.com/
the shirts slide across depending on where u move your mouse.
Can anyone help me out please?

Help With Sliding Menu
i have a slide menu, it is working proper for the 1st level but on with other levels

level one plays: Aboutus | Services | etc
when cliking on Aboutus Services etc... should be nonvisible, another menu level two is played ie. aboutmenu which plays
the compnay| legend | history| home

level two is not playing proper

here is the fla ..

http://194.170.31.182/dxb/menu.fla

help pleeeeeeeeeeeeeeeeeeeeeese

thanks indeed

the PREVIEW
http://194.170.31.182/dxb/menu.swf

Sliding Menu Like This:
Hi i was hoping someone could point me 2 a tutorial on how to make a sliding menu like this one: (click on "authentic" and check out the shirts at this site) www.kappausa.com
Cheers guys,
Mark

Sliding Menu Help
Hello, I am trying to find a good example of a sliding menu like on the site

http://www.oceanicsystems.com/

The menu in question is the one that appears after you click on the "products" link. Does anyone have an example of such a menu?

Sliding Menu.
hi all,

i have been trying to discover how the sliding menu bars work. i found an example here at www.bestseller.be

basically make a movie, create buttons within movie. but it does not seem to go right, and i have tried to find a tutorial to discover how it works. any help at all would be greatly appreciated! thx

Sliding Menu
Hi
Can anyone tell me where I can find a script or tutorial for a sliding menu like the one on this website (the one in the main area of the page: Terracotta, Timber Flooring, Garden Makeover)...

http://www.boral.com.au/hg/index.asp...den&site=boral

Sliding Menu
Hi,

I want to make a sliding menu just like the one they have on:
http://www.zeusogco.dk/

How do I do that??

[ Sliding Menu ]
Hi,

I want to develope a menu that has one sliding rollover effect.
In short its a horizontal menu... once you press for example
"about" the rollover movie clip slides horizontally untill it is over
'about' button and stays there... so as you press each button
the rollover (little movie clip) get repositioned to be over the button
i'd preffer that it does the easing effect...something smooth
and maybe small bounce of wall type thing at the end before it
stops ( so left->right movement untill it comes to a complete stop)

Any ideas for the code on how to do this ??

=( over )=>=======[ about ]================

(imagine that the above image represents the menu
and the over needs to be scripted so that it slides
over the "about" button)

[F8] Sliding Menu Help
hi,

i´m trying to do a sliding menu but its not even moving, not sure what I´m doing wrong. I created my content movie clip with all the stuff in it.

but not sure where to get the slide thing going..

can somebody help me figure this out pls...?

I really appreciate all the help anybody can provide..

Sliding Menu Bar
Hi,

I need some help creating a sliding menu bar that follows the cursor on vertical constraints. I'm still new to action scripting so I'm wondering if anyone can point me to some good tutorials based on this.

Here is a simulation of what I would like to create.
http://www.pdmproductions4dacommunity.com/help.html

Thanks

Sliding Menu From MC
I've been trying to do a simple sliding gallery. buttons on the bottom that call a mc to slide into place based on Kirupa tute
http://www.kirupa.com/developer/flash8/slidingMenu.htm

got it to work in a separate fla. but can't incorporate it into my file. I've attached fla. go to collections then faucets. Bottom buttons instance names are b1 and b2. mc is named contentHold which contains two mcs, content1 and content2.

any help or suggestions for a simple sliding gallery?I'm looking for some inertia or smooth movement

thanks
here's the code




Quote:




var currentPosition:Number = contentHold.content1._x;
var startFlag:Boolean = false;
menuSlide = function (input:MovieClip) {

if (startFlag == false) {

startFlag = true;
var finalDestination:Number = input._x;
var distanceMoved:Number = 0;
var distanceToMove:Number = Math.abs(finalDestination-currentPosition);
var finalSpeed:Number = .3;
var currentSpeed:Number = 0;
var dir:Number = 1;

if (currentPosition<=finalDestination) {

dir = -1;

} else if (currentPosition>finalDestination) {

dir = 1;

}

this.onEnterFrame = function() {

currentSpeed = Math.round((distanceToMove-distanceMoved+1)*finalSpeed);
distanceMoved += currentSpeed;
contentHold._x += dir*currentSpeed;
if (Math.abs(distanceMoved-distanceToMove)<=1) {

contentHold._x = maskMovie._x-currentPosition+dir*distanceToMove;
currentPosition = input._x;
startFlag = false;
delete this.onEnterFrame;

}

};

}

};
b1.onRelease = function() {

menuSlide(contentHold.content1);

};
b2.onRelease = function() {

menuSlide(contentHold.content2);

};
b3.onRelease = function() {

menuSlide(contentHold.content3);

};
b4.onRelease = function() {

menuSlide(contentHold.content4);

};
b5.onRelease = function() {

menuSlide(contentHold.content5);

};

Sliding Menu HELP
Anyone knows how to acheive the menu effect as seen in this site?
http://www.thewreckers.com

Sliding Menu ...help
hey all new here. Been reading alot the past few days and just cant seem to be able to find the answer so it's time to ask for help.

I have created a sliding navigation, which will open up into an menu where different content will be loaded. What i cant figure out is to make 1 menu closes before another one opens up.

example: i open A menu content is loaded.....now i wanna open B menu but before that happens i want to make sure A menu will close first. How do i do that ?

Here's the sample of the swf file
http://www.mediamax.com/kogepan/Hosted/sample.swf

thanks!

[F8] Sliding Menu
I'm a newbie so here we go with the dumb-ass questions:

I'm am trying to create a menu for a website. It seems to me like it should be simple to do. There are a bunch of links as usual. The user clicks on a link and the arrow moves to the link he has clicked.
That's it.
But I'm stupid and can't do it.

Sliding Menu Help
resolved, thanks.

Sliding Menu Q
I have a site with a sliding menu panel and I need MCs on that panel to animate (expand) when the MC appears in the center area of the stage and retract when the panel slides the MC out of the center.

Should I set up an if then for the values of the _x. coordinates of the MC, or perhaps instance another mc occupying the center 1/3 of the stage and do a MovieClip.hitTest function.

Does anyone have any thoughts or know of any source fla.s with something like this?

any help is good help

thanx

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