A question about JavaScript tiles menu.

Asked By 30 points N/A Posted on -
qa-featured

Hello friends,

A question about JavaScript tile menu. Would you love to teach me the proper codes for a flash animated tile menu?

I want to put it in my business website. A tile menu structure that will serve as my home, about, contact us and more tab as choices.

This can probably make my website presentable at some point.

Thanks and Regards,

Pamela Gonzalez.

SHARE
Best Answer by Baker Mich
Answered By 0 points N/A #173054

A question about JavaScript tiles menu.

qa-featured

Hello,

On this link: https://naldzgraphics.net/30-adobe-flash-tutorials-for-creating-menus-and-navigations-2/

You can find 30 tutorial for making animated menus in flash. Here you will learn different method of animating your menu and making various types of menus.

Tutorials are made for beginners but you find tons of advanced ideas which will enchase your web site and make switching between tabs very eye candy.

Best Answer
Best Answer
Answered By 5 points N/A #173055

A question about JavaScript tiles menu.

qa-featured

Hi Pamela,

You can definitely use your flash animated title menu structure in your website using Java script code.

I would provide following source code for your requirement.

I presume you have a flash function in your swf.

// AS3 code in swf

function myfunction():void

{

}

Now you can call that flash function that contains your swf like below.

// AS3 code in swf

ExternalInterface.addCallback("myfunction", myfunction);

Now with the help of Java script you can call your swf function like mentioned below.

// JavaScript code in browser

var swf = window.getElementById("myswf");

swf.myfunction();

Hope this helps.

Thanks,

Baker

Related Questions