alert This appears to be a flash file, you cannot see a preview because flash player is no longer supoorted in browsers, but you can still download the file to study it's source code.
You can open/play the swf file with Flash Player exe
user calvo
calvo (8)

rotating menu

a menu that rotates along the x axis.
6696 downloads, 37941 views
Download (13.24 KB)

Comments

You need to login to post a comment.

user tmbotega
tmbotega 14 years ago

How do I do to show pages in a frame. For example: someone clicks some link and it appears in a frame not reloading the parent page.
Thanks

user Okkio
Okkio 15 years ago

Sorry about that didn't see the show all comments link. Thanks for the help :)

user calvo
the listing author calvo 15 years ago

You certainly can.
the answer to your questions is in the comments down below.

user Okkio
Okkio 15 years ago

Hey,

I'm wondering if I might use this for a site I'm putting together for my father's surgery and if it is possible to change the text to image links?

user amcantada
amcantada 15 years ago

cool thanks men...

user calvo
the listing author calvo 15 years ago

just declare an array
myArray:Array=["about", "portfolio", "about"].
retrieve the value for each item in for loop,
something like
for(var i:Number=0; i<2 ; i++){
myMc.myTextBox.text=myArray[i];
myMc.i=i;
myMc.onRelease=function(){
this.getURL(myArray[this.i]+".html");
}
};
As to the link, use a getURL with each i value.
see code above.
your pages are named about.html, protfolio.html etc.

user digiman08
digiman08 15 years ago

hello,

Forgive my lack of flash AS knowledge, but how do u actually customise the item1 item 2 item 3 to say - about, portfolio, contact and have the links go to those pages.

Is that possible?

Thanks
DIGI

user calvo
the listing author calvo 15 years ago

yes, you can ;-)

user berlin123
berlin123 15 years ago

Can I also please use it on my web which is my personal business page?

user calvo
the listing author calvo 15 years ago

of course you can

user Ewee8
Ewee8 15 years ago

Can I please use this on my website?

user ffmauri
ffmauri 16 years ago

Very good. Thanks
I have added a little update: change color text when mouse over. in item_mc I added one layer TextOVER with a duplicate of myText and call it myTextOVER (color blue) and this is the code modified:

for(var i:Number=0; i<num;i++){
var mc:MovieClip=attachMovie("item", "item "+i, i);
mc.angle= i * ((Math.PI*2)/num);
val=i+1+1972;
mc.myText.text=val;
mc.myTextOVER.text="";
mc.onEnterFrame=bouge;
mc.onRollOver=BlueText;
mc.onRollOut=DelText;
mc.onRelease=link;
}

function BlueText(){
this.myTextOVER.text=this.myText.text;
}

function DelText(){
this.myTextOVER.text="";
}

user silversurfer
silversurfer 16 years ago

Well done - nice maths!

user badboykilla
badboykilla 16 years ago

cooooooool. many thanks

user irinayart
irinayart 16 years ago

thank you

user calvo
the listing author calvo 16 years ago

the answer is down below ;-)

user irinayart
irinayart 16 years ago

How do I put images instead items

user calvo
the listing author calvo 16 years ago

the menu is based on a for loop, so just increment the variable. also u can put images though i've never tried it. just attach a movieClip containing your pics and tell each attached movieClip to gotoAndStop(i+1).

user coffeefreak
coffeefreak 16 years ago

Can more links be added? Can IMages be added? How?

user percyrosso
percyrosso 17 years ago

excelente

user xarald
xarald 17 years ago

Excellent :) 5/5

user adrianTNT
adrianTNT (admin) 17 years ago

I like it