PDA

Volledige versie bekijken : Rechtermuisklik aangepast tutorial (eng)


Le Marquis
%Europe/Berlin %541 %2005, 14:00
Sorry allemaal maar ik was te lui om dit om te zetten naar nederlands, het is echter wel een makkelijke en mooie script dat je website net even iets professioneler laat maken...

---------------------------------------------------------------------------------------

This tutorial is for people who want to know how to set up customized right click menu for Flash MX 2004. Why somebody needs the customized right click menu in Flash MX? Imagine you want to protect your work with copyright information or just include your website address so everyone who saw that movie could visit your website. The simplest example of customized menu you will be able to create after finishing our tutorial. If you experience some difficulties during the reading it is recommended to read all the previous tutorials on http://www.metamorphozis.com written by me as some aspects may be discussed earlier.

a. Launch Flash MX 2004

http://www.developertutorials.com/images/articles/flash-right-click/1.gif

b. Create new Flash file. Click File > New...

http://www.developertutorials.com/images/articles/flash-right-click/2.gif

c. Select Flash Document in a new window

d. Press "Ctrl+Enter" to compile the movie and right click anywhere inside the movie area. You will see the default Flash MX movie menu.

http://www.developertutorials.com/images/articles/flash-right-click/3.gif

http://www.developertutorials.com/images/articles/flash-right-click/4.gif

e. Now we will right some actions script codes to show copyright information. Add the following action script code to the default layer you already have.

function doSomething(){}
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Functioned = new ContextMenuItem("This movie is copyrighted by Your Company Name", doSomething);
MENU.customItems.push(Functioned);
_root.menu = MENU;

Press "Ctrl+Enter" and see the result.

f. Now I will explain each line of code so that you could get the idea what and how was done.

function doSomething(){}

This line manifests the new function named "doSomething" We won't need this menu item to perform any task so leave it blank.

g. Next 2 lines:

MENU = new ContextMenu();
MENU.hideBuiltInItems();

Declare a new menu and hides the default menu items from the screen.

h. Next line:

Functioned = new ContextMenuItem("This movie is copyrighted by Your Company Name", doSomething);

This line initiates the properties of the future menu. Use it to enter the text you want the menu to display.

i. MENU.customItems.push(Functioned);

The property "Functioned" will be displayed as a new menu item.

j. _root.menu = MENU;

If you change the path to the new "MENU" you will be able to create the different menus for different scenes. We stick with root scene.

k. To get the idea how to add more items to the customized menu we will add clickable website address to our already customized menu. Add the following code to the "Action" panel:

function doSomething(){}
function doSomething2(){
getURL("http://www.dutchpie.com/forum/", _blank);}
MENU.customItems.push(Functioned2);
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Functioned = new ContextMenuItem("This movie is copyrighted by Your Company Name", doSomething);
Functioned2 = new ContextMenuItem("Visite Our Website", doSomething2);
MENU.customItems.push(Functioned);
MENU.customItems.push(Functioned2);
_root.menu = MENU;

http://www.developertutorials.com/images/articles/flash-right-click/5.gif

l. You may see in this code new and old lines of code. The new lines serves basically the same purpose, the only difference is in the "doSomething2" function. We add the action "getURL" so that if user clicks the menu item it redirects him to your website. Press "Ctrl+Enter" and enjoy the customized menu.

http://www.developertutorials.com/images/articles/flash-right-click/6.gif

m. I hope you got the idea it is simple example and you may think out as many menu items as you need.

Press "Ctrl+Enter" and enjoy your animation. Congratulations!

DOWNLOAD SOURCE (http://www.metamorphozis.com/tutorials/flash_tutorials/right_click/right_click.fla)




This tutorial is from http://www.developertutorials.com
By Oleg Lazarenko

The_One
%Europe/Berlin %570 %2005, 14:41
Zie ook mn sign, de links kloppen niet, maar dat geeft niet. Je kan iig geval leren van het AS :)

Le Marquis
%Europe/Berlin %596 %2005, 15:19
heel netjes gedaan...

Jordy
%Europe/Berlin %685 %2005, 17:27
Lol, echt nooit geweten dat dat kon. Is wel handig voor extra informatie enzo :) heel erg handig !

The_One
%Europe/Berlin %946 %2005, 23:42
Sinds FMX04 is het mogelijk :)

Le Marquis
%Europe/Berlin %445 %2005, 11:42
Ik ben blij dat jullie er wat aan hebben...

krush
%Europe/Berlin %624 %2005, 15:59
idd heel erg handig is dit, weet iemand soms de code om via dit menu je site bij de favorieten te kunnen zetten ?

TheDutch
%Europe/Berlin %884 %2005, 22:14
Hoort dit niet in het tutorial onderdeel? :).