| View previous topic :: View next topic |
| Author |
Message |
vickymesh
Joined: 07 Sep 2007 Posts: 4
|
Posted: Fri Sep 07, 2007 8:42 am Post subject: I need a help for flash scripting.? |
|
|
| I had made a two different movie clip for web design company client - one is a scroller another movie clip contains some images in scroller movieclip I had put some buttons. Now when we click first button a particular image should appear in 2nd movieclip, when I click 2nd button another image should appear. but I am not able to give a perfect script to button so that it link to another movie clip. Can pls. someone can help me. |
|
| Back to top |
|
 |
|
|
Kangho

Joined: 23 Aug 2007 Posts: 41 Location: At home
|
Posted: Sat Sep 15, 2007 6:49 am Post subject: Re: I need a help for flash scripting.? |
|
|
| Did you use the On(press) ? |
|
| Back to top |
|
 |
knifeinback 100+ Club

Joined: 27 Jul 2007 Posts: 136 Location: 4170: Brisbane
|
Posted: Sat Sep 15, 2007 7:28 am Post subject: Re: I need a help for flash scripting.? |
|
|
That site is the most overpriced piece of crap I've ever seen.
just for the record. |
|
| Back to top |
|
 |
tkgd2007 50+ Club
Joined: 15 Nov 2007 Posts: 95
|
Posted: Sun Feb 10, 2008 12:53 pm Post subject: Re: I need a help for flash scripting.? |
|
|
It's actually not that overpriced... assuming the websites produced are great and the web designers have a good portfolio to back them up.
And to respond to your question... here is an example.
Button 1
| Code: |
on(press){
_root.mymc.gotoAndStop(2);
} |
Button 2
| Code: |
on(press){
_root.mymc.gotoAndStop(3);
} |
first frame of mymc (movieclip)
second and third frames have the images you want to show. Hope this helps. |
|
| Back to top |
|
 |
|