Stage doesn't listen to code

Hi Everyone,
Can anyone help me with this problem I'm having?
I put this code on frame 1 of fist layer, on 2nd layer frame
one, an empty movie clip named main.
The code reads:
loadMovie("main.swf", main);
Stage.scaleMode = "noScale";
Stage.align = "TL";
var stageListener = new Object();
stageListener.onResize = function (){
main._x = (Stage.width - 748.5)/2;
main._y = (Stage.height - 462)/2;
Stage.addListener(stageListener);
But main wouldn't position itself. Basically I want main to
position in the center of the stage, no matter the stage's size.
Help please....:(
Thanks
J

Okay taking a second to hypothesize about the problem, you
which to have an object drawn on stage at a specific point, and
wish the object to stay there when you set the Stage.scaleMode =
"noScale"; function.
Having run into this exact problem today, I can tell you
don't have to make a function for it. scaleMode allows the file to
be resized, but the stage still thinks it's the same high and
width.
To verify trace Stage.width and Stage.height as you resize
it.
Or simply modify your code to read:
main._x = 748.5/2;
main._y = 462/2;
This makes since, because if the value of the stage width and
height changed it would create all sorts of messiness. It saves
flash programmers like us lot's of headaches figuring out how to
position objects in a constantly changing environment.
Though their not exactly clear on that, so we try to do it
anyway.
Never the less hope this helps.

Similar Messages

  • I have one iPhone 8GB. after making upgrade of iTunes and software of iPhone, it's impossible to use the iPhone. There's no service! doesn't acept the code PIN! it only make emergency calls and the image in the phone is to conect to iTunes.What can i do?

    I have one iPhone 8GB. After making un upgrade of iTunes and software of iPhone, it's impossible to use it. There's no service! doesn't acept PIN code! it only makes emergency calls and the image in the iPhone is the sign to connect to iTunes. What can i do to solve it?

    Where are you and where did you get the phone.  This sounds like a classic symptom of someone who bought an iPhone that originated in the U.S. which was then hacked so it would run on a carrier network other than AT&T... Then, when updating the phone, it becare re-locked to AT&T.
    If that's what happened, you now own a paperweight. AT&T will NOT unlock them for any reason.
    If this isn't the case, please clarify where you are, what carrier you have and where you got the phone so we can begin troubleshooting.

  • My Nokia N95 doesn't show the codes like *#0000# a...

    My Nokia N95 doesn't show the codes like *#0000# and *#06# anymore. Actually all the codes , even those for restoring to the factory settings  don't work anymore. Now when i type them in  , the phone only bips once and that's all. They worked before , but i don't know exactly what may have caused this error. Maybe some application i installed on it or what else!? Please help. Thank you. 

    >
    Thanks to john3136 . That�s what i neededHELLOOOOO! Where's john3136's Dukes then????

  • Line Drawing Script on Stage doesn't work in MovieClip?

    I have a little snippet of code that allows the user to create a line with the mouse, and clears the line if they end up touching the hitbox with the mouse, while they're drawing the line. It works fine when it's just thrown onto the main timeline. However, when I try to encapsulate it within a movie clip, it suddenly doesn't work. At all. Are there any suggestions as to why this is happening? Here's the code.
    function(){return A.apply(null,[this].concat($A(arguments)))}
    var drawing:Boolean;
    var my_line:MovieClip = new MovieClip();
    this.addChild(my_line);
    drawing = false;//to start with
    stage.addEventListener(MouseEvent.MOUSE_DOWN, startDrawing);
    stage.addEventListener(MouseEvent.MOUSE_MOVE, draw);
    stage.addEventListener(MouseEvent.MOUSE_UP, stopDrawing);
    function startDrawing(event:MouseEvent):void
    //move to the correct starting position for drawing
    my_line.graphics.lineStyle(3,0xFF0000);
    my_line.graphics.moveTo( mouseX, mouseY);
    if (drawBox.hitTestPoint(mouseX,mouseY,true))
      drawing = true;
    function draw(event:MouseEvent)
    if (drawing)
      my_line.graphics.lineTo(mouseX,mouseY);
      if (oneHitBox.hitTestPoint(mouseX,mouseY,true))
       my_line.graphics.clear();//remove line
    function stopDrawing(event:MouseEvent)
    drawing = false;
    Thanks for any help you can offer!

    Oh! Haha, sorry, brainfart. That is all of the code that I use in that particular frame, where I want the user to be able to draw within the confines of the box. The only other code I use are for the drag and drop boxes, meant to be dropped onto a particular area. Those are working just fine, but if you want to see that code too, then:
    function(){return A.apply(null,[this].concat($A(arguments)))}
    /* Stop at This Frame
    The Flash timeline will stop/pause at the frame where you insert this code.
    Can also be used to stop/pause the timeline of movieclips.
    stop();
    /* Drag and Drop
    Makes the specified symbol instance moveable with drag and drop.
    lunchOff.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag);
    function fl_ClickToDrag(event:MouseEvent):void
    lunchOff.startDrag();
    stage.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop);
    function fl_ReleaseToDrop(event:MouseEvent):void
    lunchOff.stopDrag();
    if (lunchOff.hitTestObject(dropBoxTwo))
      if (offDuty.hitTestObject(dropBoxThree) && onDuty.hitTestObject(dropBoxOne) && lunchOff.hitTestObject(dropBoxTwo))
       gotoAndStop(16);
       stage.focus = aBox;
    else
      lunchOff.x = -548.95;
      lunchOff.y = -306.15;
    /* Drag and Drop
    Makes the specified symbol instance moveable with drag and drop.
    offDuty.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_2);
    function fl_ClickToDrag_2(event:MouseEvent):void
    offDuty.startDrag();
    stage.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop_2);
    function fl_ReleaseToDrop_2(event:MouseEvent):void
    offDuty.stopDrag();
    if (offDuty.hitTestObject(dropBoxThree))
      if (offDuty.hitTestObject(dropBoxThree) && onDuty.hitTestObject(dropBoxOne) && lunchOff.hitTestObject(dropBoxTwo))
       gotoAndStop(16);
       stage.focus = aBox;;
    else
      offDuty.x = -557.0;
      offDuty.y = -155.95;
    /* Drag and Drop
    Makes the specified symbol instance moveable with drag and drop.
    onDuty.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_3);
    function fl_ClickToDrag_3(event:MouseEvent):void
    onDuty.startDrag();
    stage.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop_3);
    function fl_ReleaseToDrop_3(event:MouseEvent):void
    onDuty.stopDrag();
    if (onDuty.hitTestObject(dropBoxOne))
      if (offDuty.hitTestObject(dropBoxThree) && lunchOff.hitTestObject(dropBoxTwo))
       gotoAndStop(16);
       stage.focus = aBox;
    else
      onDuty.x = -539.00;
      onDuty.y = 39.45;

  • My GUI doesn't listen to me.

    I am have difficulty understanding how to debug my gui. could somebody please point out what I should do. I don't get any errors in my eclipse ide console nor any errors, but it doesn't seem to do what i'm expecting it to do.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JTextField;
    public class AL extends Frame implements WindowListener,ActionListener {
         /*Variables*/
         private JFrame frame1 = new JFrame("heyo"); //81 square entries
         private JFrame frame2 = new JFrame("picini"); //Buttons + frame1
         private JButton solve = new JButton("Solve");
         private JButton check = new JButton("Check");
         private JTextField[] entry = new JTextField[81];
         public final static boolean RIGHT_TO_LEFT = false;
         /*Main*/
         public static void main(String[] args) {
              AL myWindow = new AL("test");
              myWindow.setSize(350,100);
              myWindow.setVisible(true);
         /*Constructor*/
         public AL(String bean) {
              // build gui
              super(bean);
              try{
                   if (RIGHT_TO_LEFT){
                          this.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
                    this.setLayout(new GridLayout(2,1));
              addWindowListener(this);
              solve.addActionListener(this);
              check.addActionListener(this);          
              add(solve);
              add(check);
              catch(Exception e){
                   System.out.println("there is a button_gui building error: "+ e.getMessage());
    /*Action Performed*/
         public void actionPerformed(ActionEvent e) {
              if(e.equals(solve)){
                   System.out.println("Solve");
              else if(e.equals(check)){
                   System.out.println("Checking...");
    /*Window Listener*/
         public void windowClosing(WindowEvent e) {
              dispose();
              System.exit(0);
         public void windowOpened(WindowEvent e) {}
         public void windowActivated(WindowEvent e) {}
         public void windowIconified(WindowEvent e) {}
         public void windowDeiconified(WindowEvent e) {}
         public void windowDeactivated(WindowEvent e) {}
         public void windowClosed(WindowEvent e) {}
    }

    Michael pointed out to you a problem in your code, but to be able to pinpoint where the problems are occurring, you need to add code which displays messages when unexpected behavior occurs. For example:
    In the actionPerformed part of your code, there is a simple statement you could have added while debugging that would have pointed you to where you went wrong.
    public void actionPerformed(ActionEvent e) {
              if(e.equals(solve)){
                   System.out.println("Solve");
              else if(e.equals(check)){
                   System.out.println("Checking...");
                    else{
                            System.err.println("Action not handled by the action listener.");
         }

  • Real-Time Application doesn't run; source code works fine

    The short version is I'm programming a cRIO and apparently the RT code isn't running after being deployed and I can't figure out why. This is further complicated that I'm doing all this remotely and I don't have direct access to the unit since I'm 500 miles away. I'm working through a couple of other guys who know some LabVIEW, but neither works at the site so they have to explicitely travel out there every time I have a bright idea.
    I was out there a few weeks ago. During this time I created a simple cRIO code, since I'm new to cRIO, that allowed the user to move a control and change a graph. It worked fine, but I should note it did not have an FPGA component. After that I worked on the real code, which reads some sensors, displays the results on a UI and logs the results. This did have FPGA. I used it in the LabVIEW environment and it worked fine, but I ran out of time before I could complete a release version and deploy the RT as a compiled application. I sent them the release version later, my contact deployed it but got network stream errors when running the UI.
    After hours of looking at network problems and sending over debug versions, I tried creating a log on the RT level so I could see what was going on. The log doesn't even open, even if it's the first command in the code. I pored through the forums and found http://forums.ni.com/t5/LabVIEW/cRIO-Troubleshooting-creation-and-deployment-of-startup/td-p/1956475... which took me in a new direction.
    I had my contact use the RT debug console and when he pulls up the RT front panel, it shows a broken run arrow. He clicks it and nothing happens -- no running, no bug list. If he pulls up the bug list manually, it's empty. Again the RT works fine if you run it through LabVIEW and not as a compiled real-time application. He also noticed that the Open FPGA VI was grayed out on the block diagram. No other icons are.
    So the problem appears to be that the compiled RT application is getting some kind of error but not telling me what it is, and it seems to be related to opening the FPGA. I've recompiled the FPGA and RT. I've had him recompile the RT himself, but not the FPGA because it would take hours. He's downloading everything correctly to the cRIO. The RT is set to run automatically. He's rebooting the cRIO every time he deploys the RT. They have LabVIEW on a computer there but it doesn't have the right drivers to run the code from the LV environment. I'm resisting having them install the dirvers because downloading big files is complicated there due to security restrictions and a lousy network connection at a remote site. Besides that doesn't solve the problem of the RT executable not running the same as the source code, which according to the thread above appears to be a thing.
    The latest thing I'm trying is that I sent him instructions for how to build a source distribution from the project I sent and try deploying that to the cRIO. Even if that works I'm not sure that's an acceptable solution because I assume running the VI rather than the EXE is slower, and they need speed on this project.
    I simply have no idea where to go from here. I probably need to get direct acess to the cRIO and I might be able to convince them to ship it to me so I can figure this out, but I'm not sure where I'd even start other than the standard voodoo debugging of "try stuff at random until something works". I'm open to suggestions if anyone has managed to solve this before.
    Code snippet of the first part of the project is attached, though I'm not sure how much good it will do. I'm really stumped and the client is getting frustrated with how much of the budget is going to fix this.
    Solved!
    Go to Solution.
    Attachments:
    RTMainSnippet.png ‏623 KB

    Have you checked the cRIO error log? Usually I'd access it through the LabVIEW project (right-click on the target, don't remember the exact menu options and I don't have the RT toolkit installed on this machine to check), but it must be stored somewhere on the cRIO as well, although I don't know if it's in a human-readable format.
    Which cRIO are you using? What exactly do you mean by "debug console"? (This may be related to the cRIO - the newer ones have video out, although I don't know if that's what you're referring to.) With a broken run arrow, you won't get an error list unless you're running in the development environment.
    Have you confirmed that the software installed on the cRIO matches the version you're using for development, including patch level? Get someone to connect to the cRIO with Measurement and Automation Explorer, and get a list of the software installed on the cRIO.
    Sounds like the ability to connect with a remote debugger would be helpful here, if you can get the right drivers installed on the machine with LabVIEW that's connected to the cRIO. Make sure all driver versions match what you're using. Any chance you could then do a remote desktop connection from your work site to the remote LabVIEW machine?

  • Timer event doesn't listen to my if else statements how do stop it?

    So I'm building a random generator of just a vector that i imported into flash and everything works just fine, almost. I added a timer to the creation of the vector. I also have some if else statements that are going to govern User Input. I realized that if the UI was initially outside of the parameters i've set it runs fine but once the once the function with the timer starts it never stops regardless of whether or not the UI is in the parameters I set. How do I stop the function when the UI is not what i want it to be?
    Heres my code:
    //initial universal variable declaration
    var kface:Kobbyface;
    var UI:Number;
    var kfacex:Number;
    var kfacey:Number;
    var UIold:Number = 0;
    var timer:Timer = new Timer(200);
    //background rectangle
    graphics.beginFill(0xFFFF00, 1);
    graphics.drawRect(0,65, stage.stageWidth, stage.stageHeight);
    graphics.endFill();
    trace (inputnumber);
    //eventlistener for click
    gobutton.addEventListener(MouseEvent.CLICK, create);
    function create(me:MouseEvent):void {
    UI = Number(inputnumber.text);
    if (isNaN(UI)) {
    errormessages.text = "Kobby only responds to numbers"
    else if (UI > 500) {
    errormessages.text = "You're not ready for that many Kobbys"
    else if (UI < 15) {
    errormessages.text = "Come on you can handle more than that"
    else{
    createfaces();
    //for loop///
    function createfaces ():void {
    ////////timer for face animation///////
    timer.addEventListener(TimerEvent.TIMER, animate);
    timer.start();
    function animate(evt:TimerEvent):void {
    /////keep track of old number/////
    if (UIold != 0) {
    for (var i: int = 1; i<UIold + 1; i++) {
    stage.removeChildAt(1);
        /////assign old number to new number////
    UIold = UI;
    for ( var i:int = 1; i<UI + 1; i++ ) {
    trace( i );
    ////assign values to coordinate varialbes/////
    var kfacex:Number = Math.random() * stage.stageWidth;
    var kfacey:Number = Math.random() * stage.stageHeight + 65;
    //creation of faces///
    kface = new Kobbyface();
    stage.addChild(kface);
    kface.x = kfacex;
    kface.y = kfacey;

    you can apply the stop() method to your timer:
    timer.stop();

  • Mshttpd runs but doesn't listen

    The version info:
    This is effectively a new installation. User accounts and mailstore were migrated from a previous system running 5.2hf1.21.
    iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)
    libimta.so 5.2 Patch 2 (built 19:30:12, Jul 14 2004)
    SunOS mserv1 5.9 Generic_117171-14 sun4u sparc SUNW,Sun-Fire-V440
    Some other config related info:
    running Sun Cluster 3.1 and HAstoragePlus, ie no globally mounted filesystems. Also, I wanted the ability to bounce the ldap server independant of iMS, so the ldap resource is NOT listed as a dependancy of the ha-ims resource. (yeah, I know it's not what the "book" says. :-))
    I'm running IMAPS and HTTPS using a cert signed by our own CA. This CA has signed certs for quite a few other products, including DS5p2 and they all work fine.
    Now here's the problem. The mshttpd and imap daemons don't maintain the SSL listener. I have HTTPS running on port 444 (because its one more and a web server runs on the other half of the cluster). The imaps runs on the default, 993. The imap and http logs show no indication of it failing to start nor any other problem. I should add that it appears the SSL listener doesn't start, but the non-ssl listener works fine.
    The odd part is that sometimes the SSL enabled daemons will start-up and run properly. We only have about 600 users. They currently use imap and I want to get them on imaps and/or https. Any ideas?
    One more question. Is it possible to truss these processes? Currently, I can't because the HA agent effectively puts a trace on the process and truss comes back with an error. Any workaround to this?
    Thanks,
    Roger S.
    Here's my configutil with all the ssl settings:
    encryption.nsssl3 = on
    encryption.nsssl3sessiontimeout = 0
    encryption.nssslclientauth = 0
    encryption.nssslsessiontimeout = 0
    encryption.rsa.nssslactivation = on
    encryption.rsa.nssslpersonalityssl = Server-Cert
    encryption.rsa.nsssltoken = "internal (software)"
    local.ldapusessl = False
    service.http.enablesslport = yes
    service.http.sslcachesize = 0
    service.http.sslport = 444
    service.http.sslusessl = yes
    service.imap.enablesslport = yes
    service.imap.sslcachesize = 0
    service.imap.sslport = 993
    service.imap.sslusessl = yes
    http settings:
    service.http.allowadminproxy = no
    service.http.allowanonymouslogin = no
    service.http.enable = true
    service.http.enablesslport = yes
    service.http.fullfromheader = no
    service.http.idletimeout = 20
    service.http.ipsecurity = yes
    service.http.maxmessagesize = 104857600
    service.http.maxpostsize = 5242880
    service.http.maxsessions = 1000
    service.http.maxthreads = 250
    service.http.numprocesses = 1
    service.http.plaintextmincipher = 40
    service.http.port = 81
    service.http.resourcetimeout = 900
    service.http.sessiontimeout = 18000
    service.http.smtphost = apsmail.aps.anl.gov
    service.http.smtpport = 25
    service.http.spooldir = /global/ims/ims52/msg-atlas/http
    service.http.sslcachesize = 0
    service.http.sslport = 444
    service.http.sslusessl = yes
    imap settings:
    service.imap.allowanonymouslogin = no
    service.imap.banner = "%h %p service (%P %V)"
    service.imap.enable = yes
    service.imap.enablesslport = yes
    service.imap.idletimeout = 30
    service.imap.maxsessions = 1000
    service.imap.maxthreads = 250
    service.imap.numprocesses = 1
    service.imap.plaintextmincipher = 0
    service.imap.port = 143
    service.imap.sslcachesize = 0
    service.imap.sslport = 993
    service.imap.sslusessl = yes

    I restarted the server, most recently, at 1:30pm Eastern.
    I've configured service.http.sslport = 843 since 443 is already in use by other service.
    A telnet to port 843 results in:
    telnet: Unable to connect to remote host: Connection refused
    This has been a problem for two days. I've just started to configure the messaging server to use SSL.
    iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)
    libimta.so 5.2 Patch 2 (built 19:30:12, Jul 14 2004)
    SunOS mailhost1 5.8 Generic_117350-16 sun4u sparc SUNW,Ultra-4
    IMAP and POP are currently working, howerver, not over SSL. netstat -rn does not show listener IMAPS port 993 or HTTPS port 843
    Messages are being delivered to the maillstore.
    dean

  • Apache doesn't listen on anything

    Hello,
    Yesterday I upgraded my Arch, rebooted and found out that my apache is striking.
    Except the update I did not change anything.
    The daemon is started:
    7952 ? S 0:00 /usr/sbin/httpd -k start
    Telnet says:
    Unable to connect to remote host: Connection refused
    Netstat doesn't list port 80:
    Proto Recv-Q Send-Q Local Address Foreign Address State
    tcp 0 0 localhost:ipp *:* LISTEN
    udp 0 0 *:bootpc *:*
    udp 0 0 *:ipp *:*
    Weird is, that it's not possible to stop the daemon (httpd -k stop):
    httpd (no pid file) not running
    But ps tells, that httpd is running
    I also tried "Listen 8080" but that didn't work too.
    What may be the problem?

    After many debugging I've got the problem.
    Apache freezed after a first request, but it didn't throw an error to /var/log/httpd/error_log
    After a few hours of debugging I found a file called /var/log/php/error
    Before, I didn't hit on viewing that file, which says:
    [15-Jan-2009 20:18:51] PHP Fatal error: Unable to start eAccelerator module in Unknown on line 0
    A friend of mine recently had exactly the same problem. The eAccelerator was built with another PHP version and wouldn't work after a PHP update anymore.
    I deactivated eAccelerator and now everything works fine.

  • PRT file doesn't work (printer codes) (urgent)

    Hi,
    I've got a small problem using a custom prt file for printing reports on a Epson TM-T88 printer.
    I'm trying to use the printer codes which are in the programming manual of the Epson printer for cutting the paper.
    But it doesn't work.
    This is the prt-file:
    printer "kassabon"
    before report esc "@"
    after report dec (27) dec (86) 1 dec (27) dec (105)
    Who can solve this problem?
    It's very urgent.
    Thanks in advance!
    null

    Nobody?

  • Skype to Go doesn't have area code 415

    Hi I want to use Skype to Go from my landline which has area code (415), but this area code is not available in the list of Skype to Go area codes. I have been using Skype to Go for years under a different area code but have recently relocated. If Skype cannot provide me with a (415) number it will render Skype useless to me, and I would need to discontinue my subscription and start using Google Voice. Hence please help me stay with Skype by providing me with a Skype to Go number with (415) area code. Thank you.

    The 415 area code is very popular and our numbers providers in the US don't have these in inventory anymore. Instead, we have numbers starting with 650. If 650 numbers are covered by your landline operator then you can of course also use those (FYI if you have free national calling then it doesn't matter where in the US you get your Skype To Go number).

  • Media player doesn't work right , code# cood1197

    Why won't any of my music play on windows media player and rip any music to my ipod  recovered august since then player  doesn't work right now. product bv545aa#aba  serial# 4ce1031lws ,model # p6754y & getting code # cood1197 & are there any free updates for player ?  thank you.

    I haven't had a problem with either.  I have switched to using MixZing as my player because it also allows me to work with the contents of my SD card and has a nice equalizer function that really works well with a quality pair of headphones or when plugged into my home stereo.  It's available on the Marketplace.
    I do know that with Youtube, I get much less buffering if I pull videos through the WiFi function when attached to my home network.

  • HP Pavilion DV7 1120eo doesn't boot (Error Code 1 / CPU)

    Hi,
    I have a DV7 that doesn't want to boot.
    When I try to boot it up, the screen just stays black and the caps lock indicator blinks one time between each "pause", which should be an error code for broken CPU(?!).
    I asked the HP Support team on Twitter how reliable the error codes are, and according to them they should be reliable.
    So I repleaced the CPU with another one, but still the error code shows when I try to boot.
    I'm just wondering if you may know what could be wrong? Could the CPU socket itself be broken?
    I found a long hair laying in between the CPU and CPU socket, but I reckon that it can't be the problem, or else something would've gone wrong like 3 years ago - since it must have been there since the computer was manufactured.
    Anyway, I hope I can get some clarity or advice on things to try out.
    Best Regards
    Alexander

    Baking in the oven can work but it is a crude, temporary fix. Unless you have access to high tech diagnostic and repair tools, a bad motherboard is a bad motherboard and is a "replace only" item. There are services on the internet where shops with the tools will fix your motherboard and the cost is very reasonable if you can remove the motherboard yourself and just ship that, instead of the whole computer. We are talking in the range of $60US. Even if you have to send the board to the US, the cost is very competitive with a replacement board.  Here is a replacement board on eBay that ships worldwide from China:
    http://www.ebay.com/itm/HP-Pavilion-DV6-DV6-1000-D​V7-DV7-1000-Series-laptop-AMD-Motherboard-509404-0​...
    This repair service would be $108 with shipping:
    http://www.ebay.com/itm/Motherboard-Repair-Service​s-HP-Pavilion-DV7-1000-486542-001-506124-001-/3008​...

  • I have downloaded the Photoshop trial in CC when it gets to the updating stage it fails with error code 49

    It told me to retry or contact support - I have retried several times & it keeps coming back to error code (49)

    Generally, this error is caused by something running on the computer which may be locking files that are trying to be updated. First, try simply restarting the computer to close running applications and unlock all files. If that does not allow the update to complete, try disabling all applications which run in the background. Disable startup items, services | Windows or Start in Safe Boot mode | Mac OS X

  • Creative Cloud Desktop App Update 1.7.0.413 doesn't install, error code 89

    I am running CS6 on Windows 7 x64. The Creative Cloud updater is insisting that I run it's update to version 1.7.0.413, but it fails each time. I had a look at the file ...Temp\AdobeDownload\LBS.log, and found the message "ACC installation failed with status: 89" (full section of the log is below). I also had a look at Troubleshoot install issues with log files | CC but did not see anything there. The updater gives me only the two choices "Install Now" or "Quit", so I am dead in the water.
    Any thoughts?
    Thanks, Bruce
    07/13/14 12:45:46:360 | [INFO] |  | ACC | LBS | ETS |  |  | 3376 | Event Guid generated is: '8a1e5a0a-be2c-4461-a5a9-6542c7c89652'
    07/13/14 12:45:46:360 | [ERROR] |  | ACC | LBS | InstallThreadProc |  |  | 3376 | ACC installation failed with status: 89
    07/13/14 12:45:46:361 | [ERROR] |  | ACC | LBS | IPCWrapper |  |  | 3376 | Error sending IPC packet to ACC: -4
    07/13/14 12:45:46:366 | [INFO] |  | ACC | LBS | ETS |  |  | 11576 | Event with guid '8a1e5a0a-be2c-4461-a5a9-6542c7c89652' is being sent
    07/13/14 12:45:46:368 | [INFO] |  | ACC | LBS | ETS |  |  | 11484 | Waiting for the async thread to get the task completed
    07/13/14 12:45:46:371 | [INFO] |  | ACC | LBS | ETS |  | HTTPConnector | 11576 | GetIEProxyInfo - No default proxy present on the user machine
    07/13/14 12:45:46:494 | [INFO] |  | ACC | LBS | ETS |  | HTTPConnector | 11088 | HTTP Request Status code 200.
    07/13/14 12:45:46:494 | [INFO] |  | ACC | LBS | ETS |  | HTTPConnector | 11576 | The http request returned HTTP_Status:0 HttpCommunicator error:0
    07/13/14 12:45:46:494 | [INFO] |  | ACC | LBS | ETS |  |  | 11576 | Async thread is completed. Now exiting from function.
    07/13/14 12:45:46:494 | [INFO] |  | ACC | LBS | ApplicationFacade |  |  | 11484 | ACC installation end with exit code: 89
    07/13/14 12:45:46:494 | [INFO] |  | ACC | LBS | ApplicationFacade |  |  | 11484 | ****************Closing LBS workflow*******************
    07/13/14 12:45:46:502 | [INFO] |  | ACC | LBS | LBSUtils |  |  | 8172 | Elevated LBS exited with return value: 89
    07/13/14 12:45:46:502 | [INFO] |  | ACC | LBS | ApplicationFacade |  |  | 8172 | ****************Closing LBS workflow*******************

    This is actually the full text of the LBS workflow (the beginning was omitted from the original post).
    07/13/14 12:42:40:107 | [INFO] |  | ACC | LBS | ApplicationFacade |  |  | 11484 | ****************Starting LBS workflow*******************
    07/13/14 12:42:40:117 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 11484 | LBS launched in SELF-UPDATE mode
    07/13/14 12:42:40:117 | [INFO] |  | ACC | LBS | IPCWrapper |  |  | 11484 | Initializing Communication Channel with ACC with pipename: {F6EB1303-80E4-4C66-A7C5-00596AB0F809}
    07/13/14 12:42:40:342 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 11484 | ACCC System requirements check passed
    07/13/14 12:42:42:002 | [INFO] |  | ACC | LBS | ProductInfo |  |  | 11484 | Product Sap Code not specified in the product information file
    07/13/14 12:42:42:002 | [INFO] |  | ACC | LBS | ProductInfo |  |  | 11484 | Applet Version not specified in the product information file
    07/13/14 12:42:42:002 | [INFO] |  | ACC | LBS | ProductInfo |  |  | 11484 | Applet ID not specified in the product information file
    07/13/14 12:42:42:002 | [INFO] |  | ACC | LBS | ProductInfo |  |  | 11484 | Product locale not specified in the product information file
    07/13/14 12:42:42:002 | [INFO] |  | ACC | LBS | ProductInfo |  |  | 11484 | Product name not specified in the product information file
    07/13/14 12:42:42:003 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 11484 | Bootstrap LBS is successful
    07/13/14 12:42:42:013 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 11484 | Bootstrapper Lock acquired
    07/13/14 12:42:42:023 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 11484 | LBS Lock acquired
    07/13/14 12:42:45:466 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 11484 | PDM completed with error in downloading PIM with error 0
    07/13/14 12:42:45:568 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 11484 | Successfully downloaded pim at path C:\Users\Bruce\AppData\Local\Temp\{B61FBBED-59CE-46F5-9434-F97602EF8723}\CCLBS\PDIM\Adobe PIM.dll
    07/13/14 12:42:45:594 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 11484 | pim validation successful
    07/13/14 12:42:45:654 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 11484 | PIM loading is successful
    07/13/14 12:42:45:664 | [INFO] |  | ACC | LBS | InstallThreadProc |  |  | 3376 | Installing latest Adobe Creative Cloud
    07/13/14 12:42:45:722 | [INFO] |  | ACC | LBS | ETS |  |  | 3376 | Event Guid generated is: 'b1395ac2-b690-4c0c-b413-d463c2151798'
    07/13/14 12:42:45:731 | [INFO] |  | ACC | LBS | ETS |  |  | 11576 | Event with guid 'b1395ac2-b690-4c0c-b413-d463c2151798' is being sent
    07/13/14 12:42:45:735 | [INFO] |  | ACC | LBS | ETS |  | HTTPConnector | 11576 | GetIEProxyInfo - No default proxy present on the user machine
    07/13/14 12:42:45:836 | [INFO] |  | ACC | LBS | ETS |  | HTTPConnector | 10296 | HTTP Request Status code 200.
    07/13/14 12:42:45:836 | [INFO] |  | ACC | LBS | ETS |  | HTTPConnector | 11576 | The http request returned HTTP_Status:0 HttpCommunicator error:0
    07/13/14 12:43:43:832 | [INFO] |  | ACC | LBS | ETS |  |  | 3376 | Event Guid generated is: '5ea7a9c4-bc9a-4636-b173-fab8bc23bf35'
    07/13/14 12:43:43:839 | [INFO] |  | ACC | LBS | ETS |  |  | 11576 | Event with guid '5ea7a9c4-bc9a-4636-b173-fab8bc23bf35' is being sent
    07/13/14 12:43:43:844 | [INFO] |  | ACC | LBS | ETS |  | HTTPConnector | 11576 | GetIEProxyInfo - No default proxy present on the user machine
    07/13/14 12:43:43:889 | [INFO] |  | ACC | LBS | ETS |  |  | 3376 | Event Guid generated is: '24719e9d-510a-4795-a4de-77eee3b02aca'
    07/13/14 12:43:43:944 | [INFO] |  | ACC | LBS | ETS |  | HTTPConnector | 10296 | HTTP Request Status code 200.
    07/13/14 12:43:43:945 | [INFO] |  | ACC | LBS | ETS |  | HTTPConnector | 11576 | The http request returned HTTP_Status:0 HttpCommunicator error:0
    07/13/14 12:43:43:945 | [INFO] |  | ACC | LBS | ETS |  |  | 11576 | Event with guid '24719e9d-510a-4795-a4de-77eee3b02aca' is being sent
    07/13/14 12:43:43:951 | [INFO] |  | ACC | LBS | ETS |  | HTTPConnector | 11576 | GetIEProxyInfo - No default proxy present on the user machine
    07/13/14 12:43:44:045 | [INFO] |  | ACC | LBS | ETS |  | HTTPConnector | 10296 | HTTP Request Status code 200.
    07/13/14 12:43:44:045 | [INFO] |  | ACC | LBS | ETS |  | HTTPConnector | 11576 | The http request returned HTTP_Status:0 HttpCommunicator error:0
    07/13/14 12:43:46:123 | [INFO] |  | ACC | LBS | IPCWrapper |  |  | 3376 | Sent IPC packet to quit ACC with data: <message><name>QUIT</name></message>
    07/13/14 12:45:46:360 | [INFO] |  | ACC | LBS | ETS |  |  | 3376 | Event Guid generated is: '8a1e5a0a-be2c-4461-a5a9-6542c7c89652'
    07/13/14 12:45:46:360 | [ERROR] |  | ACC | LBS | InstallThreadProc |  |  | 3376 | ACC installation failed with status: 89
    07/13/14 12:45:46:361 | [ERROR] |  | ACC | LBS | IPCWrapper |  |  | 3376 | Error sending IPC packet to ACC: -4
    07/13/14 12:45:46:366 | [INFO] |  | ACC | LBS | ETS |  |  | 11576 | Event with guid '8a1e5a0a-be2c-4461-a5a9-6542c7c89652' is being sent
    07/13/14 12:45:46:368 | [INFO] |  | ACC | LBS | ETS |  |  | 11484 | Waiting for the async thread to get the task completed
    07/13/14 12:45:46:371 | [INFO] |  | ACC | LBS | ETS |  | HTTPConnector | 11576 | GetIEProxyInfo - No default proxy present on the user machine
    07/13/14 12:45:46:494 | [INFO] |  | ACC | LBS | ETS |  | HTTPConnector | 11088 | HTTP Request Status code 200.
    07/13/14 12:45:46:494 | [INFO] |  | ACC | LBS | ETS |  | HTTPConnector | 11576 | The http request returned HTTP_Status:0 HttpCommunicator error:0
    07/13/14 12:45:46:494 | [INFO] |  | ACC | LBS | ETS |  |  | 11576 | Async thread is completed. Now exiting from function.
    07/13/14 12:45:46:494 | [INFO] |  | ACC | LBS | ApplicationFacade |  |  | 11484 | ACC installation end with exit code: 89
    07/13/14 12:45:46:494 | [INFO] |  | ACC | LBS | ApplicationFacade |  |  | 11484 | ****************Closing LBS workflow*******************
    07/13/14 12:45:46:502 | [INFO] |  | ACC | LBS | LBSUtils |  |  | 8172 | Elevated LBS exited with return value: 89
    07/13/14 12:45:46:502 | [INFO] |  | ACC | LBS | ApplicationFacade |  |  | 8172 | ****************Closing LBS workflow*******************

Maybe you are looking for

  • How do I only allow logged in users to see Wiki?

    I have set up a server and the website, but it only works if you forward the urls, in the DNS machine records, to the public ip address of my of my router. I only want to allow logged in users to be able to click on a wiki homepage link to see it. Al

  • Passing "Value Objects" from one JSP to next  (2)

              Someone posted a response from BEA which has since disappeared, it was no different           from what I was doing and it I still can't get it to store the information in           the Value Object.           I get values (true/false) from

  • Local Session Bean calling another local Session Bean in EJB 3.0

    Hi, In EJB 3.0, I am trying to do JNDI lookup of a local sesion bean from another session bean's helper class. I am not using @EJB injection mechanism here, as call to the local session bean is made in a helper class. Helper classes do not support re

  • Captured footage in FCE HD

    hi everyone How do i find the files i captured through FCE HD? is there a way to save each project's captured footage to a different place? In imovie it will save it all in one file (and you open it by right click-show packaged contents). does FCE HD

  • Stuck in the stone age and need some advice

    while ($true) $A = (Get-Date -DisplayHint time) $log = "c:\Alert-2.csv" Myscript | wc > c:Alert.log Get-Content -path c:Alert.log | % { $_.Substring(1,7).Trim( ); } > c:Alert-1.log Get-Content -path c:Alert-1.log >> c:Alert-2.csv Add-Content >> ($(c: