Jump to content
Search Community

phish

Members
  • Posts

    4
  • Joined

  • Last visited

phish's Achievements

0

Reputation

  1. I have a tween that happens on one key frame. I have a simple button that when clicked moves to next frame. I want the tween to complete its movements before the user is able to click the button to move to the next frame. I thought an onComplete function would work, but the button is always activated. Can anyone point me in the correct direction? Thanks
  2. Thanks, here is the FLA. Once you click on a tab and then move the cursor quickly across the other links, sooner or later a tab will get stuck in the down position...It seems like it is something little I am missing...
  3. Good tip with the onReleaseOutside, but the issues seems to be with the onRollOver. How can I attach my FLA? Thank you...
  4. I am building a menu that when you RollOver the link a tab slides down, when you RollOut the tab slides back up and when you onRelease the tab stays in the lower position until another tab is clicked, then the "1st tab" slides up into the upper position. My problem is that sometimes when a tab is in the lowered position and I scroll across another link to have the tab slide down...the "2nd tab" stays in place for no reason at all. Here is my code... LinkBar.Partners.onRollOver = function() { TweenLite.to(LinkBar.TabPartners, 1, {_y:20, ease:Back.easeOut}); }; LinkBar.Partners.onRollOut = function() { TweenLite.to(LinkBar.TabPartners, 1, {_y:-45, ease:Back.easeOut}); }; LinkBar.Partners.onRelease = function() { TweenLite.to(LinkBar.TabMission, 1, {_y:-68, ease:Back.easeOut}); TweenLite.to(LinkBar.TabTriple, 1, {_y:-64, ease:Back.easeOut}); TweenLite.to(LinkBar.TabPrograms.ProgramsSubLinks, .1, {_alpha:0}); TweenLite.to(LinkBar.TabPrograms, 1, {_y:-82, ease:Back.easeOut, delay:.1}); TweenLite.to(LinkBar.TabProjects, 1, {_y:-45, ease:Back.easeOut}); TweenLite.to(LinkBar.TabAbout, 1, {_y:-45, ease:Back.easeOut}); TweenLite.to(LinkBar.TabPartners, 1, {_y:20, ease:Back.easeOut}); TweenLite.to(LinkBar.TabContact, 1, {_y:-45, ease:Back.easeOut}); LinkBar.Partners.onRollOut = null; TweenLite.to(LinkBar.MissionLink, 1, {removeTint:true}); TweenLite.to(LinkBar.TripleLink, 1, {removeTint:true}); TweenLite.to(LinkBar.ProgramsLink, 1, {removeTint:true}); TweenLite.to(LinkBar.ProjectsLink, 1, {removeTint:true}); TweenLite.to(LinkBar.AboutLink, 1, {removeTint:true}); TweenLite.to(LinkBar.PartnersLink, 1, {tint:0x55A7ED}); TweenLite.to(LinkBar.ContactLink, 1, {removeTint:true}); } For some reason it seems like the "2nd tab" will fire the onRelease when the onRollover should fire. Any thoughts? I feel like I am just missing something stupid...thanks for the help
×
×
  • Create New...