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
You can open/play the swf file with Flash Player exe
calvo (8)
rotating menu
a menu that rotates along the x axis.6696 downloads, 38061 views
Comments
You need to login to post a comment.
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
Sorry about that didn't see the show all comments link. Thanks for the help :)
You certainly can.
the answer to your questions is in the comments down below.
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?
cool thanks men...
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.
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
yes, you can ;-)
Can I also please use it on my web which is my personal business page?
of course you can
Can I please use this on my website?
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="";
}
Well done - nice maths!
cooooooool. many thanks
thank you
the answer is down below ;-)
How do I put images instead items
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).
Can more links be added? Can IMages be added? How?
excelente
Excellent :) 5/5
I like it