Why is adobe running twice?

as you can see adobe is running twice? why??
I have windows 7 32bit, latest version of firefox and adobe

I have the same thing happening. Today my pc became noticeably slow (even logging into windows usually takes about 5 seconds, today it takes almost a min). I have ran virus and malware scans and found nothing. I checked processes to see if there is anything unusual and found nothing except this. And when I re-entered task manager both processes were gone.

Similar Messages

  • Why my applet runs twice sometimes ?

    I have created a simple applet which is no layout and simply write a system message if init completed.
    However, I found that sometimes there is two init message come out at the same time even if I load the applet only one time.
    The following is my src code :
    public class MyShop extends Applet
    public void init()
    System.out.println("[myShop] Init!");
         public boolean setValue (String id, String strValue)
         return Store.setValue (id, strValue);
         public String getValue (String id)
              return Store.getValue (id);
    Can anyone tell me why ?

    Maybe the problem is in the html page. You may be causing two instances of the applet to be instanciated.

  • I have a php module which runs fine in Firefox and all other browsers but not Safari. It always run twice - I see a small ? in upper right corner which is causing it to run twice but NO idea why? Help - thank you

    I have a php module which runs fine in Firefox and all other browsers but not Safari. It always run twice - I see a small ? in upper right corner which is causing it to run twice but NO idea why? I read it MAY have something to do with am image it cannot load but I see them all loaded.  Help - thank you

    Could you share a link to the page?
    Seeing it in context and in our browsers is much easier to debug.
    If not, make sure to run the validator here The W3C Markup Validation Service and clear out any problems. HTML errors, especially structural ones, will cause all kinds of display problems in various browsers/versions/platforms.

  • Adobe reader 7 hangs, task manager shows it is running twice

    I am using Adobe Reader 7
    I have a problem, when I click on a ,pdf file it opens but it is locked, if I try to zoom or do anything else it freezes up, I check in task manager and it shows that AR is running twice, if I oen a pdf and leave it, and dont zoom or do anything else after about a 2 minutes it will work fine,
    anybody know a fix for this?
    I have unistalled and reinstalled tried different versions etc, but nothing works.
    TIA

    Yes it runs twice, if I let it go for about 2 minutes and do not touch it or try to do anything with it, it will start to work and it will only show up once in the task manager, however if I open it and try to scroll, zoom, or even close it, it will freeze completely.

  • Why the process chain always run twice when triggered from R3?

    I run a program from R3 by calling the remote function 'RSSM_EVENT_RAISE' on BW to trigger an event and in turn the event on BW bring up the running of a process chain.  But whenever I run the program on R3 to bring up the running of the process chain, I find the process chain always run twice at the same time.  Does anybody knows the answer? 
    And also I would like to know the functionalities of the two picture buttons "Activate" and "Activate and Schedule" in process chain.  In which case the "Activate" button should be used and in which case, the "Activate and Schedule" button should be used?   If we click the Start variant of a process chain, then click "Change Selections" button which bring up the window "Start Time" where the buttons "Immediate", "Date/Time", "After job", and "After event" are listed at the top.  If we modify at any of the above buttons, then after save this modification, we will have to click "Activate and Schedule" button to make it work, right? 
    Thanks a lot and everyone's idea is greatly appreciated!

    Kevin, make sure there is only one job scehduled for the Start Process of your Process Chain.  If you bring up the Process Chain (not the log view), right click on the Start Process and select "Displaying Scheduled Job(s)...".  There should only be one scheduled job with name BI_PROCESS_TRIGGER.  If there is more than one, then when triggered, it would execute more than once at the same time.  If there is only one job, then maybe your R/3 program is triggering the event more than once? 
    As far as the Start conditions for the Start Process, it works off the same principals as a scheduled job.  These start conditions determine when or how the Process Chain is to be executed.  You also have control over frequency.  These start conditions determine the scheduling of the Start Process of your Process Chain.
    When you schedule a Process Chain, a separate scheduled job is created for "each" process in the Chain.  BW controls the triggering of these jobs based upon how the processes in the Chain are linked.  All the jobs associated with Process Chains have strict naming conventions and all begin with BI_PROCESS_...  If you use SM37 to view all jobs that begin with BI_PROCESS_ you will find alot of scheduled jobs associated with your process chains.  Each job represents one of the processes within your process chains. 
    Does this help?
    Another tip might be to trigger the event manually in BW (use tx SM64).  If the process chain executes twice again, then maybe there is a separate scheduled job in BW that triggers the process chain that is triggered by the same event as the start process of the process chain.
    Message was edited by: George Shannon

  • Why does this AppleScript run twice in Automator?

    I am trying to create an application that I can run and change the function of my F1, F2 keys to or from standard function. I found this AppleScript online and it works... but it runs twice in a row:
    tell application "System Preferences" to activate
    tell application "System Events"
    tell application "System Preferences"
    activate
    set current pane to pane "com.apple.preference.keyboard"
    end tell
    tell process "System Preferences"
    click radio button "Keyboard" of tab group 1 of window "Keyboard"
    get every attribute of checkbox ¬
    "Use all F1, F2, etc. keys as standard function keys" of ¬
    tab group 1 of window "Keyboard"
    click checkbox ¬
    "Use all F1, F2, etc. keys as standard function keys" of ¬
    tab group 1 of window "Keyboard"
    activate
    if value of checkbox ¬
    "Use all F1, F2, etc. keys as standard function keys" of ¬
    tab group 1 of window "Keyboard" = 0 then
    display dialog ¬
    "Standard Function Keys off..." giving up after 1
    else
    display dialog ¬
    "Standard Function Keys on..." giving up after 1
    end if
    end tell
    tell application "System Preferences"
    quit
    end tell
    end tell
    If I change the Script by taking out the following, it only runs once. I believe my issue is in the below Script. I have fiddled with all that I know how to and either it doesn't run, or it runs twice...
    tell process "System Preferences"
    click radio button "Keyboard" of tab group 1 of window "Keyboard"
    get every attribute of checkbox ¬
    "Use all F1, F2, etc. keys as standard function keys" of ¬
    tab group 1 of window "Keyboard"
    click checkbox ¬
    "Use all F1, F2, etc. keys as standard function keys" of ¬
    tab group 1 of window "Keyboard"
    activate
    if value of checkbox ¬
    "Use all F1, F2, etc. keys as standard function keys" of ¬
    tab group 1 of window "Keyboard" = 0 then
    display dialog ¬
    "Standard Function Keys off..." giving up after 1
    else
    display dialog ¬
    "Standard Function Keys on..." giving up after 1
    end if
    end tell
    Any suggestions would help. If you run it and it only runs once, I am at a loss. Thank you for you time.

    it works fine for me in both automator and applescript. are you sure you didn't enter it twice in the Run Applescript workflow?
    a couple of tweaks, more for clarity than anything else:
              tell application "System Preferences"
                        activate
                        set current pane to pane "com.apple.preference.keyboard"
              end tell
              tell application "System Events"
                        tell process "System Preferences"
                                  click radio button "Keyboard" of tab group 1 of window "Keyboard"
                                  get every attribute of checkbox ¬
                                            "Use all F1, F2, etc. keys as standard function keys" of ¬
                                            tab group 1 of window "Keyboard"
                                  click checkbox ¬
                                            "Use all F1, F2, etc. keys as standard function keys" of ¬
                                            tab group 1 of window "Keyboard"
                                  activate
                                  if value of checkbox ¬
                                            "Use all F1, F2, etc. keys as standard function keys" of ¬
                                            tab group 1 of window "Keyboard" = 0 then
                                            display dialog ¬
                                                      "Standard Function Keys off..." giving up after 1
                                  else
                                            display dialog ¬
                                                      "Standard Function Keys on..." giving up after 1
                                  end if
                        end tell
                        tell application "System Preferences"
                                  quit
                        end tell
              end tell

  • Stored Proc running twice using DBMS_Scheduler

    Hello all,
    I have a vb front end that calls a main stored proc which submits scheduler jobs to execute several stored procs asynchronously. Everything is working, except the part that the several stored procs are running twice. In the troubleshooting, I have eliminated the front end from being the culprit and the stored procs themselves. Essentially, when I call the stored proc using dbms_scheduler.create_job, it runs twice, even manually. I am about at wits end trying to figure out why: Using Oracle 11gR2
    I started off setting up the programs
    begin
    --create program
    dbms_scheduler.create_program
    ( program_name => 'prog_name'
    ,program_type => 'STORED_PROCEDURE'
    ,program_action => 'usp_sub_proc_1'
    ,number_of_arguments => 8
    ,enabled => FALSE
    dbms_scheduler.DEFINE_PROGRAM_ARGUMENT
    ( program_name=> 'prog_name'
    ,argument_position=>1
    ,argument_name => 'name'
    ,argument_type=>'VARCHAR2'
    /*the remaining 7 arguments are in code but not display for space reasons*/
    dbms_scheduler.enable('prog_name');
    end;Then the main stored proc executes this code:
    declare v_job_name varchar2(100);
        v_1 varchar(50) := 'All';
        v_2 varchar(50) := 'All';
        v_3 varchar(50) := 'All';
        v_4 varchar(50) := 'All';
        v_5 varchar(50) := 'TEST';
        i_6 integer := 1;
        v_7 varchar(50) := 'TEST_NE';
        ts_8 timestamp := current_timestamp;
    begin
        v_job_name := 'uj_dmo_1';
    dbms_scheduler.create_job (v_job_name
                                            ,program_name => 'prog_name'
                                            ,job_class => 'UCLASS_1'
                                            ,auto_drop => TRUE
    --set parameters
    dbms_scheduler.set_job_argument_value(v_job_name,1, v_1);
    dbms_scheduler.set_job_argument_value(v_job_name,2, v_2);
    dbms_scheduler.set_job_argument_value(v_job_name,3, v_3);
    dbms_scheduler.set_job_argument_value(v_job_name,4, v_4);
    dbms_scheduler.set_job_argument_value(v_job_name,5, v_5);
    dbms_scheduler.set_job_argument_value(v_job_name,6, to_char(i_6));
    dbms_scheduler.set_job_argument_value(v_job_name,7, v_7);
    dbms_scheduler.set_job_argument_value(v_job_name ,8, to_char(ts_8));
    --enable job
    dbms_scheduler.enable(v_job_name);
    --execute job
    dbms_scheduler.run_job(job_name => v_job_name , use_current_session => FALSE);
    end;
    ...And this is where I get the double execution of the job, but I am just not seeing it in my syntax, dba_scheduler_jobs, logging, etc. Any help is greatly appreciated, thanks!!

    Well apparently I will not win any Captain Obvious awards;
    With 34MCA2K2's response with "what doesn't work" for some reason turned the light on. After some more testing here is what I found.
    This code works as expected :
    Exhibit A
    begin
    dbms_scheduler.create_job (job_name =>'TESTER'
                                   ,job_type => 'PLSQL_BLOCK'
                                   ,job_action => 'declare test1 integer := 1; begin test1 := test1 + 5; end;'
                                   ,auto_drop => True
       /*dbms_scheduler.enable('TESTER');   */
       dbms_scheduler.run_job(job_name => 'TESTER', use_current_session =>FALSE);   
    end;As does this:
    Exhibit B
    begin
    dbms_scheduler.create_job (job_name =>'TESTER'
                                   ,job_type => 'PLSQL_BLOCK'
                                   ,job_action => 'declare test1 integer := 1; begin test1 := test1 + 5; end;'
                                   ,auto_drop => True
       dbms_scheduler.enable('TESTER');  
      /*dbms_scheduler.run_job(job_name => 'TESTER', use_current_session =>FALSE);    */
    end;Exhibit A will create the job and is visible in the schedulerjobs view, and the RUN_JOB will execute it even when not enabled, but the pl/sql will not drop the job.
    Exhibit B will create the job and once enabled, executes the job and then drops from schedulerjobs view.
    Therefore, my desired results for running the jobs once asynchronously and dropping immediately is....
    begin
        v_job_name := 'uj_dmo_1';
    dbms_scheduler.create_job (v_job_name
                                            ,program_name => 'prog_name'
                                            ,job_class => 'UCLASS_1'
                                            ,auto_drop => TRUE
    --set parameters
    dbms_scheduler.set_job_argument_value(v_job_name,1, v_1);
    dbms_scheduler.set_job_argument_value(v_job_name,2, v_2);
    dbms_scheduler.set_job_argument_value(v_job_name,3, v_3);
    dbms_scheduler.set_job_argument_value(v_job_name,4, v_4);
    dbms_scheduler.set_job_argument_value(v_job_name,5, v_5);
    dbms_scheduler.set_job_argument_value(v_job_name,6, to_char(i_6));
    dbms_scheduler.set_job_argument_value(v_job_name,7, v_7);
    dbms_scheduler.set_job_argument_value(v_job_name ,8, to_char(ts_8));
    /*enable job*/
    dbms_scheduler.enable(v_job_name);
    /*execute job (Do not execute the code below, it will lead to multiple executions)
    dbms_scheduler.run_job(job_name => v_job_name , use_current_session => FALSE); */
    end;

  • Why does Adobe sendnow work and the newest and greatest Adobe Send does not work?

    Why does Adobe sendnow work and the newest and greatest Adobe Send does not work? I wasted about 8 hours on trying to get Adobe Send to upload 269 files that amounted to 469MB. When it did not work I made a zip file and after a lot of wasted run time that did not work. The first situation gives little indication of when a file is loaded compared to Adobe SendNow. In both cases with Send it failed with a message like only the first 50 can be loaded. When I went and looked none of them had been loaded. With the zip file (I wanted to hide the individual files so they would not be counted) it appeared to work but very slowly and finally said it was done and I went and looked and it had done anything for oever 2 hours except a false "I'm runninng" indication.
    Thus, I took a chance with Adobe SendNow and it works great. It never gave me a limit on the amount of files nor on the size of the complete job. It shows me one file at a time when it has finished with the file uploading it. SendNow has never given me any problems.
    Why woiuld you want to change the program from SendNow to Send without the newest program being the best, fastest, user friendly program of the two? It just doesn't make sense to me. I suggest that Adobe keep SendNow working until Send is fixed. I would also suggest that SendNow and how it looks be kept, called Send, then modify Send one thing at a time until you get it to the point you need it to be for Acrobat. I have heard nothing good and now I have experienced it that Send is a piece of junk. I wasted most of my work day on giving Adobe the benefit of the doubt to find out I made a very bad decision to trust Adobe to make good decisions on the transfer of a function to another place .... both Adobe's responsibility.without making it painless for your customers that totally rely on you. Don't throw away customer confidence as it is very hard to get it back.

    Funny how you answer to "troll". (What's your handle on AT&T forums?)
    Yep! Verizon living up to it's contractual obligations by not releasing updates. Caveat emptor!
    I think there are some reasonable expectations here to keep customer's happy. When one carrier offers upgrades there is an expectation the same will happen across all the carriers. We have seen that except Big Red.
    Verizon could have said the update is in MS court months ago and stilled the voice of the disgruntled, or at least redirected it, but instead chose to be silent. Not for market share but for partial blame I think.
    We will have to agree to disagree since you only see Terms & Conditions and I, see customer satisfaction.

  • Why should Adobe Reader fail to print because of settings in the Edit/Preferences?

    AdobeReaderDocumentCouldNotPrint.txt
    Glyn Price Tue 17 March 2015
    Why should Adobe Reader fail to print because of settings
    in the Edit/Preference?
    Adobe Reader XI Version 11.0.10
    MS Window 7
    File > Print > Print
    I got the error message:
    The document could not be printed
    I googled this error message and used the following
    solution that worked i.e. it then printed successfully.
    Edit >  Preferences
    Category: Security(Enhancement)   'Enable Protected  Mode at Startup'
    It was checked, changed it to unchecked.
    Category: Documents    'View documents in PDF/Mode'
    It was set to 'Only for PDF/A'
    Set it to 'Never'
    Exited Adobe Reader and restart it. Then it printed.
    I had a look on another computer system (Adobe Reader XI Version 11.0.10
    and MS Window 7) and on this different computer I could print
    without doing the above two changes.
    I'm a bit puzzled. Why preferences on one system were not
    needed on a different system?

    Here is an elaborate method of troubleshooting this problem. There may be a simpler method if anybody wants to suggest one.
    There is a general technique that is helpful in this situation. I can't give you complete instructions here, and I haven't tested this with regard to bluetooth devices, but here's the gist of it.
    Create a second log-on account for your music projects. Configure it so that when you log in to the new music account, the drivers needed for the Bluetooth devices don't load. You do this in System Preferences: Accounts.
    When it's time to do music, log out of your usual account and onto the new one.
    When you install drivers for any peripheral, you have the option of installing them "for all users" or only for the user account that is active during the installation.
    This governs whether the drivers go in root/library or root/Users/your name/library.
    If drivers are in root/library, they will load whenever the Mac is booted up and will run for all users.
    But if drivers are loaded in root/Users/your name/library, they will only load if you log in as "your name". If you have a second account called root/Users/music account/, and you log in under that, the drivers in "your name" will not load. Get it?
    To get this working right you need to be knowledgeable about moving or deleting files in the /library/ directory and subdirectories, and you need to be careful because you can unwittingly cause some damage if you are not careful.
    There is also the root/System/library directory, and in general you should never mess around with anything in there or you might hose your system.
    In summary, I would start by using the installer programs for your BlueTooth devices and DE-installing all drivers. Reboot. Log back in as your usual user account. Then RE-install each driver and see if the installer program gives you the OPTION to installl for all users or just for this user. Choose the latter. Then log on to your new Music account and see if the problems go away.

  • Why does adobe flash not work in my firefox. i have down loaded it several times. it will work in explorer and chrome.

    why does adobe flash not work in my firefox. i have down loaded it several times. it will work in explorer and chrome.

    IE uses a different version of Flash than other browsers use. You need to install the Plugin version of Flash for Firefox.
    1.Download the Flash setup file from here: <br />
    [http://fpdownload.adobe.com/get/flashplayer/current/install_flash_player.exe Adobe Flash - Plugin version]. <br />
    Save it to your Desktop.<br />
    2. Close Firefox using File > Exit <br />
    then check the Task Manager > Processes tab to make sure '''firefox.exe''' is closed, <br />
    {XP: Ctrl+Alt+Del, Vista: Shift+Ctrl+ESC = Processes tab}
    3. Then run the Flash setup file from your Desktop.

  • I've installed Adobe Reader twice and it still will not read a PDF file. What's up?

    I've installed Adober Reader twice now and it still will not read a PDF. What's up?

    I have the same problem. Adobe Reader worked fine until the last few days. I run Windows 7 and all I get is a small black cross in the top left corner of the screen. I can open downloaded pdf files, but not anything new from the internet.
    I uninstalled and reinstalled the program and have run every type of scan I know of without any change.
    This seems to be a common and recent problem, so I would like to know what's being done about it.

  • Portlet controller beeing run twice

    Hello,
    I noticed a small issue regarding some of my portlets, their controller are run twice for some reason. What can I do to prevent this?
    Running SpringFramework on Bea Weblogic portal 8.1

    Hi Tmukunne,
    I'm confused why you ran the cmdlet "Install-ADDSForest" twice, after you install ADDS role and configure DC with the cmdlet "Install-ADDSForest", you can reboot the server and Domain Controller should work now:
    Install-WindowsFeature -Name AD-Domain-Services
    $Password = ConvertTo-SecureString -AsPlainText -String Password0! -Force
    Install-ADDSForest -DomainName Corp.contoso.com -SafeModeAdministratorPassword $Password `
    -DomainNetbiosName contoso -DomainMode Win2012R2 -ForestMode Win2012R2 -DatabasePath "%SYSTEMROOT%\NTDS" `
    -LogPath "%SYSTEMROOT%\NTDS" -SysvolPath "%SYSTEMROOT%\SYSVOL" -NoRebootOnCompletion -InstallDns -Force
    Restart-Computer -Force
    And you can also run the cmd "dcdiag" to analyze the state of the domain controller, and check if there is any error or failure.
    If there is anything else regarding this issue, please feel free to post back.
    If you have any feedback on our support, please click here.
    Best Regards,                                 
    Anna Wang
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • DocClose event runs twice after extending with user rights

    I have created a form with several fields. To check if the fields are filled, I have placed several checks if the DocClose event. This creates a messagebox containing text of the missing fields. This will only popup when the pdf is closed. See below for a part of the Java-script.
    var errmsg = ""
    if (Form.Page1.CompanyName.rawValue == null)
    {errmsg = errmsg + "CompanyName is not filled in";}
    if (Form.Page1.CompanyStreet.rawValue == null)
    {errmsg = errmsg + "\n";
    errmsg = errmsg + "CompanyStreet is not filled in";}
    if (errmsg !== "")
    {xfa.host.messagebox (errmsg, "Please note!",1,0);}
    else
    This works just fine in Adobe Acrobat and in Adobe Reader. However,the user needs to be able to save a local copy. So, I use Adobe Acrobat 9 Standard to "Extend Forms Fill-In & Save in Adobe Reader". After this change, when this PDF is opened in the Reader or in Acrobat, the messagebox runs twice! The first time as it should, but the second time, it
    I also noticed that the Script language of this part has changed from Java to mixed.
    Thanks for any help!
    Erik

    Dear all,
    I have the same problem, do you have any solution for this?
    Best regards
    Fernando

  • Constructor in document class runs twice?

    Hi Folks,
    I'm working on my document class and the contructor is running twice, hence it is running almost all of my code twice.  I'm not quite sure why this is the case.  Any help is appreciated.
    I've attached my code below.
    package {
    import flash.display.MovieClip;
    import flash.display.DisplayObject;
    import flash.events.*;
    import flash.geom.*;
    import flash.net.*;
    import flash.utils.getDefinitionByName;
    public class ASIFL048_DND extends MovieClip {
      private var startDragX:Number = new Number();
      private var startDragY:Number = new Number();
      private var xmlPath:String = "../ObjectFiles/xmlIFL0480016.xml";
      private var itemList:Array = new Array();
      private var targetList:Array = new Array();
      private var gameArray:Array = new Array();
      private var myXML:XML = new XML();
      private var myTargetName:String = new String();
      private var XMLLoader:URLLoader = new URLLoader();
      private var XMLRequest:URLRequest = new URLRequest(xmlPath);
      trace("RUNNING ONCE!");
      public function ASIFL048_DND() {
       stage.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);
       stage.addEventListener(MouseEvent.MOUSE_UP, mouseUpHandler);
       XMLLoader.addEventListener(Event.COMPLETE, completeHandler);
       trace("RUNNING TWICE?");
       loadXML();
      private function loadXML():void {
       //var XMLLoader:URLLoader = new URLLoader();
       //var XMLRequest:URLRequest = new URLRequest(xmlPath);
       XMLLoader.load(XMLRequest);
       //XMLLoader.addEventListener(Event.COMPLETE, completeHandler);
      private function completeHandler(e:Event):void {
       myXML = XML(e.target.data);
       var i:int = 0;
       var j:int = 0;
       for each (var item:XML in myXML..equip) {
        itemList[i] = item.@name;
        for each (var target:XML in item..myTarget) {
         targetList[j] = [i,target];
         j++;
        i++;
       //trace(targetList);
       selectDragItems(10);
      private function selectDragItems(gameLength:int):void {
       var randomSeed:Number = new Number();
       var randomItem:Number = new Number();
       for (var k:int = 0; k<gameLength; k++) {
        randomSeed = targetList.length;
        randomItem = Math.floor(Math.random() * targetList.length);
        gameArray = targetList.splice(randomItem, 1);
        trace(gameArray+"\n");
        //display game array
        //trace("CLASS:\t"+itemList[gameArray[k][0][0]]);
             //var ClassReference:Class = getDefinitionByName(itemList[gameArray[k][0]]) as Class;
        //var instance:Object = new ClassReference();
        //addChild(DisplayObject(instance));
      private function mouseDownHandler(e:MouseEvent):void {
       startDragX = e.target.x;
       startDragY = e.target.y;
       trace(startDragX + " " + startDragY);
       e.target.startDrag(true,new Rectangle(e.target.width/2,e.target.height/2, stage.stageWidth-e.target.width, stage.stageHeight-e.target.height));
      private function mouseUpHandler(e:MouseEvent):void {
       stopDrag();
       myTargetName = "fwdLHWindscreen_mc";
       var myTarget:DisplayObject = getChildByName(myTargetName);
       //trace(" TARGET VAR: "+myTarget.name);
       if (e.target.dropTarget != null && e.target.dropTarget.parent == myTarget) {
        trace("correct");
        e.target.x = e.target.dropTarget.parent.x;
        e.target.y = e.target.dropTarget.parent.y;
        e.target.removeEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);
        e.target.removeEventListener(MouseEvent.MOUSE_UP,mouseUpHandler);
       } else {
        trace("incorrect");
        e.target.x = startDragX;
        e.target.y = startDragY;

    My bad. The order of output is:
    RUNNING ONCE!
    RUNNING TWICE?
    The first trace is a static initializer, while the second is in the constructor.

  • Opening JPG from Bridge via ACR in PS causes ACR to run twice.

    Using PSCS3 and Bridge CS3, with both set to prefer ACR when opening JPG files. Sometimes when opening a file from within Bridge with PSCS3, ACR runs twice. The image can be opened in PS and then ACR opens again with another copy of the JPG. Cancelling the ACR window closes it.
    Anyone else get ACR running twice on the one JPG?
    Thanks.
    Stew.

    The most common reason for patch to fail is the absence of folder "AdobePatchFiles" folder or it's content from location "C:\Program Files (x86)\Adobe\Adobe\AdobePatchFiles" and it's counterpart location in Mac.
    If this folder or its contents are missing then the patch cannot be applied , the only way to resolve this is to Reinstall the product and then apply patch again.
    Now there can be two cases :
    1) Was this folder removed manually or some other action caused this removal of folder( May be some script or Defragmentation or anything). In this case please reinstall product and apply patch again.
    2) If the folder and its contents are intact but still patcher failed, then please follow the following steps:
         a) Create ribs3debug file without any extension inside %temp% directory of your system
         b) Run Patcher again
         c) If it fails , send the log files that are generated inside C:\Program Files (x86)\Common Files\Adobe\Installers
    Hope it clears some of the facts around failure. If there are any underlying issues then we all hope to resolve them as soon as we have more information.
    Regards
    Anshum

Maybe you are looking for

  • If I need a full rman restore which backups will it use?

    Hello, I have a database 11.1.0.7 with 8TB. Block change tracking is enabled. At the weekend I take level 0 backup and during the week level 1 cumulative. For some weeks the level 0 backup is failing, so I only have level 1 cumulative backups taken e

  • Doubt   regarding   Oracle Database 10g Release 2 (10.2.0.1.0) installation

    hello my pc has following configurtion 256mb ram 60gb hdd p4 2.4 ghz win xp pro sp2 I want to know if my pc will be able to run " Oracle Database 10g Release 2 (10.2.0.1.0) " standard edition on it. <<http://www.oracle.com/technology/software/product

  • HR ABAP table

    Hi all!!! Actually in transaction PP01, for OBJECT TYPE: Business Event type. I m unable to find out the Transparent table which stores the description. I tried to search in infotypes but failed... Can someone suggest the name of the transparent tabl

  • Preloader Code Help

    I have a preloader on my website that seems to be very temperamental, sometimes it works and sometimes it doesn't. I have posted the script below, please let me know what I can do to fix the main probelm of the load bar freezing at 0%. onClipEvent (e

  • How to make the GL accounts as CO-PA Relevant

    Dear Gurus, Please let me know how to make the GL accounts as CO-PA relevant, we need to book the sale provision Regards VSK