Why do i get this pop up message using flah player 8

I get the following pop up message: Where is the debugger
profiler running?
I used a movie from flashkit, embedded it in dreamweaver and
when i refreshed this message came up, and asked if i was using a
localhost or if other what was the IP address...
I have never seen this before, has anyone else?
Lee

That is a problem with the Adobe Download Manager (getplusplusadobe16287).
See
[[Troubleshooting plugins]]
[[Troubleshooting extensions and themes]]

Similar Messages

  • I keep getting this pop up message while in iTunes -- MobileDeviceHelper has stopped working -- How do I get it to stop?

    I keep getting this pop up message while in ITunes -- MobileDeviceHelper has stopped working -- How can I get it to stop?

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Why am I getting this App Store message for the new OS: The product distribution file could not be verified. It may be damaged or was not signed.

    Why am I getting this App Store message:
    The product distribution file could not be verified. It may be damaged or was not signed.

    I had the same problem. Spoke to Apple support who directed me to Itunes support.  Frustrating to say the least.  Some have said remove virus barrier.  I did and still nothing.  Some posts have said to delete App store.  DON'T DO IT.. App store is tuff to get back.  This did work for me. Go to Finder, then go, pick go to folder, type in, /var/folder, and delete (send to trash).  There were 2 folders I had to delete, KX & XX, and as soon as I sent them to the trash they returned but I was able to download & intall Mountain Lion and working well.  Good luck..

  • Hello, I have a Mac OS X, and can't seem to install the creative cloud, I get this pop-up message when I try Er is geen programma ingesteld om de URL 'aam://?passPhrase=QDdPo8BTHv975B1B1f0x3anMggUxp4allBf lsm629RgGXV22ocIlQfI9TMW5vkteaQquFNIFB1uDwU18Z268e

    Hello, I have a Mac OS X, and can't seem to install the creative cloud, I get this pop-up message when I try
    Er is geen programma ingesteld om de URL 'aam://?passPhrase=QDdPo8BTHv975B1B1f0x3anMggUxp4allBf lsm629RgGXV22ocIlQfI9TMW5vkteaQquFNIFB1uDwU18Z268e69Er6M8XCttQjvdYYdLJ9biyCRQF931 MyMPR0rGvrenZ0e2iougs4l9mlOAHDsfQEDOaqfVInflnZ9 FZSMc=' te openen. 
    So basically it said that I don't have a program to open it? I already had a trial version on my mac, but deleted it..

    YasmineH your web browser is blocking the installation of the AAM Detect plug-in.  I would recommend using a different web browser or installing through the Creative Cloud Desktop application.  You can find additional details on how to install the Adobe Creative applications included with your membership at Install and update apps - https://helpx.adobe.com/creative-cloud/help/install-apps.html.

  • Why am I getting this pop up when I open iTunes..

    I have had my Mac for about a month now.. I am not sure what I did.. but whenever I open my iTunes I get this message popup.. "Do you want to accept the application iTunes.app to accept incoming network connections" I was not getting this when I first started using iTunes.. now I get it every time I open iTunes.. not sure if I changed something or what??
    http://gallery.me.com/crizzodesigns#100017/Screen%20shot%202010-05-28%20at%202.2 4.16%20PM
    Thanks
    Christopher
    Message was edited by: CrizzoDesigns

    I have the exact same problem. But setting the firewall settings (in Security in System Preferences) to "Allow incoming connections" for iTunes doesn't correct it. The problem began at about the time I switched to a new MacBook Pro, but could also be due to the fact that at about the same time I upgraded to iTunes version 9.1.1 (12).
    Please help.

  • Could somebody explain why I am getting this Error #1009 message?

    Hi. I am following a tutorial on lynda.com in hopes of learning how to use actionscript 3.0 and my copy of flash CS4 to create games. I wrote my code exactly like it showed in the tutorial, but for some reason I will occasionally receive an error that says
    "TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Monster/die()
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at fl.motion::AnimatorBase/end()
    at fl.motion::AnimatorBase/handleLastFrame()
    at fl.motion::AnimatorBase/nextFrame()
    at fl.motion::AnimatorBase/handleEnterFrame()"
    It doesn't happen all the time but it will every once in a while. There doesn't really seem to be anything specifically that triggers it either. I also happened to notice that not all of the enemies respond to being clicked on. I don't know if these two things are related or not. I don't know if the error is caused by the code for the monster library item or the code for the main timeline. Thank you in advance for looking at my code.
    This is my code for the monster library item:
    import fl.motion.Animator;
    import fl.motion.MotionEvent;
    var this_xml:XML = <Motion duration="30" xmlns="fl.motion.*" xmlns:geom="flash.geom.*" xmlns:filters="flash.filters.*">
    <source>
      <Source frameRate="10" x="275" y="200" scaleX="1" scaleY="1" rotation="0" elementType="movie clip" symbolName="monster">
       <dimensions>
        <geom:Rectangle left="-32.5" top="-32.95" width="65.05" height="65.95"/>
       </dimensions>
       <transformationPoint>
        <geom:Point x="0.49961568024596464" y="0.49962092494313876"/>
       </transformationPoint>
      </Source>
    </source>
    <Keyframe index="0" tweenSnap="true" tweenSync="true">
      <tweens>
       <SimpleEase ease="0"/>
      </tweens>
    </Keyframe>
    <Keyframe index="29" tweenSnap="true" tweenSync="true" scaleX="2.782" scaleY="2.697">
      <tweens>
       <SimpleEase ease="0"/>
      </tweens>
    </Keyframe>
    </Motion>;
    var this_animator:Animator = new Animator(this_xml, this);
    this_animator.play();
    this_animator.addEventListener(MotionEvent.MOTION_END, hurtPlayer);
    function hurtPlayer(MotionEvent):void
    var main:MovieClip = MovieClip(this.parent.parent);
    main.decreaseEnergy();
    this.parent.removeChild(this);
    this.addEventListener(MouseEvent.CLICK, killMonster);
    function killMonster(event:MouseEvent):void
    this_xml = <Motion duration="5" xmlns="fl.motion.*" xmlns:geom="flash.geom.*" xmlns:filters="flash.filters.*">
    <source>
      <Source frameRate="10" x="275" y="200" scaleX="1" scaleY="1" rotation="0" elementType="movie clip" symbolName="monster" class="Monster">
       <dimensions>
        <geom:Rectangle left="-32.5" top="-32.95" width="65.05" height="65.95"/>
       </dimensions>
       <transformationPoint>
        <geom:Point x="0.49961568024596464" y="0.49962092494313876"/>
       </transformationPoint>
      </Source>
    </source>
    <Keyframe index="0" rotateDirection="cw" rotateTimes="1" tweenSnap="true" tweenSync="true">
      <tweens>
       <SimpleEase ease="0"/>
      </tweens>
    </Keyframe>
    <Keyframe index="4" rotateDirection="cw" rotateTimes="1" tweenSnap="true" tweenSync="true" scaleX="0.416" scaleY="0.378">
      <color>
       <Color alphaMultiplier="0"/>
      </color>
      <tweens>
       <SimpleEase ease="0"/>
      </tweens>
    </Keyframe>
    </Motion>;
    this_animator = new Animator(this_xml, this);
    this_animator.play();
    this_animator.addEventListener(MotionEvent.MOTION_END, die);
    function die(event:MotionEvent):void
    var main:MovieClip = MovieClip(this.parent.parent);
    main.increaseScore();
    this_animator.removeEventListener(MotionEvent.MOTION_END, hurtPlayer);
    this.parent.removeChild(this);
    This is my code for the main timeline:
    var monstersInGame:uint;
    var monsterMaker:Timer;
    var container_mc:MovieClip;
    var cursor:MovieClip;
    var score:int;
    var energy:int;
    function initializeGame():void
    monstersInGame = 10;
    monsterMaker = new Timer(1000, monstersInGame);
    container_mc = new MovieClip;
    addChild(container_mc);
    monsterMaker.addEventListener(TimerEvent.TIMER, createMonsters);
    monsterMaker.start();
    cursor = new Cursor();
    addChild(cursor);
    cursor.enabled = false;
    Mouse.hide();
    stage.addEventListener(MouseEvent.MOUSE_MOVE, dragCursor);
    score = 0;
    energy = energy_mc.totalFrames;
    energy_mc.gotoAndStop(energy);
    function dragCursor(event:MouseEvent):void
    cursor.x = this.mouseX;
    cursor.y = this.mouseY;
    function createMonsters(event:TimerEvent):void
    var monster:MovieClip;
    monster = new Monster();
    monster.x = Math.random() * stage.stageWidth;
    monster.y = Math.random() * stage.stageHeight;
    container_mc.addChild(monster);
    function increaseScore():void
    score ++;
    if(score >= monstersInGame)
      monsterMaker.stop();
    function decreaseEnergy():void
    energy --;
    if(energy <= 0)
      monsterMaker.stop();
    else
      energy_mc.gotoAndStop(energy);
    initializeGame();

    Ok. Apparently, I didn't test it enought times to get the error. I went back and tested it again to get the error. When I did this, the
    trace(this); revealed [object Monster]
    and
    trace(this.parent); revealed [object MovieClip].
    The only one that was different was the one that gave the error. For that one the
    trace(this); revealed [object Monster]
    and
    trace(this.parent); revealed null.
    Then it gave all of the error information.

  • Why do I get this result when I use split

    Hello guys
    I have created a script that looking for the active path,
    var myPath = (File($.fileName).parent.parent.parent.fullName);
    alert(myPath)
    I recieve "/xxxxx/xxxx/xxxx/341542"
    the only thing I am interested of in this information it's the number,
    so I added on the code
    var myPath = (File($.fileName).parent.parent.parent.fullName).split("xxxx/xxxx/xxxx/");
    the problem is
    I recieve ",341542"
    why do I recieve a comma before the number??
    there is no comma. in the path.

    Laubender,
    in my opinion on Mac OSX  path.fullname also get the folderpath separated with "/"
    Isn't it so?
    But back to the problem.
    The best way is to use name instead of fullname:
    alert(decodeURI(File($.fileName).parent.parent.parent.name))
    Otherwise with the match function:
    If there are no digits at the end of the path - the result is null and match fails.
    I'm with Trevor and Kai Rübsamen: .match(/[\/:]\d+$/) or the split method should be the best in this case.

  • I keep getting a pop-up message that api.del.icio.us:443 USPS uses an invalid security certificate and want to stop getting this message. How can I get this to stop?

    The message goes on to say the certificate expired on 5/22/11 at 3:11 pm Error code: sec_error_expired_certificate.
    I get this pop-up message about every 5 minutes.
    I am not an IT professional or advanced user so please provide a simple solution. Thank you.

    I'm having this problem too. Tried the above link and thinking that sounded pretty straight forward, unfortunately this message was displayed:
    This XML file does not appear to have any style information associated with it. The document tree is shown below.
    <!--fe12.api.del.ac4.yahoo.net uncompressed/chunked Tue May 24 08:51:42 UTC 2011 -->
    <result code="access denied"/>
    Any help, please?!

  • How do you get rid of this pop up message: You are currently browsing the web with and it is recommended that you update your video player to the fastest version available. Please update to continue.

    I am getting this pop up message: You are currently browsing the web with and it is recommended that you update your video player to the fastest version available. Please update to continue.
    How do I get rid of it? I have tried searching the web and I have only seen solutions for chrome and firefox. Thanks.

    the link to the page is below
    http://www.viesio9q58.com/41612C472C746D6E5047462D522B3A499CE6BD0593A068E7860909 6F792C3C69D19ECDCE71575FC8DABD23D1A0E21C93?PubID=79_3527_3100&tgu_src_lp_domain= www.newallsoft.com&ClickID=7649753723

  • HT1414 Why do I get 'This message has no content' with some e-mails on my iPad when the same messages can be received on my MacBook Pro without any problem, and how can I fix it?

    Why do I get - 'This message has no content' - with some e-mails on my iPad when the same messages can be received on my Mac Book Pro without any problem and how can I fix it?

    Is this a POP (POP3) email account?  If so, you MacBook Pro may be retrieving the email and deleting it off the server before your phone can.  Another possibility is that both your Mac and your phone are trying to retrieving it at the same time, and the POP server, which will only allow a single email client connection at a time, is locking out your phone resulting in the "has not been downloaded from the server" error.

  • Why does my phone keep popping up messages "This cable or accessory is not certified and may not work reliably with this iphone" when there is no cable connected?

    Why does my phone keep popping up messages "This cable or accessory is not certified and may not work reliably with this iphone" when there is no cable connected? This has been happening since IOS7 was installed and has become worse with 7.1. I have reset the phone several times with no change.The phone charges properly & I have never used anything but an Apple Lightning cable.

    I already cleaned the port with compressed air before submitting the problem. I since cleaned it with a toothpick and dug out some more lint. this seems to have just about fixed the problem since I have only had the error pop up 3 times since then and i was getting the error constantly before.

  • I keep getting this pop up that says why you no play candy crush is this a virus?

    I keep getting this pop up that says why you no play candy crush is this a virus?  How do I get rid of it?  It has an option to click on cancel or ok.  I keep clicking cancel.

    That's not what it is.  I have just started getting the exact same pop-up, and I am using a 5th gen. iPod Touch.  It can't receive carrier messages, being that it only has WiFi access to the internet.
    What is happening to me is this:  I start playing the TicBits "Sudoku " app.  A couple of minutes into the game, the app starts getting sluggish, and cannot keep up with my fingers... I touch the screen, and it takes longer and longer for the game to respond to my touches while trying to fill in the numbers in the sudoku puzzle.  Eventually, this stupid pop-up interrupts.  If I hit cancel, it might pop up two or three more time in a row.  If I hit OK, it pulls up the app store (I have just immediately hit the home button and restarted the sudoku game up to this point, but I will try to remember to let it take me all the way to the app it is trying to sell next time so I can report back, but I assume it's going to try to get me to download Candy Crush Saga).
    I do not have Candy Crush installed nor do I want to install it).  I am worried that this is some kind of malicious software, given how badly it affects the Sudoku app.  I don't have any interesting information on my iPod Touch for a virus to steal other than the password to my Apple ID when I need to use the App Store or iTunes.
    I have turned off Alerts for all apps other than Clock and Caendar, as I need those for appointment and alarm reminders.  Nothing else should be allowed to use these alert pop-ups.

  • "This message cannot be sent at this time."  I have been getting this pop-up for 3 days when trying to send out mail.  I don't know what to do!  I cannot send mail from this account on any ISP. Please help!

    "This message cannot be sent at this time."  I have been getting this pop-up for 3 days when trying to send out mail.  I don't know what to do!  I cannot send mail from this account on any ISP. Please help!

    lots of people seem to be havgin a problem sending email from iCloud webmail.
    does your email address have uppercase characters in it?
    if so, try creating an alias in lowercase (go to preferences in iCloud webmail and select 'accounts') and see if email sends okay from that

  • TS1702 "The feature you are trying to use is on a network resource that is unabailable" Why am I getting this message when I try to updaate itunes or quicktime?

    The feature you are trying to use is on a network resource that is unabailable" Why am I getting this message when I try to updaate itunes or quicktime?

    Before trying the update again, use Microsoft's Fix it solution at http://support.microsoft.com/mats/Program_Install_and_Uninstall. Use it to uninstall iTunes and Quicktime. It bypasses this not uncommon problem. When the solution finishes, the selected program will be uninstalled. It can take several minutes and I have seen as much as half an hour.
    After iTunes & Quicktime are uninstalled, try the update again.

  • Why do I get this error message when I open Organizer in Photoshop Elements 11 "Elements Organizer has stopped working"? My only option is to Close Program so I am effectively locked out of my photo catalogue.  I have reinstalled the program to no avail.

    Why do I get this error message when I open Organizer in Photoshop Elements 11 "Elements Organizer has stopped working"? My only option is to Close Program so I am effectively locked out of my photo catalogue. I have tried reinstalling the program but it made no difference to the error message.
    Could someone help please?  Steph

    Hi,
    Please give a try to Photoshop Elements (PSE) knowledge base. steps mentioned on this and see if it works.
    Regards
    Kishan

Maybe you are looking for