Get Adobe Flash player

Context Menu – Right Click on Flash Media

July 15th, 2010 | Comments Off
category: Software

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import flash.ui.ContextMenu;
import flash.ui.ContextMenuItem;
import flash.ui.ContextMenuBuiltInItems;
import flash.events.ContextMenuEvent;

var custom_menu:ContextMenu = new ContextMenu();
custom_menu.hideBuiltInItems();

var custom_notice = new ContextMenuItem("http://www.MyFriendTodd.com");
var custom_copyright = new ContextMenuItem("Copyright - 2009");
var custom_email = new ContextMenuItem("email: Todd@MyFriendTodd.com");

custom_notice.enabled = true;
custom_notice.separatorBefore = false;
custom_notice.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, site_link);
function site_link(evt:ContextMenuEvent):void
{
    var siteURL:URLRequest = new URLRequest("http://www.MyFriendTodd.com");
    navigateToURL(siteURL, "_blank");
}

custom_copyright.enabled = false;
custom_copyright.separatorBefore = false;

custom_email.enabled = true;
custom_email.separatorBefore = true;
custom_email.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, email_link);
function email_link(evt:ContextMenuEvent):void
{
    var emailURL:URLRequest = new URLRequest("mailto:Todd@MyFriendTodd.com");
    navigateToURL(emailURL);
}

custom_menu.customItems.push(custom_notice, custom_copyright, custom_email);
contextMenu = custom_menu;
GD Star Rating
loading...


Comments are closed.



Content

Need to pay for services?


Banner    

Contact me


  

Socially you can find me here


                 

        


Need to pick up a few things before you leave?


Grasshopper - The Entrepreneur's Phone System   Affordable Premium Custom Flash Photo and Video Gallery Templates
2010 Copyright © Todd Vaughn. All rights reserved. Register