[flexcoders] context menu in a datagrid in flex 4

2013-05-06 Thread Nitin Gopi
Hi I am trying to set the context menu to a datagrid. The process I am using is like this cm = new ContextMenu; cm.hideBuiltInItems(); var cmi:ContextMenuItem = new ContextMenuItem('say hello'); cm.customItems.push(cmi); Inside datagrid I am using contextMenu={cm} This work perfectly fine

[flexcoders] Context Menu

2011-12-27 Thread pankaj_verm...@ymail.com
Hi All, I want to style the context menu(opening on right click option) .Is is possible to style it.I want to change the background color and font color . Thanks Pankaj

[flexcoders] context menu

2010-04-13 Thread cholid cholid
Hi All to use context menu and use it to make new tab in browser im use this sample: private function B(evt:ContextMenuEvent):void { navigateToURL(new URLRequest(http://www.google.com;),_blank); } and for the function in context menu, im use this sample:

Re: [flexcoders] Context Menu

2010-03-02 Thread Abdul Nizar
Hi, Try this link.. :) http://blog.flexexamples.com/2007/08/20/using-a-custom-context-menu-with-the-flex-datagrid-control/ --- On Tue, 2/3/10, Angelo Anolin angelo_ano...@yahoo.com wrote: From: Angelo Anolin angelo_ano...@yahoo.com Subject: [flexcoders] Context Menu To: flexcoders

[flexcoders] Context Menu

2010-03-01 Thread Angelo Anolin
Hi FlexCoders, Has anyone implemented a right mouse click context menu which contains sub-menu items?  I have been able to create a datagrid control with right mouse menu and the context menu I have defined appears, but I have no idea on how to implement one which contains sub-menu. Any

[flexcoders] context menu event on tree column of advanced data grid ....

2009-10-29 Thread MicC
When a context menu on an ADG is clicked and the ADG cell is not a hierarchy node, the ContextMenuEvent.mouseTarget is ADGItemRenderEX and info about the grid cell data clicked on to raise the context menu can be grabbed from ADGItemRendererEX.listData.Item. But when a node in the

RE: [flexcoders] Context Menu mouseTarget Issue

2009-09-02 Thread Alex Harui
: Tuesday, September 01, 2009 2:01 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Context Menu mouseTarget Issue I have a canvas container with several custom containers added to it. I have a context menu so that when you right click on the containers, you can remove it from the canvas

[flexcoders] Context Menu mouseTarget Issue

2009-09-01 Thread jmfillman
I have a canvas container with several custom containers added to it. I have a context menu so that when you right click on the containers, you can remove it from the canvas container. When I go to remove a child, I get an error, below. Code: private function

[flexcoders] Context Menu

2009-07-29 Thread wayne vetrone
Hello All, My searching is turning up empty. Does any one know of a way to determine when a right click context menu is closing/closed? thanks wev _ Windows Live™ SkyDrive™: Store, access, and share your photos. See how.

Re: [flexcoders] Context menu is not working for Flash Player 10

2009-05-06 Thread Igor Costa
Two things to verify before that. 1 - Did you instantiate correctly to call the warpper js? 2 - When you debug what erros you got? Regards Igor On Tue, May 5, 2009 at 3:26 PM, Dharmendra Chauhan chauhan_i...@yahoo.comwrote: Hi, My Application is working fine with Flash Player9 but with

[flexcoders] Context menu is not working for Flash Player 10

2009-05-05 Thread Dharmendra Chauhan
Hi, My Application is working fine with Flash Player9 but with FP10,it's somewhat broken.I am calling some external method throw ExternalInterFace on Context Menu Select event.None of the method is getting called with FP 10 ie call is not being made. Everything is working fine in FP9 have

[flexcoders] Context Menu Bug in FlashPlayer ?

2009-03-21 Thread jmfillman
The code below causes both IE and Firefox to crash (haven't tried others). The problem seems to occure when removing an item from a custom context menu. It doesn't even debug, just crashes the browser. If I add this one line: menu.customItems.pop(); then the browser crashes. If I remove it,

Re: [flexcoders] Context menu triggers browser crash

2008-07-23 Thread Guy Morton
Hi Borja No, I've not had any luck in figuring out the cause or a fix as yet. Are you able to post a link to an app that shows the problem? Anyone on the list able to help? Guy On 23/07/2008, at 9:06 PM, Borja Jelič wrote: Hi, I've seen your post on the

[flexcoders] Context menu triggers browser crash

2008-07-12 Thread Guy Morton
Hi there I have a Flex 2 app that has a custom context menu attached to the root application object. It works without incident on the Mac, but on windows, choosing an item from the context menu sometimes causes the browser to crash. There appears to be no pattern to it, though it does seem to

[flexcoders] Context menu

2008-06-21 Thread markgoldin_2000
How can I remove all builtin items? Thanks

RE: [flexcoders] Context menu

2008-06-21 Thread Alex Harui
hideBuiltInItems From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Saturday, June 21, 2008 1:08 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Context menu How can I remove all builtin items? Thanks

RE: [flexcoders] Context Menu Use in PopUp

2008-06-13 Thread Alex Harui
By functions do you mean event listeners? How are you setting it up? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jmfillman Sent: Friday, June 13, 2008 10:14 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Context Menu Use

[flexcoders] Context Menu Problems (FlexBuilder2)

2008-04-15 Thread Phill Coleman
I'm trying to add an extra menu item to the right click context menu to appear over a bitmap. I've successfully added the code and it works *sometimes* ... and there lies my problem. It may work the first time, it may work all the time or it may work never but for some reason, the main

[flexcoders] Context menu in flex

2007-11-16 Thread yourName
Hi iam new to this group and working with flex about one month. I want to add custom contex menu in tree component any one can help me or can send a code sample can i display popup menu when some one right clicks on my tree menu. Thanks in advance

Re: [flexcoders] Context menu and sub-menu capability...

2007-10-30 Thread Derek Vadneau
http://code.google.com/p/custom-context-menu/ It doesn't work 100% but there's an on-going effort (last I checked). On 10/23/07, Daniel Freiman [EMAIL PROTECTED] wrote: You can't do it. You also can't override the context menu to not display so that you can create your own menu in it's

[flexcoders] Context menu and sub-menu capability...

2007-10-23 Thread mrvinedit
Is it possible for a Flex (Flash) context menu to have one of more sub-menus? Thanks, Mike G

Re: [flexcoders] Context menu and sub-menu capability...

2007-10-23 Thread Daniel Freiman
You can't do it. You also can't override the context menu to not display so that you can create your own menu in it's place for security reasons. I've heard some theories on intercepting the right-mouse click before it gets to the flash player but I've never actually seen someone do that. - Dan

[flexcoders] Context menu mouseTarget vs. itemRenderer with Image control

2007-06-01 Thread tsiesser
I'm hoping someone's had experience with this one... I have a TileList control with a custom itemRenderer. The renderer consists of an Image control and a few Label controls. I've also attached a custom context menu to the TileList. In the MENU_SELECT event, I want to set the TileList's

RE: [flexcoders] Context menu mouseTarget vs. itemRenderer with Image control

2007-06-01 Thread Alex Harui
: Friday, June 01, 2007 4:59 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Context menu mouseTarget vs. itemRenderer with Image control I'm hoping someone's had experience with this one... I have a TileList control with a custom itemRenderer. The renderer consists of an Image control

[flexcoders] Context menu Submenu

2007-01-18 Thread alok512522
Is it possible to have a context menu item which has a child sub-menu. Currently I have a COntext menu item and when i click it I open another regular Flex Menu where it is possible to create a sub-menu. But when you right click and the Adobe COntext menu pops up there i am unable to add a

Re: [flexcoders] Context menu Submenu

2007-01-18 Thread Igor Costa
Nope Isn't possible. Best On 1/18/07, alok512522 [EMAIL PROTECTED] wrote: Is it possible to have a context menu item which has a child sub-menu. Currently I have a COntext menu item and when i click it I open another regular Flex Menu where it is possible to create a sub-menu. But when you

[flexcoders] Context menu with custom cursor

2006-10-05 Thread davcavs
Hi, In my Flex 2 application I have a custom context menu, and I occasionally set a custom cursor. When the user right-clicks when the custom cursor is set, the default context menu is shown, not the custom context menu. This seems to only happen when the custom cursor exists under the mouse

[flexcoders] Context Menu and Cross Domains

2006-09-15 Thread christophevond
I was reading an article on Adobe's site (mostly about flash) that said it was possible to get rid of some of the right click options like settings option. Is this true or did I miss read the article? -- Flexcoders Mailing List FAQ:

Re: [flexcoders] context-menu in flex...

2006-06-13 Thread Jonathan Bezuidenhout
: [flexcoders] context-menu in flex... Hi, Can anybody tell me that how to customize the context-menu in flex? or how to disable right-click menu in flex? Thanks -Rajni -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http

Re: [flexcoders] context-menu in flex...

2006-06-13 Thread Jeff Tapper
To: mailto:flexcoders@yahoogroups.comflexcoders@yahoogroups.com Subject: [flexcoders] context-menu in flex... Hi, Can anybody tell me that how to customize the context-menu in flex? or how to disable right-click menu in flex? Thanks -Rajni -- Flexcoders Mailing List FAQ: http://groups.yahoo.com

[flexcoders] context-menu in flex...

2006-04-24 Thread Rajni
Hi, Can anybody tell me that how to customize the context-menu in flex? or how to disable right-click menu in flex? Thanks -Rajni -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

RE: [flexcoders] context-menu in flex...

2006-04-24 Thread Matt Chotin
24, 2006 8:03 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] context-menu in flex... Hi, Can anybody tell me that how to customize the context-menu in flex? or how to disable right-click menu in flex? Thanks -Rajni -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group

[flexcoders] Context Menu - hiding everything ?

2005-11-25 Thread jamiebadman
Is it possible to hide the 'Settings' and 'About' parts of the contextMenu ? I've added some menu items of my own for the application I'm developing but the 'Settings' and 'About' parts just don't look appropriate in the menu - I'd really like the menu to just contain elements pertinent to the

Re: [flexcoders] Context Menu - hiding everything ?

2005-11-25 Thread Aldo Bucchi
Nope. You cannot delete those. On 11/25/05, jamiebadman [EMAIL PROTECTED] wrote: Is it possible to hide the 'Settings' and 'About' parts of the contextMenu ? I've added some menu items of my own for the application I'm developing but the 'Settings' and 'About' parts just don't look

Re: [flexcoders] Context menu

2004-05-06 Thread Eric Guesdon
hi, have a look in Flash documentation.I can't send you some example cosi'm not front of my computer Eric Message du 06/05/04 16:37 De : "Steve Pruitt" <[EMAIL PROTECTED]> A : flexcoders@yahoogroups.com Copie à : Objet : [flexcoders] Context menu I recall the Beta document

Re: [flexcoders] Context menu

2004-05-06 Thread Alistair McLeod
Hi Steve, I can't remember seeing anything in the Beta docs, but i did start a thread on the beta forums about the context menu. Basically, Flex doesn't give us anything over and above the MX/Flash Player 7 way of creating context menus. Also, there is a restriction in Flash Player 7 that means

RE: [flexcoders] Context menu

2004-05-06 Thread Steve Pruitt
Ihave heard rumors about this book.Know anything about it? :)Hi Steve,I can't remember seeing anything in the Beta docs, but i did start athread on the beta forums about the context menu. Basically, Flexdoesn't give us anything over and above the MX/Flash Player 7 way ofcreating context

RE: [flexcoders] Context menu

2004-05-06 Thread Stephen Gilson
There is also an example in the Explorer using context menus. Stephen -Original Message-From: Alistair McLeod [mailto:[EMAIL PROTECTED]Sent: Thursday, May 06, 2004 11:28 AMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Context menuHi Steve,I can't remember seeing