Context Menu is not working in flash player 10.1

I write a flex application. I added some custom menu items in context menu. when I compiled this code using flashplayer 10.0, it works fine and my added context menu items are shown when I Right-Click. But when I compile same code for flashPlayer 10.1, menu items that I added in context menu are not shown when I Right-Click. What should I do to resolve this issue? I am using sdk 3.5.
Any help or suggestion will be appreciated.
I am doing this;
    private var cm:ContextMenu = new ContextMenu();       
    var versionMenu:ContextMenuItem = null;
    var dateMenu:ContextMenuItem = null;
    if(model.appVersion.length > 0)
      versionMenu = new ContextMenuItem(model.appVersion);
    if(model.releaseDate.length > 0)
      dateMenu = new ContextMenuItem(model.releaseDate);
     cm.hideBuiltInItems();
     var cmArray:Array = new Array();
     if(versionMenu != null)
       cmArray.push(versionMenu);
     if(dateMenu != null)
       cmArray.push(dateMenu);
     cm.customItems = cmArray;
Thanks.

Thanks for the quick response! here is the file list (all file versions are 10.1.53.64):
C:\Windows\SysWOW64\Macromed\Flash:
Flash10h.ocx
FlashAuthor.cfg
FlashInstall.log
flashplayer.xpt
FlashUtil10h_ActiveX.dll
FlashUtil10h_ActiveX.exe
install.log
NPSWF32.dll
NPSWF32_FlashUtil.exe
uninstall_plugin.exe
C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerTrust:
Adobe Search For Help.cfg
AdobeFireworksCS5.cfg
AdobeXMPFileInfo.cfg
AdobeXMPFileInfoCS5.cfg
kuler.cfg
ServiceManager.cfg
I also made sure all the addson are enabled. Still doesn't work.
disabled hardware acceleration.Still doesn't work.
the last resort is will try to update the GPU driver - as ʇɐb ɹəuəllıʍ said.
I will keep you posted either way. thanks

Similar Messages

  • Right click context menu is not working in flash player 10 and above

    In right click custom context menu i have create like "A" if i click "A" i have attached one movie clip in that movie clip right click, i have custom context menu like "Remove A" this is working fine in flash player 9 and below. But flash player 10 and above fisrt "A" is working fine but in that movieclip clip right click "Remove A" is not working Please guide me regarding this issue.
    Thanks in Advance
    Surendran S

    The problem is that Google has an onmousedown attribute added to the links that modify a link if you click or right-click a result link to make the link point to a safe browsing check on the Google server.<br />
    You can see that if you hover a link and you will notice that after you have (right) click a link the the URL changes to www.google.com/url?xxxxx.
    You can use this bookmarklet to remove the onmousedown attributes.
    <pre><nowiki>javascript:(function(){var e=document.querySelectorAll('*[id="search"] a[onmousedown]'),E,i;for(i=0;E=e[i];i++){E.removeAttribute('onmousedown')}})()</nowiki></pre>

  • NetStream.send not working in Flash Player 11.2 Beta with Cirrus, Please confirm if it is a bug

    Title
    NetStream.send not working in Flash Player 11.2 Beta with Cirrus, Please confirm if it is a bug or feature
    Description
    Problem Description:
    NetStream.send can not send data to peerstreams when using with cirrus. Conflict with documents.
    Sorry for tag the build as 11.0.1.3 while the bug is actually on 11.2 beta since the bug report system didn't have 11.2 beta yet.
    If you are not responsible for 11.2 beta bug fix, please help a hand to handle this bug to 11.2 team.
    This bug is "killing" to your application, so we really appreciate your help. Thanks.
    ==Publisher==
    nc.connect("rtmfp://");
    var ns:NetStream = new NetStream(nc, NetStream.DIRECT_CONNECTIONS);
    ns.publish("sendtest");
    ...//after connection success.
    ns.send("clientfunction", "ok"); // this line cannot reach subscribers. even if subscribers have client object correctly.
    ==Subscriber==
    nc.connect("rtmfp://");
    var ns:NetStream = new NetStream(nc, cirrusid);
    var client:Object = new Object();
    client.clientfunction = clientfunction; // target function
    ns.client = client;
    ns.play("sendtest");
    Steps to Reproduce:
    1. compile the code in the attachment to SendTestExample.swf (not be able to paste it here)
    2. run it under flash player 11.2.202.19 beta
    3. run it under flash player 11
    Actual Result:
    HeartBeat is:
    Start HeartBeat:
    send hello
    send hello
    send hello
    which means NetStream.send was not able to call "clientfunction" as expected.
    Expected Result:
    Start HeartBeat:
    send hello
    in client function: hello
    send hello
    in client function: hello
    send hello
    in client function: hello
    which can call into the clientfunction as flash player 11 did.
    Any Workarounds:
    I can not find it out since it's an api level bug. But this can be very important for lots of applications which rely on send to do rpc.
    Test Configuration
    IE8, Firefox under Windows 7
    Also have problem under Windows XP (but not well tested on this platform)
    App Language(s)
    ALL
    OS Language(s)
    ALL
    Platform(s)
    Windows 7
    Browser(s)
    Internet Explorer 8.0
    ==Attachment==
    package {
        import flash.display.Sprite;
        import flash.events.Event;
        import flash.events.NetStatusEvent;
        import flash.events.TimerEvent;
        import flash.media.Video;
        import flash.net.NetConnection;
        import flash.net.NetStream;
        import flash.text.TextField;
        import flash.utils.Timer;
        import flash.utils.setTimeout;
        public class SendTestExample extends Sprite
            public static var statusArea:TextField;
            var ncServer:NetConnection = new NetConnection();
            var nsServer:NetStream;
            var ncClient:NetConnection = new NetConnection();
            var nsClient:NetStream;
            var timer:Timer = new Timer(1000);
            public function SendTestExample() {
                ncServer.addEventListener("netStatus", onNCStatusServer);
                ncServer.connect("rtmfp://p2p.rtmfp.net","99f72ccbed0948d7589dc38a-3ce1b2616680");
                statusArea = new TextField();
                status("status");
                statusArea.x = 0;
                statusArea.y = 0;
                statusArea.border = true;
                statusArea.width = 200;
                statusArea.height = 350;
                addChild(statusArea);
            function onNCStatusServer(event:NetStatusEvent):void {
                status("Step 1:");
                status("server: " + event.info.code);
                status("id: " + ncServer.nearID);
                switch (event.info.code) {
                    case "NetConnection.Connect.Success":
                        nsServer = new NetStream(ncServer, NetStream.DIRECT_CONNECTIONS);
                        nsServer.addEventListener(NetStatusEvent.NET_STATUS, onNSStatusServer);
                        nsServer.publish("sendtest");
                        ncServer.removeEventListener(NetStatusEvent.NET_STATUS, onNCStatusServer);
                        ncClient.connect("rtmfp://p2p.rtmfp.net","99f72ccbed0948d7589dc38a-3ce1b2616680");
                        ncClient.addEventListener("netStatus", onNCStatusClient);
                    case "NetStream.Publish.BadName":
                        //status("Please check the name of the publishing stream" );
                        break;
            function onNCStatusClient(event:NetStatusEvent):void {
                status("Step 2:");
                status("client: " + event.info.code);
                status("id: " + ncClient.nearID);
                switch (event.info.code) {
                    case "NetConnection.Connect.Success":
                        nsClient = new NetStream(ncClient, ncServer.nearID);
                        var c:Object = new Object();
                        c["clientfunction"] = clientfunction;
                        nsClient.client = c;
                        nsClient.play("sendtest");
                        ncClient.removeEventListener(NetStatusEvent.NET_STATUS, onNCStatusClient);
                        //setTimeout(sendHello, 5000);
                    case "NetStream.Publish.BadName":
                        //status("Please check the name of the publishing stream" );
                        break;
            protected function onNSStatusServer(event:NetStatusEvent):void {
                status("nsserver: " + event.info.code);
                if (event.info.code == "NetStream.Play.Start") {
                    status("Start HeartBeat:");
                    this.timer.addEventListener(TimerEvent.TIMER, function (e:Event):void {
                        sendHello();
                    this.timer.start();
            protected function sendHello():void {
                status("send hello");
                nsServer.send("clientfunction", "hello");
            protected function status(msg:String):void
                statusArea.appendText(msg + "\n");
                trace("ScriptDebug: " + msg);
            protected function clientfunction(event:Object):void {
                status("in client function: " + event);

    Thanks for reporting. I can reproduce the bug in house. We will investigate.
    Calise

  • GETURL  is not working in flash player 9.0.124.0.

    Dear Friends,
    My swf and my html are in different domain so i got a issue
    in GETURL function , It is not working in flash player 9.0.124.0.
    in IE browser so that i add one parameter like allowScriptAccess
    =always then its working fine.but my question is what will happed
    if they will introduce any new flash version in future please tell
    me what is the permanent solution for this issue.
    Thanks

    There is no way to know what will change in the future. This
    is the solution that works now. It will probably remain in place
    for the reasonable future.

  • The context menu does not work

    Hello Everyone,
    I have a problem when I try to use  the context menu.
    Just it does not work using control key and click, for example when I select a folder and I want to apply a color
    for the folder the context menu does not work.
    Thank you if anyone has an idea of how can I restore the normal function.
    Adrian

    /Library/Preferences/com.apple.finder.plist 

  • I am getting frustrated with Apple not working with Flash player on some of my favorite web sites. Is there any alternative that will work on I-pad instead of flash?

    I am getting frustrated with Apple not working with Flash Player on some of my favorite web sites! Is there another alternative to watching these site options on my I-pad?

    Flash is not, and probably never will be, supported on the iPad : http://www.apple.com/hotnews/thoughts-on-flash/ . Plus it would be up to Adobe to make a version of their flash player that works on iOS devices - something which they have never managed to do and which they have now given up on trying to do.
    Browser apps such as Skyfire, iSwifter and Puffin 'work' on some sites, but judging by their reviews not all sites. Also some websites, especially news sites, have their own apps in the App Store, so your could try checking there for your sites (and there is the built-in YouTube app).

  • Captivate 4 AS2 Text Entry Box not working with Flash Player 11

    I am having issues with text entry boxes not working at all in flash 11. I am using Captivate 4 and exporting an AS2 swf. When you get to the slide you can type but you cannot see anything nor does the button or keystroke to move on. Also there is no cursor. Any ideas?

    You said it is not working with Flash 11, so does that mean you tested with previous version and that worked?
    While publishing choose Flash player as 9 and publish that, verify if that plays in a compatible web browser.
    AS 2 is a legacy scripting, it has been said not too be supported with even Flash Player 10 --
    http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=Part2_AS2_LangRef_1.html
    I believe if you switch back to version 9 while publish your project, it should work.
    Thanks,
    Anjaneai

  • Quicktime plugin for screen capture does not work in flash player 11.2

    Hello,
                   I have created a quicktime plugin (it is .component file) for screen sharing purpose.
    I have used quicktime framework for that. plugin is detected in flash player.
    This plugin is working perfectly for flash player 11 and below.But,
    It does not working in latest flash player 11.2.
    I have seen following error on console -
    Google Chrome Helper EH[240:e92b] *** QTCaptureSession warning:
    Session received the following error while decompressing video:
    Error Domain=NSOSStatusErrorDomain Code=-8974
    "The operation couldn’t be completed. (OSStatus error -8974.)".
    Make sure that the formats of all video outputs are properly configured
    Note - Compression format used in plugin is kBMPCodecType.
    Please, help me.

    The issue ended up being the change in resolution to my external monitor. Flash was unable to detect the proper coordinates of the color I was trying to select because I was running my monitor in HD mode rather than selecting an actual resolution from my monitor preferences. Changing the settings to an acutal resolution, instead of generic "HD mode" fixed the issue.

  • RSL Caching not working in Flash Player

    We have built a Flex application compiled into an swf file that uses RSL linkage for the different framework libraries it needs. This has been done to reduce the size of the swf file. We are using the URL of the signed version of the library while building the application. The online documentation suggests that the signed SWZ files are cached by the flash player, so that they are not downloaded every time they are required. The swf file is embedded in a PDF file. Our observation is that when we run the Flex application by opening the PDF file in Adobe reader, the RSLs are not getting cached in the Flash player. If we disable the network connection on the computer that opens the PDF file, the Flex application dosen't load. Is this the expected behavior? Or are we missing something? Although if we open this this FLEX application in browser, it works fine.
    Is there a way in which we can maintain RSL caching in flash player, so that the PDF can be opened in the offline mode as well.
    We welcome your suggestions on this.

    Hi Alex,
    Thanks for your response. Our application uses framework RSL at:
    http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/framework_4.6.0.23201.swz
    We discovered today that the problem occurs when we open the PDF in Adobe reader 11 in offline mode. When we opened this PDF in Adobe Reader 10, it works in offline mode as well. I believe there are some differences in the way Flash integrates with Adobe Reader 11: that it uses the system Flash player instead of an embedded one. Not sure if this is the cause of the issue, and if so how to resolve. Any help would be much appreciated.
    Thanks

  • GetURL(javascript) not working in flash player 9

    This action works well in flash player 8 but it doesnt in
    flash player 9 can someone please help me, its very urgent.
    getURL(javascript:openNewWindow('
    http://www.macromedia.com','thewin',
    'height=400,width=400,toolbar=no,scrollbars=yes'));

    DazFaz wrote:
    > if looks as though you have missed off the speach marks
    from within the call:
    >
    > getURL("javascript:openNewWindow('
    http://www.macromedia.com','thewin','height=40
    > 0,width=400,toolbar=no,scrollbars=yes')");
    One more note tho, it's good to void the request after you
    make the window call.
    getURL
    ("javascript:n_name=window.open('PAGE.htm','thewin','width=400,height=400,scrollbars=yes' );void(0);");
    *** VOID
    Void returns nothing.
    Have you ever seen pop up windows that say [object] in them?
    well that's because the function that made those windows had
    a return
    value that was an 'object'...
    Void is use to take the result that some function returns and
    discard it.
    Some people do window.open(...);void(0); or
    void(window.open(..)); - does not
    really matter tho .....but it's good practice to use it .
    Also, no need to set NO parameters. By default all are set to
    NO, you only
    define the one you need to be set to YES.
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Layered Menu Buttons not working on DVD player

    Hello,
    I just made an SD DVD with several layered menus. The backgrounds for the menus come from photoshop files with different layers for normal, selected, and active states. Navigating the main menu works fine in the simulator and when I play the disc in my computer, however, I can not arrow to another button on dvd players. I have made several discs this way and this is the first time I have had this problem. My burn process is to make an image and then burn the image in toast. Any thought?
    -Brian

    Hi Brian - welcome.
    Layered menus are particularly tricky... they almost always require two actions from the user to get them working in a player. One click to land on the button and another to select it. This is really frustrating at times, but is down to the way the layered menus work.
    You can convert them to standard menus pretty easily though, and unless you absolutely need to have different layers I'd strongly advise that you do convert them. Standard overlay type menus work with a rollover type of effect, allow you to have an audio bed and work far faster on DVD players.
    The only time I'd stick with layers is when the selected state reveals a further piece of information that takes up most of the menu area. In all other cases I'd avoid them if I were you

  • Download not working on flash player for mini mac

    I downloaded the new update for my flash player and was unable to get any videos on my comcast.net.  went online and tried to fix problem and redownload and now my computer will not do any Adobe programs at all.  Have downloaded the flash player again and it still will not work and the adobe read is also gone apparently.

    Moving this discussion to the Installing Flash Player forum.

  • Screensaver not working since Flash Player 11 update.

    Hi,
    I'm using windows 7 and have my sceeen to dim after 1 minute of not being used and screensaver to come on after 20 minutes but if I have a tab open in IE9 which contains a youtube video that's not playing the screen won't dim and the screensaver won't start either. If I close the youtube tab it works fine. I'm using the latest version of flash player. Can anyone help with this? Many thanks in advance

    @LotharOfTheHillPeople - What page is causing problems with your webcam?  If you go into Flash Player settings, do you see your webcam listed?
    Can you try this page: http://www.testmycam.com/

  • "Save link as" in Right-click Context menu is not working properly.

    Firefox 17: In a Google search, when I right click on a .pdf link, the popup window automatically gives a "url" filename and "Firefox Document" as filetype. Previously, the filename would be whatever it was on the website (ie. "filename.pdf") and the filetype would be "Adobe Acrobat Document".
    I know this problem has less to do with Firefox and more to do with JavaScript, because the problem disappears if you disable JavaScript (Tools -- Options -- Content -- uncheck "Enable JavaScript"). What's happening is that JavaScript is somehow altering the link from a purely .pdf link to something else -- perhaps encasing the link inside a set of commands, and the computer is trying to save the command string instead of recognizing the link for what it is. When JavaScript is disabled in Google searches, the highlighted "[PDF]" link no longer appears in front of the link itself, and the "Save link as" function on the right-click works properly.
    Any JavaScript junkies want to try their hand at creating a workaround? One that ensures that the reference created by the right-click context menu matches exactly what the filename is for the website?

    The problem is that Google has an onmousedown attribute added to the links that modify a link if you click or right-click a result link to make the link point to a safe browsing check on the Google server.<br />
    You can see that if you hover a link and you will notice that after you have (right) click a link the the URL changes to www.google.com/url?xxxxx.
    You can use this bookmarklet to remove the onmousedown attributes.
    <pre><nowiki>javascript:(function(){var e=document.querySelectorAll('*[id="search"] a[onmousedown]'),E,i;for(i=0;E=e[i];i++){E.removeAttribute('onmousedown')}})()</nowiki></pre>

  • Flash plugin created not working in flash player 10.1 (release - not beta)

    Hello, i wrote a plugin using flash (you can click on the preview button to see it):
    http://activeden.net/item/shiny-plugin/94112
    It worked perfectly on all the previous flash player versions and in the new flash player 10.1 you can see the effect.
    Actionscript wise -  it draws lines at various angles and then apply gradient glow on them.
    If you re-install the previous version the plugin works again. any clue why is it happing? Thanks.
    =====================
    System: Windows 7-64Bit
    Flash player: 10.1
    CPU: Intel Core 2 Quad 2.4MHz,3GB RAM
    GPU: Nvidia 8800 GTS
    =====================

    Thanks for the quick response! here is the file list (all file versions are 10.1.53.64):
    C:\Windows\SysWOW64\Macromed\Flash:
    Flash10h.ocx
    FlashAuthor.cfg
    FlashInstall.log
    flashplayer.xpt
    FlashUtil10h_ActiveX.dll
    FlashUtil10h_ActiveX.exe
    install.log
    NPSWF32.dll
    NPSWF32_FlashUtil.exe
    uninstall_plugin.exe
    C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerTrust:
    Adobe Search For Help.cfg
    AdobeFireworksCS5.cfg
    AdobeXMPFileInfo.cfg
    AdobeXMPFileInfoCS5.cfg
    kuler.cfg
    ServiceManager.cfg
    I also made sure all the addson are enabled. Still doesn't work.
    disabled hardware acceleration.Still doesn't work.
    the last resort is will try to update the GPU driver - as ʇɐb ɹəuəllıʍ said.
    I will keep you posted either way. thanks

Maybe you are looking for

  • ITunes can no longer locate iPhone4

    iTunes can no longer locate my iphone 4. Both iTunes and iPhone have updated software. Phone will charge but can not be found in iTunes or in my computer. What do I need to do?

  • Add Instance Subform content to textbox

    Hi all, There is sth I would like to do. I have a form which has a text field that is in a subform where you can add instances. No problem with pages etc. Now, I have created a text field where I would like all entries to be repeated as plain text po

  • MySQL connectivity problem: no validation table provided

    hi there, As a superbeginner, on my Mac G4 OSX 10.4 I am trying to add a MySQL database in Sun JSC 2.1, following the tutorial: Creating Database Server Types and Data Sources So far I have managed to -install mysql 3.1.14 and -add this as a new data

  • Global or Passed vars?

    I have a situation where I am going to process a series of "Packages" which contain an arbitrary series of "Tasks" and I need to then write that info to the registry in a "Package" Key and "Task" Values. The actual Package and Task processing happens

  • HT1848 Lost Purchases Since IOS7

    I have paid for several audiobooks and since upgrading to IOS7 they are not available on my iPhone OR visible on iTunes and have appeared to have just disappeared.  They are in my purchases in account history but nowhere either on my Mac, iPhone or i