What is this effect?

This is a discussion on "What is this effect?" within the Flash & Multimedia Forum section. This forum, and the thread "What is this effect? 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 Apr 28th, 2007, 17:28
Junior Member
Join Date: Apr 2007
Location: Market Harborough
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
What is this effect?

Hi
I've got a new site to do where I need to scroll up and down a fishing rod. I have found a golf club site where they section the club into sections and when you click on a section it shoots to that part of the club.
The site is http://www.taylormadegolf.com/pickone/ (you then need to pick one of the clubs to see the effect).
I'm not expecting somebody to tell me how to do this, but I could do with knowing what this effect is described as, so that I can search forums or google it to find some info.
Of course if you do want to supply me with a basic file I wouldn't mind but any help is greatly received.
Thanks
Wayne
Reply With Quote

  #2 (permalink)  
Old May 1st, 2007, 14:03
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: What is this effect?

It's most likely a movie clip that is masked and when a button is clicked it animates to that section of the club.

That'd be the simplest way to do what you are seeing there.
Last Blog Entry: Yay!? (Oct 8th, 2007)
Reply With Quote
  #3 (permalink)  
Old May 1st, 2007, 18:35
Junior Member
Join Date: Apr 2007
Location: Market Harborough
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
Re: What is this effect?

Hi. Thanks for your responce. I managed to find some actionscript to create the effect/movement I was after. Thanks. Wayne.
Reply With Quote
  #4 (permalink)  
Old May 1st, 2007, 18:37
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: What is this effect?

Awesome! Feel free to share your learnings or valuable links with us when you have time!

Cheers,

Scott
Last Blog Entry: Yay!? (Oct 8th, 2007)
Reply With Quote
  #5 (permalink)  
Old May 17th, 2007, 19:17
Junior Member
Join Date: Apr 2007
Location: Market Harborough
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
Re: What is this effect?

Hi

This is the code I used to acheive the effect (thanks to neilmmm from actionscript.org for the code)

Code: Select all
import mx.transitions.Tween;
import mx.transitions.easing.*;
golfClub1_mc.onRelease = function() {
	var club:Tween = new Tween(golfClub_mc, "_x", Regular.easeIn, golfClub_mc._x, 20, 3, true);
};
golfClub2_mc.onRelease = function() {
	var club:Tween = new Tween(golfClub_mc, "_x", Regular.easeIn, golfClub_mc._x, -230, 3, true);
};
golfClub3_mc.onRelease = function() {
	var club:Tween = new Tween(golfClub_mc, "_x", Regular.easeIn, golfClub_mc._x, -460, 3, true);
};
golfClub4_mc.onRelease = function() {
	var club:Tween = new Tween(golfClub_mc, "_x", Regular.easeIn, golfClub_mc._x, -700, 3, true);
};
I replaced the golfClub_mc for my rod, and then copied and pasted the 'var club...' line on each button and created a logo going the oppisite direction at a different speed.

Wayne
Reply With Quote
Reply

Tags
effect, flash

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
how to create this effect mybmodel Graphics and 3D 11 Apr 29th, 2008 19:05
CSS Hover Effect In IE Monie Web Page Design 6 Feb 12th, 2008 00:43
Help with lightbox effect laffin JavaScript Forum 0 Nov 30th, 2007 08:39
The effect of the Web in 2020 bigtester Webforumz Cafe 0 Sep 3rd, 2007 08:59
css opacity effect RZX Developer Web Page Design 6 Aug 7th, 2007 19:05


All times are GMT. The time now is 01:37.


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