Flash custom local right-click menu, set different right-click menus for different regions (source files)

Source: Internet
Author: User
From: http://www.zhugao.cn/info/news_study_show.asp? Id = 194
Source File Download

Create a MC named "test_mc" on the stage and copy the following code to the corresponding frame. Note: "test_mc" must be placed on the top layer; otherwise, it is invalid. If you do not want to see "test_mc", you can set its Alpha value to "0 ".

Var menu_mc: ContextMenu = new ContextMenu ();
Menu_mc.hideBuiltInItems ();
Menu_mc.customItems.push (new ContextMenuItem ("menu1. ..", menu_01 ));
Menu_mc.customItems.push (new ContextMenuItem ("menu2. ..", menu_02 ));
Menu_mc.customItems.push (new ContextMenuItem ("menu3. ..", menu_03 ));

// Define the response action after clicking each menu
Function menu_01 (menu: Object, obj: Object): Void {
Trace ("you have selected menu1 ...");
}
Function menu_02 (menu: Object, obj: Object): Void {
Trace ("you have selected menu2 ...");
}
Function menu_03 (menu: Object, obj: Object): Void {
Trace ("you have selected menu3 ...");
}

Test_mc.menu = menu_mc;

◆ Reprinted please indicate the source!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.