Animation for menu items

This is a discussion on "Animation for menu items" within the Flash & Multimedia Forum section. This forum, and the thread "Animation for menu items are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Flash & Multimedia Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Jun 11th, 2007, 18:15
Junior Member
Join Date: Nov 2005
Location: Wisconsin
Age: 38
Posts: 27
Thanks: 0
Thanked 0 Times in 0 Posts
Animation for menu items

I am creating a menu animation in which when you select on a button menu item, a certain action takes place (for instance lets say a box of color expands down and stops. What I want to do, is if they then select on another button item from the menu, I want the box of color to return to its original location before the new selected box of color expands down (I hope my example makes sense.) Basically what I need to happen is for on release, the flash file needs to continue playing on the timeline until the color box returns and then goto and play at a new instance on the timeline. How would I go about doing that?
Reply With Quote

  #2 (permalink)  
Old Jun 12th, 2007, 14:15
Multimedia Specialist
Join Date: Apr 2007
Location: Arizona
Age: 25
Posts: 666
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Sgaspar11
Re: Animation for menu items

Maybe it's just early, but can you post some examples of what you are wanting to do? I can't really comprehend what you are wanting...



Cheers,

Scott
Last Blog Entry: Yay!? (Oct 8th, 2007)
Reply With Quote
  #3 (permalink)  
Old Jun 12th, 2007, 17:55
Reputable Member
Join Date: May 2006
Location: NC, USA
Age: 16
Posts: 355
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to MrMadison Send a message via MSN to MrMadison Send a message via Skype™ to MrMadison
Re: Animation for menu items

I think he's trying to get at submenu's.....or something like that.
Reply With Quote
  #4 (permalink)  
Old Jun 12th, 2007, 18:53
Junior Member
Join Date: Nov 2005
Location: Wisconsin
Age: 38
Posts: 27
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Animation for menu items

Here's an example on a site that is doing what I want. The top area of the site has photos that will fade in when you click on a thumbnail at the bottom. However, when you click on a subsequent thumbnail, the picture showing fades out before the next one comes in. So it seems that when you click on a thumbnail, it first plays more of the timeline and fades the photo out before gotoandplay the next fade in. Does this make sense how I am describing it?

http://www.katjaschweiker.com/
Reply With Quote
  #5 (permalink)  
Old Jun 12th, 2007, 22:30
Multimedia Specialist
Join Date: Apr 2007
Location: Arizona
Age: 25
Posts: 666
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Sgaspar11
Re: Animation for menu items

Ok, this is just a bunch of different movie clips loading into one another from the looks of things...

Here is a basic idea of what you are wanting, I would start with something like this, and then we can expand on other parts of it. I just don't know what your comfort level is with flash, and do to what is on that site is sort of involved.

Anyways, this look should get you started:

http://www.kirupa.com/developer/mx2004/thumbnails.htm
Last Blog Entry: Yay!? (Oct 8th, 2007)
Reply With Quote
  #6 (permalink)  
Old Jun 13th, 2007, 14:48
Junior Member
Join Date: Nov 2005
Location: Wisconsin
Age: 38
Posts: 27
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Animation for menu items

I'm failing you guys in trying to explain what I am trying to do. I wasn't really looking for the thumbnail thing in my example but rather the event of the fade out as it loads the movie.

Here's a link to another site that does what I am looking for.
http://www.the-medium.net/

When you click on a menu item, see how it first fades out the copy before the scene moves? How is it accomplished that when they click on a menu button, it plays the fade out and then goes to and plays the scene shift?
Reply With Quote
  #7 (permalink)  
Old Jun 13th, 2007, 15:00
Multimedia Specialist
Join Date: Apr 2007
Location: Arizona
Age: 25
Posts: 666
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Sgaspar11
Re: Animation for menu items

I got ya.

I'd imagine this can be accomplished with standard movie clips and a button telling the movie clip to:

Fade in and stop halfway though so the movie clip is at 100% alpha, then on a button target the movie clip.

Code: Select all
 
On (release) {
movieclip.GotoAndStop (key frame name);
}
Where movieclip is the instance name of the movie clip.

And then on the last key frame of the movie clip have it load another movie clip. That'd be one way to do it I'd imagine.
Last Blog Entry: Yay!? (Oct 8th, 2007)
Reply With Quote
  #8 (permalink)  
Old Jun 13th, 2007, 15:12
Junior Member
Join Date: Nov 2005
Location: Wisconsin
Age: 38
Posts: 27
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Animation for menu items

I will play around with this approach- Thanks!

Dave
Reply With Quote
  #9 (permalink)  
Old Jun 13th, 2007, 15:14
Multimedia Specialist
Join Date: Apr 2007
Location: Arizona
Age: 25
Posts: 666
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Sgaspar11
Re: Animation for menu items

Cool, another thing to think about is that this could also be accomplished using multiple .swfs - where it unloads and loads a new .swf then the buttons are pushed. I doubt this technique was used on this but if you file size gets huge, it's a way to decrease the load time upfront.

A couple of things to think about...

Let me know if you want some tutorials around this, I can look for some.
Last Blog Entry: Yay!? (Oct 8th, 2007)
Reply With Quote
  #10 (permalink)  
Old Jun 13th, 2007, 17:14
Junior Member
Join Date: Nov 2005
Location: Wisconsin
Age: 38
Posts: 27
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Animation for menu items

If you could drum up any tutorials that I could use for reference, that would be GREAT!

Dave
Reply With Quote
  #11 (permalink)  
Old Jun 13th, 2007, 18:51
Junior Member
Join Date: Nov 2005
Location: Wisconsin
Age: 38
Posts: 27
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Animation for menu items

Boy, I guess I'm confused now.

Here's the approach I'm taking. I have four menu items, each with a different color box for that button.

I have created swf files of the action that takes place when a menu item is selected. For instance, when the orange box is selected, it is to load the swf file named "OrangeAll.swf". This swf file contains the animation that goes on to introduce the contents of that menu item (i.e, the orange box is the "About Us" section. I have a Stop in that swf file where it stops once the contents is there. If I didn't, the animation would continue and the animation to remove the imagery of that section would take place. (i.e. the fade out concept from the link example I posted earlier.)

So what I would like to have happen is that if they select the button from another menu item, say the purple box, the actions for that purple button would be to finish playing the "OrangeAll.swf contents after the pause to remove the orange content area imagery, then load and play the swf for the purple area content, or the "PurpleAll.swf" file.

I don't think I'm headed in the right direction with this though.

Help???
Reply With Quote
  #12 (permalink)  
Old Jun 13th, 2007, 21:39
Multimedia Specialist
Join Date: Apr 2007
Location: Arizona
Age: 25
Posts: 666
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Sgaspar11
Re: Animation for menu items

Here you go...this will most definately get you in the right direction...I hope!!!

http://www.kirupa.com/developer/mx2004/transitions.htm
Last Blog Entry: Yay!? (Oct 8th, 2007)
Reply With Quote
  #13 (permalink)  
Old Jun 14th, 2007, 00:54
Junior Member
Join Date: Nov 2005
Location: Wisconsin
Age: 38
Posts: 27
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Animation for menu items

Hey, I think this is exactly what I am looking for! I will go through it and give it a try!

Thanks for your help!!!

Dave
Reply With Quote
Reply

Tags
continue on timeline, then gotoplay action

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
etoxin>> Funky Flash site some really funky interactive animation. Animation to play etoxin Free Web Site Critique 33 Jan 17th, 2008 12:39
summerizing multiple items at once. Javilen Databases 1 Sep 20th, 2007 20:45
passing items to paypal dab42pat PHP Forum 5 Jun 16th, 2007 10:13
PHP includes menu - problems with sub-items fallen_angel PHP Forum 3 Jan 19th, 2007 17:15
display mean and variance of purchased items chikenyd Other Programming Languages 1 Nov 4th, 2006 21:10


All times are GMT. The time now is 07:41.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43