• Home

Logo

Navigation
  • Home
  • Articles
    • Content Writing
    • Design
    • General
    • Internet Marketing
    • Social Media
    • Tools and Tips
    • Usability
    • Web Hosting Articles
  • Tutorials
    • AJAX Tutorials
    • ASP Tutorials
    • C# Tutorials
    • CGI and Perl Tutorials
    • CSS Tutorials
    • Flash Tutorials
    • HTML Tutorials
    • Illustrator Tutorials
    • Java Tutorials
    • JavaScript Tutorials
    • Linux Tutorials
    • Miscellaneous Tutorials
    • MySQL Tutorials
    • Photoshop Tutorials
    • PHP Tutorials
    • Python Tutorials
    • Wireless Tutorials
    • WordPress Tutorials
    • XML Tutorials
  • Scripts
    • AJAX Scripts
    • ASP Scripts
    • ASP.NET Scripts
    • CGI & Perl Scripts
    • Flash Scripts
    • Java Scripts
    • JavaScript Scripts
    • PHP Scripts
    • Python Scripts
    • Remotely Hosted
    • Tools and Utilities
    • XML Scripts
  • Answers
  • Online Services
  • Tools

Customized Right Click Menu in Flash MX 2004

By Oleg Lazarenko | on Mar 21, 2005 | 0 Comment
Flash Tutorials
  • Tweet
  • Share
  • Tweet
  • Share

Customized Right Click Menu in Flash MX 2004

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

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

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.

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.metamorphozis.com”, _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;

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.

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! You have created Shaped and Motion animation.

Click

here
to download source fla file.

Share this story:
  • tweet

Author Description

Metamorphosis Website Design Studio - Custom design, Website Templates, Web design Articles and Tutorials.

No Responses to “Customized Right Click Menu in Flash MX 2004”

You must be logged in to post a comment.

Connect With Us

RSSSubscribe 0Followers 492Likes
  • Popular
  • Recent
  • Comments
  • Creating Energy Spheres in Photoshop

    Apr 15, 2008 - 96 Comments
  • Easy Screen Scraping in PHP with the Simple HTML DOM Library

    Aug 6, 2008 - 20 Comments
  • Calculating date difference more precisely in PHP

    Mar 7, 2008 - 13 Comments
  • When Does Hosting Your Website in the Cloud Make Sense?

    Oct 8, 2010 - 2 Comments
  • Fun with the Microsoft Managed Extensibility Framework Part 2

    Oct 6, 2010 - 0 Comment
  • Fun with the Microsoft Managed Extensibility Framework Part 1

    Sep 22, 2010 - 0 Comment
  • Website Management on the go with the iPad

    I appreciated your post, but I was looking for something I didn't...
    November 24, 2012 - drmoderator
  • Creating Energy Spheres in Photoshop

    I'm a little stuck down here especially at the step of creating the...
    November 23, 2012 - sarah
  • Running background processes in PHP

    Can you give an example? As see it, you can use this only when you...
    November 16, 2012 - Shaked Klein Orbach
Developer Resources
  • Tutorial Directory
  • Learn HTML
  • Learn PHP
  • Learn CSS
  • Learn AJAX
  • Learn JavaScript
  • Learn Pear
  • White Papers
  • Resources
    • NetVisits Web Directory
    • Realtor Pixels
    • Answers On The Run
    • Ask A Geek
  • Recent Posts

    • When Does Hosting Your Website in the Cloud Make Sense?
    • Fun with the Microsoft Managed Extensibility Framework Part 2
    • Fun with the Microsoft Managed Extensibility Framework Part 1
    • Website Management on the go with the iPad
    • Code Contracts in C# 4.0 – Part 1

    Calendar

    May 2013
    M T W T F S S
    « Oct    
     12345
    6789101112
    13141516171819
    20212223242526
    2728293031  

    Recent Comments

    • drmoderator on Website Management on the go with the iPad
    • sarah on Creating Energy Spheres in Photoshop
    • Shaked Klein Orbach on Running background processes in PHP
    • Thomas Cuvillier on How To Upload Files Using PHP
    • rizal aditya on Extracting text from Word Documents via PHP and COM
    • Home
    © 2003 - 2013 DeveloperTutorials.com. All Rights Reserved. Privacy Policy.