|
User Details |
message
|
|
CC
post date:
2008-01-18 19:16:57
|
Hi!
Can I get a sample on how to apply actionscript gotoandplay for vertical menus?
...say, I've got three, and menu 1 goes to frame 2, menu 2 to 15, and menu 3 to frame 30 in the timeline.
Thanks!
CC
|
|
|
Catalin Serban [Extend Studio]
post date:
2008-01-23 04:21:29
|
Hello again CC,
We have sent you a tutorial by email on how to apply actionscript on the menu buttons.
Sincerely,
Catalin Serban
|
|
|
CC
post date:
2008-03-09 12:42:04
|
Hi!
Can I get a sample on how to apply actionscript gotoandplay for vertical menus?
I know that Catalin Serban sent an example, but I can't find it anywhere.
...say, I've got three, and menu 1 goes to frame 2, menu 2 to 15, and menu 3 to frame 30 in the timeline.
Thanks!
CC
|
|
|
Lavinia Iancu [Extend Studio]
post date:
2008-03-11 06:40:16
|
Hello CC,
Please give us the correct email address and we will resend you the tutorial.
Regards,
Lavinia Iancu
|
|
|
Duncan Holmes
post date:
2008-03-31 13:47:17
|
Hi there...
Can i get a copy of that too?
Cheers
dunk.
|
|
|
Duncan Holmes
post date:
2008-03-31 13:50:09
|
sorry forgot to add my email addy..
duncan@boxroom-studios.com
thanks again
PS alot of peeps seem to ask this.. why not start a tutorial thread and post them in there!!?? just an idea..
|
|
|
Lavinia Iancu [Extend Studio]
post date:
2008-04-01 05:01:40
|
Hello Duncan,
I've sent you the tutorial via email.
This tutorial will be added soon in our documentation, in the the Creative Menus for Flash section.
Kind regards,
Lavinia Iancu
|
|
|
Darren
post date:
2008-04-03 05:17:26
|
Hi there, Ive just bought your FL drop down menus and would also like to know the AS scripts to add to the buttons to load in movies. Could you pls send me the documentation also.
kind regards,
Darren
darren_kirk@hotmail.com
|
|
|
Lavinia Iancu [Extend Studio]
post date:
2008-04-07 11:20:05
|
Hello Darren,
I have sent you the tutorial by email.
Kind regards,
Lavinia Iancu
|
|
|
Mauricio Rojas
post date:
2008-04-25 20:09:26
|
Please send me a documentation too, my deadline for a project is almost finished.
Tanks a lot
Mauricio
luismauricio651018@hotmail.com
|
|
|
CC
post date:
2008-04-26 07:16:38
|
Here's what I used in my vertical menus for a restaurant site I did:
1. Here's what in the menu structure via the Component Inspector:
Appetizers,as:_root.myFunctionAppetizers
Drinks,as:_root.myFunctionDrinks
Soups,as:_root.myFunctionSoups
Salads,as:_root.myFunctionSalads
Sandwiches,as:_root.myFunctionSandwiches
Burgers,as:_root.myFunctionBurgers
Stuffed Baked Potatoes,as:_root.myFunctionPotatoes
Plates,as:_root.myFunctionPlates
Dinner (After 5:00 p.m.),as:_root.myFunctionDinner
2. Here's what goes in the Action section:
stop ();
function myFunctionAppetizers() {gotoAndPlay("_appetizers");}
function myFunctionDrinks() {gotoAndPlay("_Drinks");}
function myFunctionSoups() {gotoAndPlay("_Soup");}
function myFunctionSalads() {gotoAndPlay("_Salad");}
function myFunctionSandwiches() {gotoAndPlay("_Sandwiches");}
function myFunctionBurgers() {gotoAndPlay("_Burgers");}
function myFunctionPotatoes() {gotoAndPlay("_Potatoes");}
function myFunctionPlates() {gotoAndPlay("_Plates");}
function myFunctionDinner() {gotoAndPlay("_Dinner");}
|
|
|
Howard Becker
post date:
2008-07-30 14:56:46
|
|
i tried the code above got it to work, but there is a huge glitch (for me anyway) if i click on the same button let's say "Home" over and over it will go to all the other pages almost randomely. If i click in order it works fine (meaning order as they appear on the timeline) I can get to about and then the sub of about and back to home. if i click on about after the sub of about it brings me homeif anyone can figure this out it would be appreciated.
|
|
|
CC
post date:
2008-07-30 15:39:06
|
Hey Howard!
Do you have the subs overlapping the main / parent menu?
I noticed the if they do, and you click on a sub-menu expecting sub menu navigation, it goes to the parent navigation code.
My code above was a single layer (all parent) item example.
|
|
|
post date:
2009-11-18 22:22:04
|
Please send me a documentation too, i need finished mi project.....
i need to include the action: on (release) (
loadMovieNum (tours.swf ", 1)
I designed the index 100% in Flash and I've added in Creative FL Vertical Menu on the movie. you can see at: http://www.dnavitatherapeutics.com/dna2/Creative% 20Vertical% 20Menu% 20Skins.swf
|
|
|
Andrei Rinciog [Extend Studio]
post date:
2009-11-19 07:21:23
|
Hello,
Here's a link to a page that explains how you can use the Creative Menu with ActionScript: http://www.extendstudio.com/documentation/creative-fl-dropdown-menu/documentation/docs/button-actions.html
The simplest way is to use the button id's and then have that switch function. In that function you can insert the "loadMovieNum" function in each case. The release event listener is no longer needed.
Tell me if you need more help.
Regards,
Andrei Rinciog
Support Engineer - Extend Studio
|
|