That is a pretty damn cool effect.
Posted 3 months ago
Tweened Underlined Menu
A unique menu with dynamic, pixel-perfect buttons, which are underlined and Tweened to produce a unique animation among the buttons. All the user has to do is fill in the titles that will appear inside the buttons at an array in the first frame, and if desired, specify the spacing between the buttons and where on the stage it is placed; so easy!
AS3 .
Have any questions regarding trouble with the file? Please check my FAQ before contacting me. If you do contact me, please send me a message / email, rather than leaving a comment on the page.
Please rate!
Feel free to check out my profile here on FlashDen or my website at ChristianKragh.com.
Other Flash files of mine:
Hi Christian, thanks for the file, can you help me out here please mate, My knowledge is limited, but what code do i add if i wanted button one to go to google.com, i have changed the names and added an extra button i just cant get them to do anything, i assume i have to edit this code,
// ** SET YOUR BUTTON CLICKS HERE function butnClick(event:MouseEvent):void { if (event.target.depth 0) { // actions for 1st button here } else if (event.target.depth 1) { // actions for 2nd button here } else if (event.target.depth == 2) { // and so forth…
Any help from you or anyone else would be handy
Steve
var req:URLRequest;
// ** button code
if (event.target.depth == 0) {
req = new URLRequest(“http://google.com”
;
navigateToURL(req);
} else if (event.target.depth == 1) {
// etc
}
Steve, please email if you’re still having problems.
Posted 22 days ago
Hey Christian…
I’m liking the menu but am not getting it working… probably something simple but I don’t know what it is…
I’m putting:
gotoAndPlay(“Scene 2”
;
Into the area you indicate and when I click the button… nothing happens…
It looks like this with your code:
// ** SET YOUR BUTTON CLICKS HERE
function butnClick(event:MouseEvent):void {
if (event.target.depth == 0) {
gotoAndPlay(“Scene 2”
;
Thank you!
Posted 14 days ago
typo, well it does work, maybe it’s to do with your scenes.. Try just saying gotoAndPlay(5); or something like that, also, make sure it is in the right scope (movieclip). Thanks.
Posted 6 days ago