Forum Topic: Right Click Edit?

(160 views • 5 replies)

This topic is 1 page long.

<< < > >>
Elated

Celtrum

Reply To Post Reply & Quote

Posted at: 1/6/08 06:08 PM

Celtrum LIGHT LEVEL 08

Sign-Up: 10/26/07

Posts: 592

I know that this has been asked many, many times, but can anyone give me a code for right click editing or CTRL click editing(Macs)?

I have tried Google and Yahoo!.


None

Drkgodz

Reply To Post Reply & Quote

Posted at: 1/6/08 06:13 PM

Drkgodz DARK LEVEL 09

Sign-Up: 08/26/06

Posts: 30

At 1/6/08 06:08 PM, Celtrum wrote: I know that this has been asked many, many times, but can anyone give me a code for right click editing or CTRL click editing(Macs)?

I have tried Google and Yahoo!.

No you didn't
First thing:
http://www.google.com/search?hl=en&rls=c om.microsoft:en-US&sa=X&oi=spell&resnum=
0&ct=result&cd=1&q=changing+click+click+
menu+on+flash&spell=1


None

Celtrum

Reply To Post Reply & Quote

Posted at: 1/6/08 07:20 PM

Celtrum LIGHT LEVEL 08

Sign-Up: 10/26/07

Posts: 592

Not working


None

Stilianos

Reply To Post Reply & Quote

Posted at: 1/6/08 08:10 PM

Stilianos LIGHT LEVEL 02

Sign-Up: 08/10/07

Posts: 296

Put this in your main time line: stage.showMenu = false;

It doesn't completely make it disappear but it takes away the quality toggle n such.


None

gorman2001

Reply To Post Reply & Quote

Posted at: 1/6/08 08:34 PM

gorman2001 NEUTRAL LEVEL 14

Sign-Up: 08/18/02

Posts: 1,933

At 1/6/08 08:10 PM, Stilianos wrote: Put this in your main time line: stage.showMenu = false;

It doesn't completely make it disappear but it takes away the quality toggle n such.

thats not what he asked.

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


Happy

AcidicFlame

Reply To Post Reply & Quote

Posted at: 1/7/08 12:08 AM

AcidicFlame LIGHT LEVEL 10

Sign-Up: 04/15/07

Posts: 97

There are a lot of things you can do with right click menus.
To set it up:

var myMenu:ContextMenu = new ContextMenu();

From there you can use a number of different methods like hiding the built in items or adding your own.
For example:

var myMenu:ContextMenu = new ContextMenu();
myMenu.hideBuiltInItems();
var myItem:ContextMenuItem = new ContextMenuItem();
myItem.caption = "Hello";
myItem.onSelect = function() {
	trace("Hello");
};
myMenu.customItems = [myItem];
menu = myMenu;

There are countless possibilities. Experimenting is the best way to learn it.

:D


All times are Eastern Standard Time (GMT -5) | Current Time: 01:49 PM

<< Back

This topic is 1 page long.

<< < > >>
You need a Grounds Gold Account to post on the NG BBS! If you don't have one, click here to sign up now! It's fast, free, and easy — and opens up tons of great NG features!