Gallery of images - ArgumentError: Error #2025

Hi guys,.

I'm new to flash cs3 and action script 3.0. I did 3 galleries of images, all work fine by themselves, however I recently tried to link them to a central flash file and I get the error:

ArgumentError: Error #2025: the supplied DisplayObject must be a child of the caller.
at flash.display::DisplayObjectContainer/removeChild()
at home_fla::MainTimeline/gotoHome()

I enclose the code for the central/home flash below file.

Basically, all I'm trying to achieve is to add the client_images.swf like a child when the customer images button is clicked and then listen to a click on the button home client_images and remove the child. This works if I click on the home button immediately. If I click on the home button with in 3 seconds, I get the error.

I had a good look for a solution to this problem and did not have much luck. Any help would be greatly appreciated. I can send the .fla if you need more information.

See you soon,.
Paul.

you are repeatedly executing the code in Image1 House and who is initially two instances of clientsLoader (among others) to exist. When you try to delete the most recently created one, it is not added to the display list, so it cannot be deleted.

to remedy this, put a stop() in frame 1 of the home.fla.

Tags: Adobe Animate

Similar Questions

  • ArgumentError: Error #2025:

    Hi, I created a game called Piggy Attack.

    I am trying to remove some video clips off the stage.

    I also tried adding them to the stage using as3, but it is not successful.

    They all upward with the error code:

    ****************************************************************************************** *************

    ArgumentError: Error #2025: the supplied DisplayObject must be a child of the caller.
    at flash.display::DisplayObjectContainer/removeChild()
    at Piggy_Attack_fla::MainTimeline/fl_st() [Piggy_Attack_fla. MainTimeline::frame3:67]

    ****************************************************************************************** *************

    Here's the code by removing...

    If (p4.x < 90)
    {
    Speed = 0;
    Speeda = 0;
    speed3 = 0;
    SPEED4 = 0;
    mySound.stop ();
    removeChild (p1);
    removeChild (p2);
    removeChild (p3);
    removeChild (p4);
    gotoAndStop (4);

    If anyone knows anything please please answer.

    No, just that if you are using an ENTER_FRAME listener, you need to delete under this code, you have demonstrated to stop his execution.  So, if you have a line of code somewhere that assigns this listener, similar to something like...

    "SomeObject". addEventListener (Event.ENTER_FRAME, someFunction);

    Then in the code you showed that you must include a line to remove it while it does not continue to try to remove the abducted children...

    "SomeObject". removeEventListener (Event.ENTER_FRAME, someFunction);

  • ArgumentError: Error #2025 - I can't removeChild?

    function urunlergelsin (e:MouseEvent): void {}
    var urunlermenum:urunlermenu = new urunlermenu();
    bg.solurunmenusu.addChild (urunlermenum); / / Added a new
    var geridonbuton:geridon = new geridon();
    BG.geridonus_mc. AddChild (geridonbuton);
    BG.geridonus_mc.addEventListener (MouseEvent.MOUSE_DOWN, geridon_f);
    }

    function geridon_f(e:MouseEvent):void {}
    bg.urunbtn.removeEventListener (MouseEvent.MOUSE_DOWN, urunlergelsin);
    BG.geridonus_mc. RemoveEventListener (MouseEvent.MOUSE_DOWN, geridon_f);
    var urunlermenum:urunlermenu = new urunlermenu();

    bg.solurunmenusu.removeChild (urunlermenum); / / But when I try to delete ro it does not work
    }

    Hello

    When I try to removeChild I get this error how can I solve this problem?

    ArgumentError: Error #2025: the supplied DisplayObject must be a child of the caller.

    at flash.display::DisplayObjectContainer/removeChild()
    at avas_fla::MainTimeline/geridon_f()

    Your problem likely to be is to declare the object inside a function.  It will be only worn within this function when you do this.  I see where you create a new instance of the object in the function where I guess you are trying to remove the first class... the second is the only one seen at this point here, and it has not been added.  Try the following:

    var urunlermenum:urunlermenu; Declare it outside any function

    function urunlergelsin (e:MouseEvent): void {}
    urunlermenum = new urunlermenu();
    bg.solurunmenusu.addChild (urunlermenum); / / Added a new
    var geridonbuton:geridon = new geridon();
    BG.geridonus_mc. AddChild (geridonbuton);
    BG.geridonus_mc.addEventListener (MouseEvent.MOUSE_DOWN, geridon_f);
    }

    function geridon_f(e:MouseEvent):void {}
    bg.urunbtn.removeEventListener (MouseEvent.MOUSE_DOWN, urunlergelsin);
    BG.geridonus_mc. RemoveEventListener (MouseEvent.MOUSE_DOWN, geridon_f);

    var urunlermenum:urunlermenu = new urunlermenu();  remove this
    bg.solurunmenusu.removeChild (urunlermenum);

    }

  • ArgumentError: Error #2025: the supplied DisplayObject must be a child of the appellant

    I get this error and I think I understand, but I look at my code and the enemy doesn't seem to be on the stage. The error is on the last line of the Enemy.as. It cannot remove the enemy display object as it seems that the scene is not like a child.

    Main.As (instantiated enemy: enemy)

    Enemy.As (contains the problem code) it is basically saying that the scene is not the enemy of display object.

    I'll post the parts where the enemy is mentioned.

    Main.As

    private var enemy: enemy = new enemy (Stadium, Heroes);

    ...

    for (var i: int = 0; i < 5; i ++)

    {

    enemy = new enemy (Stadium, Heroes);

    Enemy.x = 100 + offsetEnemy;

    enemyVector [i] = enemy; populate the vector with enemies.

    addChild (enemy);

    enemy.cacheAsBitmap = true;

    }

    Enemy.As

    package

    {

    import flash.display.MovieClip;

    import flash.display.Stage;

    import flash.events.Event;

    import flash.display.Stage;

    SerializableAttribute public class enemy extends MovieClip

    {

    private var stageRef:Stage;

    private var vy:Number = 1; Speed y

    private var ay: Number =. 1; acceleration of y

    private var target: Hero;

    public void enemy (stageRef:Stage, target: Hero): void

    {

    this.stageRef = stageRef;

    This.target = target;

    x = Math.Random () * stageRef.stageWidth;

    y =-5;

    addEventListener (Event.ENTER_FRAME, loop, false, 0, true);

    }

    private void loop(e:Event): void

    {

    Vy += ay;

    y += vy;

    If (y > stageRef.stageHeight)

    removeSelf();

    }

    private void removeSelf(): void {}

    removeEventListener (Event.ENTER_FRAME, loop);

    If (stageRef.contains (this))

    stageRef.removeChild (this);

    }

    }

    }

    If I add the enemy in the main class, while I would like to remove the enemy in the main class.

    If you want the enemy to refer to the scene, and then use an ADDED_TO_STAGE event listener in the instantiation function and have sound handler to deal with anything whatsoever from the scene for this instance of treatment.

    Do not use the same name for different instances of variables.  You're not going anywhere the assignment of a variable to itself ("this" is the most often useless in AS3)...

    this.stageRef = stageRef;

    This.target = target;

  • ArgumentError: Error #2025: the supplied DisplayObject must be a child of the caller.

    I have a button that creates mc what mouse downwards and remove it when the mouse upwards.

    can someone tell me why I get this error and how to fix it.

    the error only appears when I repeat the mouse down.

    Thank you

    import flash.events.Event;

    brown.addEventListener (MouseEvent.MOUSE_DOWN, GB)

    function createCircle (xx:Number, yy:Number, d: Number, color: number live: Boolean = true)

    {

    brown.addEventListener (MouseEvent.MOUSE_UP, goo)

    var mc:MovieClip = new MovieClip

    mc.addEventListener (Event.ENTER_FRAME, kav);

    mc.addEventListener (MouseEvent.MOUSE_UP, goo);

    MC.visible = live;

    mc.buttonMode = true;

    addChild (mc);

    mc.graphics.beginFill (color);

    mc.graphics.drawCircle (xx, yy, d);

    function kav(e:Event) {}

    MC.y-= 0.2

    }

    function goo (MouseEvent) {}

    removeChild (mc)

    }

    }

    function GB (MouseEvent) {}

    createCircle (250,200,Math.random () * 40 + 10, Math.random () * 0xFFFFFF)

    }

    When you create an object, there is, and by using addChild it simply brings in the display list.  Using removeChild removes it from the display list, but it's not the object disappear... it still exists, you just can't see. So the next time you make one event MOUSE_UP, you try to remove a child who has already been deleted.

    When you work with listeners and dynamic objects, you should remove listeners when you delete objects.

    Another thing, you shouldn't nest named within the functiions functions.

  • error #2025: addChaild and removeChild

    Hi all

    I have the app, but I had a problem

    ArgumentError: Error # 2025: the supplied DisplayObject must be a child of the caller.

    at flash.display: DisplayObjectContainer / removeChild)

    to xxxxx_fla: MainTimeline / hitPoint)

    my code

    import flash.events.Event;

    import flash.events.MouseEvent;

    var pencilta:Shape = new Shape();

    var activeColor:uint = 0 x 000000;

    var aaa: a = new a();

    AAA.x = 0;

    AAA.y = 0;

    addChild (aaa);

    var bbb:c1 = new c1();

    BBB.x = 308;

    BBB.y = 108;

    addChild (bbb);

    var ccc:c2 = new c2();

    CCC.x = 265;

    CCC.y = 175;

    addChild (ccc);

    var ddd:c2 = new c2();

    DDD.x = 235;

    DDD.y = 260;

    var eee: c2 = new c2();

    EEE.x = 200;

    EEE.y = 355;

    bbb.addEventListener (MouseEvent.MOUSE_DOWN, hta1drag);

    bbb.addEventListener (MouseEvent.MOUSE_UP, hta1drop);

    bbb.addEventListener (Event.ENTER_FRAME, hitPoint);

    function drawingta()

    {

    addChild (pencilta);

    pencilta.graphics.lineStyle (10, activeColor);

    }

    function drawPencilta(e:MouseEvent):void

    {

    pencilta.graphics.lineTo (bbb.x, bbb.y);

    e.updateAfterEvent ();

    }

    function hta1drag(e:MouseEvent):void

    {

    e.target.startDrag ();

    pencilta.graphics.moveTo (bbb.x, bbb.y);

    stage.addEventListener (MouseEvent.MOUSE_MOVE, drawPencilta);

    drawingta();

    }

    function hta1drop(e:MouseEvent):void

    {

    stopDrag();

    stage.removeEventListener (MouseEvent.MOUSE_MOVE, drawPencilta);

    }

    function hitPoint(e:Event)

    {

    If (bbb.hitTestPoint (ccc.x, ccc.y, true))

    {

    removeChild (ccc);

    addChild (ddd);

    }

    ElseIf (bbb.hitTestPoint (ddd.x, ddd.y, true))

    {

    removeChild (ddd);

    addChild (eee);

    }

    on the other

    {

    trace ("Benoit lah");

    }

    }

    Thank you

    use:

    import flash.events.Event;

    import flash.events.MouseEvent;

    var pencilta:Shape = new Shape();

    var activeColor:uint = 0 x 000000;

    var aaa: a = new a();

    AAA.x = 0;

    AAA.y = 0;

    addChild (aaa);

    var bbb:c1 = new c1();

    BBB.x = 308;

    BBB.y = 108;

    addChild (bbb);

    var ccc:c2 = new c2();

    CCC.x = 265;

    CCC.y = 175;

    addChild (ccc);

    var ddd:c2 = new c2();

    DDD.x = 235;

    DDD.y = 260;

    var eee: c2 = new c2();

    EEE.x = 200;

    EEE.y = 355;

    bbb.addEventListener (MouseEvent.MOUSE_DOWN, hta1drag);

    bbb.addEventListener (MouseEvent.MOUSE_UP, hta1drop);

    bbb.addEventListener (Event.ENTER_FRAME, hitPoint);

    function drawingta()

    {

    addChild (pencilta);

    pencilta.graphics.lineStyle (10, activeColor);

    }

    function drawPencilta(e:MouseEvent):void

    {

    pencilta.graphics.lineTo (bbb.x, bbb.y);

    e.updateAfterEvent ();

    }

    function hta1drag(e:MouseEvent):void

    {

    e.target.startDrag ();

    pencilta.graphics.moveTo (bbb.x, bbb.y);

    stage.addEventListener (MouseEvent.MOUSE_MOVE, drawPencilta);

    drawingta();

    }

    function hta1drop(e:MouseEvent):void

    {

    stopDrag();

    stage.removeEventListener (MouseEvent.MOUSE_MOVE, drawPencilta);

    }

    function hitPoint(e:Event)

    {

    If (bbb.hitTestPoint (ccc.x, ccc.y, true))

    {

    {if (CCC.stage)}

    ccc.parent.removeChild (ccc);

    CCC = null;?

    }

    addChild (ddd);

    }

    ElseIf (bbb.hitTestPoint (ddd.x, ddd.y, true))

    {

    {if (DDD.stage)}

    ddd.parent.removeChild (ddd);

    DDD = null;?

    }

    addChild (eee);

    }

    on the other

    {

    trace ("Benoit lah");

    }

    }

    Thank you

  • Gallery of images or the Lightbox that works for DW CS6?

    Help! I need a gallery of images or the lightbox that works! I tried the Lightbox Gallery in Widgets and all this works for the most part, do not show the nav buttons and I put the files in each directory (path) as possible. Does anyone have a solution for this - I read the forums for hours about it. OR is there something that is easy and quick and works? And if all goes well free?

    Thank you very much!

    The first thing I noticed is that you're missing your departuretag

    After repairing this error, run your page through the validator here: http://validator.w3.org/ and clear to top all others. HTML errors are one of the biggest culprits in bad/bad display problems.

    In addition, please download the page to a location to test on your website so that we can see the code in action in a real browser, it's the only real way to tell you what goes wrong in about half of cases of something like what is happening. Once the problem has been resolved, you can delete the directory on your server.

  • ArgumentError: Error #1063

    Well, it seems that I have this error in my game I'm creating (this is my first).

    The total error is:

    ArgumentError: Error #1063: Argument count mismatch on Bumper(). Expected 2, got 0.
    

    Of this show up when I enter the 3 frame (frame 1 is beginning, frame 2 was level select, frame 3 is a game).

    My entire code for image 3 is:

    import flash.events.MouseEvent;
    
    
    stop();
    var leftPressed:Boolean = false;
    var rightPressed:Boolean = false;
    var upPressed:Boolean = false;
    var downPressed:Boolean = false;
    
    
    var leftBumping:Boolean = false;
    var rightBumping:Boolean = false;
    var upBumping:Boolean = false;
    var downBumping:Boolean = false;
    
    
    var leftBumpPoint:Point = new Point(-30, -55);
    var rightBumpPoint:Point = new Point(30, -55);
    var upBumpPoint:Point = new Point(0, -120);
    var downBumpPoint:Point = new Point(0, 0);
    
    
    var scrollX:Number = 0;
    var scrollY:Number = 500;
    
    
    var xSpeed:Number = 0;
    var ySpeed:Number = 0;
    
    
    var speedConstant:Number = 4;
    var frictionConstant:Number = 0.9;
    var gravityConstant:Number = 1.8;
    var jumpConstant:Number = -35;
    var maxSpeedConstant:Number = 18;
    
    
    var doubleJumpReady:Boolean = false;
    var upReleasedInAir:Boolean = false;
    
    
    var keyCollected:Boolean = false;
    var doorOpen:Boolean = false;
    
    
    var currentLevel:int = 1;
    var pScore:int = 0;
    var lives:int = 10;
    var animationState:String = "idle";
    
    
    var bulletList:Array = new Array();
    var enemyList:Array = new Array();
    var bumperList:Array = new Array();
    
    
    stage.addEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler);
    stage.addEventListener(KeyboardEvent.KEY_UP, keyUpHandler);
    stage.addEventListener(Event.ENTER_FRAME, loop);
    
    
    addEnemiesToLevel();
    lifeTxt.text=String(lives);
    scoreTxt.text=String(pScore);
    function addEnemiesToLevel():void
    {
              if(currentLevel == 1){
              //Enemy 1
              addEnemy(620, -115);
        addBumper(500, -115);
        addBumper(740, -115);
              //Enemy 2
              addEnemy(900, -490);
              addBumper(600, -490);
              addBumper(980, -490);
              //Enemy 3
              addEnemy(2005, -115);
              addBumper(1905, -115);
              addBumper(2105, -115);
              //Enemy 4
              addEnemy(1225, -875);
              addBumper(1125, -875);
              addBumper(1325, -875);
              }
              if(currentLevel == 2){
              addEnemy(620, -115);
        addBumper(500, -115);
        addBumper(740, -115);
              }
    }
    
    
    function loop(e:Event):void{
              if(back.collisions.hitTestPoint(player.x + leftBumpPoint.x, player.y + leftBumpPoint.y, true)){
    
                        leftBumping = true;
              } else {
                        leftBumping = false;
              }
    
              if(back.collisions.hitTestPoint(player.x + rightBumpPoint.x, player.y + rightBumpPoint.y, true)){
    
                        rightBumping = true;
              } else {
                        rightBumping = false;
              }
    
              if(back.collisions.hitTestPoint(player.x + upBumpPoint.x, player.y + upBumpPoint.y, true)){
    
                        upBumping = true;
              } else {
                        upBumping = false;
              }
    
              if(back.collisions.hitTestPoint(player.x + downBumpPoint.x, player.y + downBumpPoint.y, true)){
    
                        downBumping = true;
              } else {
                        downBumping = false;
              } 
    
    
    
              if(leftPressed){
                        xSpeed -= speedConstant;
                        player.scaleX = -1;
    
    
              } else if(rightPressed){
                        xSpeed += speedConstant;
                        player.scaleX = 1;
              }
    
              if(leftBumping){
                        if(xSpeed < 0){
                                  xSpeed *= -0.5;
                        }
              }
    
              if(rightBumping){
                        if(xSpeed > 0){
                                  xSpeed *= -0.5;
                        }
              }
    
              if(upBumping){
                        if(ySpeed < 0){
                                  ySpeed *= -0.5;
                        }
              }
    
              if(downBumping){
                        if(ySpeed > 0){ 
                                  ySpeed = 0;
                        }
                        if(upPressed){ 
                                  ySpeed = jumpConstant;
                        }
    
                        //DOUBLE JUMP
                        if(upReleasedInAir == true){
                                  upReleasedInAir = false;
                        }
                        if(doubleJumpReady == false){
                                  doubleJumpReady = true;
                        }
              } else { 
    
                        ySpeed += gravityConstant; 
    
                        //DOUBLE JUMP
                        if(upPressed == false && upReleasedInAir == false){
                                  upReleasedInAir = true;
                        }
                        if(doubleJumpReady && upReleasedInAir){
                                  if(upPressed){
                                            doubleJumpReady = false;
                                            ySpeed = jumpConstant;
                                  }
                        }
    
              }
    
              if(keyCollected == false){
                        if(player.hitTestObject(back.other.doorKey)){
                                  back.other.doorKey.visible = false;
                                  keyCollected = true;
                                  trace("key collected");
                        }
              }
    
              if(doorOpen == false){
                        if(keyCollected == true){
                                  if(player.hitTestObject(back.other.lockedDoor)){
                                            back.other.lockedDoor.gotoAndStop(2);
                                            doorOpen = true;
                                            trace("door open");
                                  }
                        }
              }
    
    
              if(xSpeed > maxSpeedConstant){
                        xSpeed = maxSpeedConstant;
              } else if(xSpeed < (maxSpeedConstant * -1)){
                        xSpeed = (maxSpeedConstant * -1);
              }
    
              xSpeed *= frictionConstant;
              ySpeed *= frictionConstant;
    
              if(Math.abs(xSpeed) < 0.5){
                        xSpeed = 0;
              }
    
              scrollX -= xSpeed;
              scrollY -= ySpeed;
    
    
              back.x = scrollX;
              back.y = scrollY;
    
              sky.x = scrollX * 0.2;
              sky.y = scrollY * 0.2;
    
              if( ( leftPressed || rightPressed || xSpeed > speedConstant || xSpeed < speedConstant *-1 ) && downBumping){
                        animationState = "running";
              } else if(downBumping){
                        animationState = "idle";
              } else {
                        animationState = "jumping";
              }
    
              if(player.currentLabel != animationState){
                        player.gotoAndStop(animationState);
              }
    
    
              if (enemyList.length > 0)
              {
                        for (var i:int = 0; i < enemyList.length; i++)
                        {
                                  if (bulletList.length > 0)
                                  {
                                            for (var j:int = 0; j < bulletList.length; j++)
                                            {
                                                      if ( enemyList[i].hitTestObject(bulletList[j]) )
                                                      {
                                                                trace("Bullet Hit Enemy");
                                                                pScore += 10.1;
                                                                scoreTxt.text=String(pScore);
                                                                enemyList[i].removeSelf();
                                                                bulletList[j].removeSelf();
                                                      }
                                            }
                                  }
                        }
              }
    
    
    
              if (enemyList.length > 0){
                  for (var k:int = 0; k < enemyList.length; k++){
                      if (bumperList.length > 0){
                          for (var h:int = 0; h < bumperList.length; h++){
                              if ( enemyList[k].hitTestObject(bumperList[h]) ){
                                  enemyList[k].changeDirection();
                            }
                        }
                    }
                }
            }
    
    
    
              if (enemyList.length > 0){
                  for (var m:int = 0; m < enemyList.length; m++){
                      if ( enemyList[m].hitTestObject(player) ){
                                            trace("Player Hit Enemy"); 
                                            scrollX = 0;
                                            scrollY = 500;
                                            lives -= 1;
                                            lifeTxt.text=String(lives);
                                  }
                        }
              }
              if (lives == 0){
                        gotoAndStop(3);
              }
    
    }
    
    
    function nextLevel():void{
              currentLevel++;
              trace("Next Level: " + currentLevel);
                 gotoNextLevel();
                           addEnemiesToLevel();
                 if(currentLevel == 4){
                           gotoAndStop(4);
                 }
    }
    
    
    function gotoNextLevel():void{
              back.other.gotoAndStop(currentLevel);
              back.visuals.gotoAndStop(currentLevel);
              back.collisions.gotoAndStop(currentLevel);
              scrollX = 0;
              scrollY = 500;
    
              keyCollected = false;
              back.other.doorKey.visible = true;
              doorOpen = false;
              back.other.lockedDoor.gotoAndStop(1);
    }
    
    
    function keyDownHandler(e:KeyboardEvent):void{
              if(e.keyCode == Keyboard.LEFT){
                        leftPressed = true;
    
              } else if(e.keyCode == Keyboard.RIGHT){
                        rightPressed = true;
    
              } else if(e.keyCode == Keyboard.UP){
                        upPressed = true;
    
              } else if(e.keyCode == Keyboard.DOWN){
                        downPressed = true;
                        if(doorOpen && player.hitTestObject(back.other.lockedDoor)){
    
                                  nextLevel();
                        }
              }
    }
    
    
    function keyUpHandler(e:KeyboardEvent):void{
              if(e.keyCode == Keyboard.LEFT){
                        leftPressed = false;
    
              } else if(e.keyCode == Keyboard.RIGHT){
                        rightPressed = false;
    
              } else if(e.keyCode == Keyboard.UP){
                        upPressed = false;
    
              } else if(e.keyCode == Keyboard.DOWN){
                        downPressed = false;
              }
    
              if(e.keyCode == Keyboard.SPACE){
                        fireBullet();
              }
    }
    
    
    function fireBullet():void
    {
              var playerDirection:String;
              if(player.scaleX < 0){
                        playerDirection = "left";
              } else if(player.scaleX > 0){
                        playerDirection = "right";
              }
              var bullet:Bullet = new Bullet(player.x - scrollX, player.y - scrollY, playerDirection, xSpeed);
              back.addChild(bullet);
    
              bullet.addEventListener(Event.REMOVED, bulletRemoved);
              bulletList.push(bullet);
    
    }
    
    
    function bulletRemoved(e:Event):void
    {
              e.currentTarget.removeEventListener(Event.REMOVED, bulletRemoved);
              bulletList.splice(bulletList.indexOf(e.currentTarget), 1);
    }
    
    
    function addEnemy(xLocation:int, yLocation:int):void
    {
              var enemy:Enemy = new Enemy(xLocation, yLocation);
              back.addChild(enemy);
              enemy.addEventListener(Event.REMOVED, enemyRemoved);
              enemyList.push(enemy);
    }
    
    
    function addBumper(xLocation:int, yLocation:int):void
    {
              var bumper:Bumper = new Bumper(xLocation, yLocation);
              back.addChild(bumper);
              bumper.visible = false;
              bumperList.push(bumper);
    }
    
    
    function enemyRemoved(e:Event):void
    {
              e.currentTarget.removeEventListener(Event.REMOVED, enemyRemoved);
              enemyList.splice(enemyList.indexOf(e.currentTarget), 1); //this removes 1 object from the enemyList, at the index of whatever object caused this function to activate
    }
    

    And the bumper class is:

    package  {
              import flash.display.MovieClip;
              import flash.events.Event;
    
              public class Bumper extends MovieClip{
                        public function Bumper(xLocation:int, yLocation:int) {
                                  // constructor code
                                  x = xLocation;
                                  y = yLocation;
    
                                  addEventListener(Event.ENTER_FRAME, bumper);
                        }
    
    
                        public function bumper(e:Event):void{
                                  //code here
                        }
              }
    
    }
    

    Please help me, I don't really understand the error. I tried to read the documentation about it, but I just confused.

    you have a movieclip with class = bumper on frame 5.  That's the problem.

  • HP Photosmart 2575 Image Zone Error HELP!

    Here is the HP Image Zone error messages that I get for YEARS!

    1. "an unhandled exception has occurred in a component in your application."

    2. "null reference exception:"object reference not set to an instance of an object " ".

    The exception text *.
    System.NullReferenceException: Object Reference not set to an instance of an object.

    at HP. CUE. Video.PlaybackControl.UpdateProgressBar)
    at HP. CUE. Video.PlaybackControl._ProgressTimer_Tick (Object sender, EventArgs e)
    to System.Windows.Forms.Timer.OnTick (ByVal e As EventArgs)
    at System.Windows.Forms.Timer.Callback (IntPtr hWnd, Int32 msg, IntPtr, IntPtr dwTime idEvent)

    He also mentions Microsoft .NET framework and JIT debugging.

    The software has been made unusable due to error messages.  The only way I can get the pop up window to disappear, must go to the Task Manager, then click on end process.

    If anyone knows how to solve this chronic problem, irritating, share!  I could not find any help on the site of HP, on the Microsoft Web site, or in the resolution of problems on my computer.

    Thanks for advance-WSSD

    Kat-

    Sorry, I got rid of my annoying HP 2575, because a friend gave me an HP printer almost new (w / a price tag on that $ 100!).  But I tell you, this error message arises FOR YEARS and I have to many friends and family try to fix it for me. For a long time, I did what you... used the 'end process' in the Manager.  Sorry to say but I do not remember how I'm finally rid of him!

    Should have taken the post down, so people like you would potentially get their hopes for a solution!

    Have you tried to get answers on the site Internet of Microsft (or HP by the way), directly from the tech guys here?  Some are certified, more willing to give a lot of help and do not charge a penny!

    Good luck to you!

    MssW

  • Photo Gallery - incorrect image

    in Photo Gallery, I get an error in the box that says C:Windows\system32\thumbcache.dll and it blocks my computer.  How can I fix it

    FWIW... There are a few articles on the net that
    indicate thumbcache.dll may be related to Adobe
    Photoshop Album Starter Edition.

    I'm posting the following link for info only... I am
    * not * recommending you run any registry
    products cleansers or analyses.

    Example:
    thumbnailcache.dll
    http://www.ProcessLibrary.com/directory/files/thumbnailcache/445139/

  • Cannot find the Gallery of images for screen saver in Windows Xp

    Original title: Gallery photograpique for screen savers

    I can't find the Gallery of images used in my screensaver in old computer to copy to the new computer. Windows XP Home Edition is my op system.

    Hello

    Start/Search/*.jpg should be able to locate the folder, though it may take a little. Or, check the settings for the screen saver on the old machine to see which directory is used.

    Good luck, Rick Rogers, aka "Crazy" - Microsoft MVP http://mvp.support.microsoft.com Windows help - www.rickrogers.org

  • Error when you run DISM/online/Cleanup-Image /RestoreHealth - error 0x800f0906

    Error when you run DISM/online/Cleanup-Image /RestoreHealth - error 0x800f0906

    DISM / Online/Cleanup-Image /RestoreHealth

    Management and maintenance of deployment images tool
    Version: 6.2.9200.16384

    Image Version: 6.2.9200.16384

    [==========================100.0%==========================]

    Error: 0x800f0906

    The source files could not be downloaded.
    Use the 'source' option to specify the location of the files that are required t
    o restore function. For more information on the specification of a source location, see
     http://go.microsoft.com/fwlink/?LinkId=243077.

    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log

    Ran according to this link repair instructions.

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_8-windows_update/dismexe-online-cleanup-image-restore-health-failed/668ef107-5f4c-4959-Ba93-76d052452315

    Network list Service will not start.

    ---------------------------------------------

    Verifying the service dependencies. The following error message

    Win32: A dynamic link library (DLL) initialization routine failed.

    -----------------------------------------------

    Windows Update is able to operate, and I am able to download all of the updates.

    -----------------------------------------------

    Here is my DISM.log file for troubleshooting.

    http://pastebin.com/Z2Fc8JL4

    Excerpt from CBS. Only JOURNAL entries [SR]

    http://pastebin.com/1jn2SWPV

    Complete CBS.log for 2013-06-22

    http://www.sendspace.com/file/hdq0yu

    You get the error 0x800f0906 because you have installed KB3022345. Uninstall it by going to programs and features in Control Panel and then click on the link "View installed updates".

    In the Find box top right, copy and paste (or type) KB3022345 and when it appears in the list, on the right, click on it and choose uninstall.

    See these two articles for more information on the subject: Microsoft confirms patch KB3022345 SFC/scannow breaks

    Windows patch KB 3022345 triggers apparent file system corruption

  • ArgumentError: Error #2100 when opening adobe muse cc 2015

    Hello, I'm an ArgumentError: Error #2100 when opening adobe muse cc 2015

    Here is the log txt:

    Logging ended at: my Sep 26 12:21:24 2015

    12:21:31.007 [00:01:03.937] | Response receipt 404 of the GET to the URL:https://api-ava.worldsecuresystems.com/api/v1/admin/sites/2162375/storage/page-templates?m eta responseURL:eta https://api-ava.worldsecuresystems.com/api/v1/admin/sites/2162375/storage/page-templates?m
    12:21:31.008 [00:01:03.937] | Header: Server: openresty/1.7.4.1
    12:21:31.008 [00:01:03.937] | Header: Date: Saturday, September 26, 2015 19:21:22 GMT
    12:21:31.008 [00:01:03.937] | Header: Content-Type: application/json
    12:21:31.008 [00:01:03.937] | Header: Content-Length: 15
    12:21:31.009 [00:01:03.937] | Header: Connection: keep-alive
    12:21:31.009 [00:01:03.937] | Header: Cache-Control: private
    12:21:31.009 [00:01:03.937] | Header:-Access-Control-Allow-Origin: *.
    12:21:31.009 [00:01:03.937] | Header: Access-Control-allow-Headers: authorization, Accept-Language, Content-Type
    12:21:31.009 [00:01:03.937] | Header: Access-Control-allow-methods: GET, HEAD, POST, PUT, DELETE
    12:21:31.009 [00:01:03.937] | Header: Access-Control-expose-Headers: location
    12:21:31.010 [00:01:03.937] | Header: Access-Control-Max-Age: 99999
    12:21:31.010 [00:01:03.937] | Data:
    {"code": 104001}
    12:21:31.052 [00:01:03.984] | Response receipt 404 of the GET to the URL:https://api-ava.worldsecuresystems.com/api/v1/admin/sites/2162375/storage/data?meta responseURL:https://api-ava.worldsecuresystems.com/api/v1/admin/sites/2162375/storage/data?meta
    12:21:31.052 [00:01:03.984] | Header: Server: openresty/1.7.4.1
    12:21:31.053 [00:01:03.984] | Header: Date: Saturday, September 26, 2015 19:21:22 GMT
    12:21:31.053 [00:01:03.984] | Header: Content-Type: application/json
    12:21:31.053 [00:01:03.984] | Header: Content-Length: 15
    12:21:31.053 [00:01:03.984] | Header: Connection: keep-alive
    12:21:31.053 [00:01:03.984] | Header: Cache-Control: private
    12:21:31.053 [00:01:03.984] | Header:-Access-Control-Allow-Origin: *.
    12:21:31.053 [00:01:03.984] | Header: Access-Control-allow-Headers: authorization, Accept-Language, Content-Type
    12:21:31.053 [00:01:03.984] | Header: Access-Control-allow-methods: GET, HEAD, POST, PUT, DELETE
    12:21:31.053 [00:01:03.984] | Header: Access-Control-expose-Headers: location
    12:21:31.053 [00:01:03.984] | Header: Access-Control-Max-Age: 99999
    12:21:31.054 [00:01:03.984] | Data:
    {"code": 104001}
    12:21:37.711 [00:01:10.641] | EXCEPTION: [the ByteArray in Loader.loadBytes parameter] ArgumentError: Error #2100: ByteArray Loader.loadBytes () must have the length parameter is greater than 0.-stack the ByteArray parameter in Loader.loadBytes+Loader/_loadBytes+Loader/loadBytes+WebFontLoadController/registerFont+We bFontLoadController/processDownloadedFont + WebFontLoadController/onLoadedFontBytes + EventDis patch/dispatchEventFunction + EventDispatcher/dispatchEvent + MuseURLLoader/dispatchEvent + UR LLoader/onComplete + end
    [00:01:10.641] AlertAndExit by: [setting the ByteArray in Loader.loadBytes] ArgumentError: Error #2100: ByteArray Loader.loadBytes () must have the length parameter is greater than 0.

    Logging in build 2015.0.2.4 started: my Sep 26 13:08:57 2015
    ========================================
    13:09:28.688 [00:00:27.688] | Full recovery
    13:11:17.349 [00:02:16.328] | Try opening the file ' C:\Users\jeff\Documents\shaw & co\shaw and co 14 SEPT. Muse with dimensions: 25362432 mod Date: Mon, Sep 14 22:57:11 GMT - 0700 2015
    13:11:17.377 [00:02:16.359] | Opening file 'C:\Users\jeff\Documents\shaw & co\shaw and SEVEN 14.muse co' with status: success size: 25362432 mod Date: Mon, Sep 14 22:57:11 GMT - 0700 highestUID 2015: 5272
    13:11:28.099 [00:02:27.078] | Response receipt 404 of the GET to the URL:https://api-ava.worldsecuresystems.com/api/v1/admin/sites/2162375/storage/data?meta responseURL:https://api-ava.worldsecuresystems.com/api/v1/admin/sites/2162375/storage/data?meta
    13:11:28.099 [00:02:27.078] | Header: Server: openresty/1.7.4.1
    13:11:28.100 [00:02:27.078] | Header: Date: Saturday, September 26, 2015 20:11:19 GMT
    13:11:28.100 [00:02:27.078] | Header: Content-Type: application/json
    13:11:28.100 [00:02:27.078] | Header: Content-Length: 15
    13:11:28.100 [00:02:27.078] | Header: Connection: keep-alive
    13:11:28.100 [00:02:27.078] | Header: Cache-Control: private
    13:11:28.100 [00:02:27.078] | Header:-Access-Control-Allow-Origin: *.
    13:11:28.100 [00:02:27.078] | Header: Access-Control-allow-Headers: authorization, Accept-Language, Content-Type
    13:11:28.101 [00:02:27.078] | Header: Access-Control-allow-methods: GET, HEAD, POST, PUT, DELETE
    13:11:28.101 [00:02:27.078] | Header: Access-Control-expose-Headers: location
    13:11:28.101 [00:02:27.078] | Header: Access-Control-Max-Age: 99999
    13:11:28.101 [00:02:27.078] | Data:
    {"code": 104001}
    13:11:28.629 [00:02:27.609] | Response receipt 404 of the GET to the URL:https://api-ava.worldsecuresystems.com/api/v1/admin/sites/2162375/storage/page-templates?m eta responseURL:eta https://api-ava.worldsecuresystems.com/api/v1/admin/sites/2162375/storage/page-templates?m
    13:11:28.629 [00:02:27.609] | Header: Server: openresty/1.7.4.1
    13:11:28.630 [00:02:27.609] | Header: Date: Saturday, September 26, 2015 20:11:20 GMT
    13:11:28.630 [00:02:27.609] | Header: Content-Type: application/json
    13:11:28.630 [00:02:27.609] | Header: Content-Length: 15
    13:11:28.630 [00:02:27.609] | Header: Connection: keep-alive
    13:11:28.630 [00:02:27.609] | Header: Cache-Control: private
    13:11:28.630 [00:02:27.609] | Header:-Access-Control-Allow-Origin: *.
    13:11:28.631 [00:02:27.609] | Header: Access-Control-allow-Headers: authorization, Accept-Language, Content-Type
    13:11:28.631 [00:02:27.609] | Header: Access-Control-allow-methods: GET, HEAD, POST, PUT, DELETE
    13:11:28.631 [00:02:27.609] | Header: Access-Control-expose-Headers: location
    13:11:28.631 [00:02:27.609] | Header: Access-Control-Max-Age: 99999
    13:11:28.631 [00:02:27.609] | Data:
    {"code": 104001}
    13:12:20.577 [00:03:19.563] | EXCEPTION: [the ByteArray in Loader.loadBytes parameter] ArgumentError: Error #2100: ByteArray Loader.loadBytes () must have the length parameter is greater than 0.-stack the ByteArray parameter in Loader.loadBytes+Loader/_loadBytes+Loader/loadBytes+WebFontLoadController/registerFont+We bFontLoadController/processDownloadedFont + WebFontLoadController/onLoadedFontBytes + EventDis patch/dispatchEventFunction + EventDispatcher/dispatchEvent + MuseURLLoader/dispatchEvent + UR LLoader/onComplete + end
    [00:03:19.563] AlertAndExit by: [setting the ByteArray in Loader.loadBytes] ArgumentError: Error #2100: ByteArray Loader.loadBytes () must have the length parameter is greater than 0.

    Logging in build 2015.0.2.4 started: my Sep 26 13:25:10 2015
    ========================================
    13:25:24.713 [00:00:13.359] | Full recovery
    13:26:15.857 [00:01:04.500] | Try opening the file ' C:\Users\jeff\Documents\shaw & co\shaw and co 14 SEPT. Muse with dimensions: 25362432 mod Date: Mon, Sep 14 22:57:11 GMT - 0700 2015
    13:26:15.871 [00:01:04.515] | Opening file 'C:\Users\jeff\Documents\shaw & co\shaw and SEVEN 14.muse co' with status: success size: 25362432 mod Date: Mon, Sep 14 22:57:11 GMT - 0700 highestUID 2015: 5272
    13:26:33.277 [00:01:21.922] | Response receipt 404 of the GET to the URL:https://api-ava.worldsecuresystems.com/api/v1/admin/sites/2162375/storage/page-templates?m eta responseURL:eta https://api-ava.worldsecuresystems.com/api/v1/admin/sites/2162375/storage/page-templates?m
    13:26:33.277 [00:01:21.922] | Header: Server: openresty/1.7.4.1
    13:26:33.277 [00:01:21.922] | Header: Date: Saturday, September 26, 2015 20:26:24 GMT
    13:26:33.277 [00:01:21.922] | Header: Content-Type: application/json
    13:26:33.278 [00:01:21.922] | Header: Content-Length: 15
    13:26:33.278 [00:01:21.922] | Header: Connection: keep-alive
    13:26:33.278 [00:01:21.922] | Header: Cache-Control: private
    13:26:33.278 [00:01:21.922] | Header:-Access-Control-Allow-Origin: *.
    13:26:33.278 [00:01:21.922] | Header: Access-Control-allow-Headers: authorization, Accept-Language, Content-Type
    13:26:33.278 [00:01:21.922] | Header: Access-Control-allow-methods: GET, HEAD, POST, PUT, DELETE
    13:26:33.278 [00:01:21.922] | Header: Access-Control-expose-Headers: location
    13:26:33.279 [00:01:21.922] | Header: Access-Control-Max-Age: 99999
    13:26:33.279 [00:01:21.922] | Data:
    {"code": 104001}
    13:26:33.280 [00:01:21.922] | Response receipt 404 of the GET to the URL:https://api-ava.worldsecuresystems.com/api/v1/admin/sites/2162375/storage/data?meta responseURL:https://api-ava.worldsecuresystems.com/api/v1/admin/sites/2162375/storage/data?meta
    13:26:33.280 [00:01:21.922] | Header: Server: openresty/1.7.4.1
    13:26:33.280 [00:01:21.922] | Header: Date: Saturday, September 26, 2015 20:26:24 GMT
    13:26:33.281 [00:01:21.922] | Header: Content-Type: application/json
    13:26:33.281 [00:01:21.922] | Header: Content-Length: 15
    13:26:33.281 [00:01:21.922] | Header: Connection: keep-alive
    13:26:33.281 [00:01:21.922] | Header: Cache-Control: private
    13:26:33.281 [00:01:21.922] | Header:-Access-Control-Allow-Origin: *.
    13:26:33.281 [00:01:21.922] | Header: Access-Control-allow-Headers: authorization, Accept-Language, Content-Type
    13:26:33.281 [00:01:21.922] | Header: Access-Control-allow-methods: GET, HEAD, POST, PUT, DELETE
    13:26:33.282 [00:01:21.922] | Header: Access-Control-expose-Headers: location
    13:26:33.282 [00:01:21.922] | Header: Access-Control-Max-Age: 99999
    13:26:33.282 [00:01:21.922] | Data:
    {"code": 104001}
    13:26:40.729 [00:01:29.359] | EXCEPTION: [the ByteArray in Loader.loadBytes parameter] ArgumentError: Error #2100: ByteArray Loader.loadBytes () must have the length parameter is greater than 0.-stack the ByteArray parameter in Loader.loadBytes+Loader/_loadBytes+Loader/loadBytes+WebFontLoadController/registerFont+We bFontLoadController/processDownloadedFont + WebFontLoadController/onLoadedFontBytes + EventDis patch/dispatchEventFunction + EventDispatcher/dispatchEvent + MuseURLLoader/dispatchEvent + UR LLoader/onComplete + end
    [00:01:29.375] AlertAndExit by: [setting the ByteArray in Loader.loadBytes] ArgumentError: Error #2100: ByteArray Loader.loadBytes () must have the length parameter is greater than 0.

    Logging in build 2015.0.2.4 started: my Sep 26 13:27:27 2015
    ========================================
    13:27:39.133 [00:00:11.781] | Full recovery
    14:49:50.802 [01:22:23.453] | Try opening the file ' C:\Users\jeff\Documents\shaw & co\shaw and co 14 SEPT. Muse with dimensions: 25362432 mod Date: Mon, Sep 14 22:57:11 GMT - 0700 2015
    14:49:50.832 [01:22:23.485] | Opening file 'C:\Users\jeff\Documents\shaw & co\shaw and SEVEN 14.muse co' with status: success size: 25362432 mod Date: Mon, Sep 14 22:57:11 GMT - 0700 highestUID 2015: 5272
    14:49:59.103 [01:22:31.750] | Response receipt 404 of the GET to the URL:https://api-ava.worldsecuresystems.com/api/v1/admin/sites/2162375/storage/data?meta responseURL:https://api-ava.worldsecuresystems.com/api/v1/admin/sites/2162375/storage/data?meta
    14:49:59.103 [01:22:31.750] | Header: Server: openresty/1.7.4.1
    14:49:59.103 [01:22:31.750] | Header: Date: Saturday, September 26, 2015 21:49:50 GMT
    14:49:59.103 [01:22:31.750] | Header: Content-Type: application/json
    14:49:59.103 [01:22:31.750] | Header: Content-Length: 15
    14:49:59.103 [01:22:31.750] | Header: Connection: keep-alive
    14:49:59.103 [01:22:31.750] | Header: Cache-Control: private
    14:49:59.104 [01:22:31.750] | Header:-Access-Control-Allow-Origin: *.
    14:49:59.104 [01:22:31.750] | Header: Access-Control-allow-Headers: authorization, Accept-Language, Content-Type
    14:49:59.104 [01:22:31.750] | Header: Access-Control-allow-methods: GET, HEAD, POST, PUT, DELETE
    14:49:59.104 [01:22:31.750] | Header: Access-Control-expose-Headers: location
    14:49:59.104 [01:22:31.750] | Header: Access-Control-Max-Age: 99999
    14:49:59.104 [01:22:31.750] | Data:
    {"code": 104001}
    14:49:59.696 [01:22:32.344] | Response receipt 404 of the GET to the URL:https://api-ava.worldsecuresystems.com/api/v1/admin/sites/2162375/storage/page-templates?m eta responseURL:eta https://api-ava.worldsecuresystems.com/api/v1/admin/sites/2162375/storage/page-templates?m
    14:49:59.696 [01:22:32.344] | Header: Server: openresty/1.7.4.1
    14:49:59.697 [01:22:32.344] | Header: Date: Saturday, September 26, 2015 21:49:51 GMT
    14:49:59.697 [01:22:32.344] | Header: Content-Type: application/json
    14:49:59.697 [01:22:32.344] | Header: Content-Length: 15
    14:49:59.697 [01:22:32.344] | Header: Connection: keep-alive
    14:49:59.697 [01:22:32.344] | Header: Cache-Control: private
    14:49:59.697 [01:22:32.360] | Header:-Access-Control-Allow-Origin: *.
    14:49:59.698 [01:22:32.360] | Header: Access-Control-allow-Headers: authorization, Accept-Language, Content-Type
    14:49:59.698 [01:22:32.360] | Header: Access-Control-allow-methods: GET, HEAD, POST, PUT, DELETE
    14:49:59.698 [01:22:32.360] | Header: Access-Control-expose-Headers: location
    14:49:59.698 [01:22:32.360] | Header: Access-Control-Max-Age: 99999
    14:49:59.698 [01:22:32.360] | Data:
    {"code": 104001}
    14:50:06.380 [01:22:39.031] | EXCEPTION: [the ByteArray in Loader.loadBytes parameter] ArgumentError: Error #2100: ByteArray Loader.loadBytes () must have the length parameter is greater than 0.-stack the ByteArray parameter in Loader.loadBytes+Loader/_loadBytes+Loader/loadBytes+WebFontLoadController/registerFont+We bFontLoadController/processDownloadedFont + WebFontLoadController/onLoadedFontBytes + EventDis patch/dispatchEventFunction + EventDispatcher/dispatchEvent + MuseURLLoader/dispatchEvent + UR LLoader/onComplete + end
    [01:22:39.047] AlertAndExit by: [setting the ByteArray in Loader.loadBytes] ArgumentError: Error #2100: ByteArray Loader.loadBytes () must have the length parameter is greater than 0.

    Logging in build 2015.0.2.4 started: my Sep 26 15:10:20 2015
    ========================================
    15:10:38.666 [00:00:17.984] | Full recovery
    15:11:49.007 [00:01:28.312] | Try opening the file ' C:\Users\jeff\Documents\shaw & co\shaw and co 14 SEPT. Muse with dimensions: 25362432 mod Date: Mon, Sep 14 22:57:11 GMT - 0700 2015
    15:11:49.017 [00:01:28.328] | Opening file 'C:\Users\jeff\Documents\shaw & co\shaw and SEVEN 14.muse co' with status: success size: 25362432 mod Date: Mon, Sep 14 22:57:11 GMT - 0700 highestUID 2015: 5272
    15:11:56.855 [00:01:36.172] | Response receipt 404 of the GET to the URL:https://api-ava.worldsecuresystems.com/api/v1/admin/sites/2162375/storage/data?meta responseURL:https://api-ava.worldsecuresystems.com/api/v1/admin/sites/2162375/storage/data?meta
    15:11:56.855 [00:01:36.172] | Header: Server: openresty/1.7.4.1
    15:11:56.855 [00:01:36.172] | Header: Date: Saturday, September 26, 2015 22:11:48 GMT
    15:11:56.855 [00:01:36.172] | Header: Content-Type: application/json
    15:11:56.855 [00:01:36.172] | Header: Content-Length: 15
    15:11:56.856 [00:01:36.172] | Header: Connection: keep-alive
    15:11:56.856 [00:01:36.172] | Header: Cache-Control: private
    15:11:56.856 [00:01:36.172] | Header:-Access-Control-Allow-Origin: *.
    15:11:56.856 [00:01:36.172] | Header: Access-Control-allow-Headers: authorization, Accept-Language, Content-Type
    15:11:56.856 [00:01:36.172] | Header: Access-Control-allow-methods: GET, HEAD, POST, PUT, DELETE
    15:11:56.856 [00:01:36.172] | Header: Access-Control-expose-Headers: location
    15:11:56.856 [00:01:36.172] | Header: Access-Control-Max-Age: 99999
    15:11:56.856 [00:01:36.172] | Data:
    {"code": 104001}
    15:11:57.368 [00:01:36.672] | Response receipt 404 of the GET to the URL:https://api-ava.worldsecuresystems.com/api/v1/admin/sites/2162375/storage/page-templates?m eta responseURL:eta https://api-ava.worldsecuresystems.com/api/v1/admin/sites/2162375/storage/page-templates?m
    15:11:57.368 [00:01:36.672] | Header: Server: openresty/1.7.4.1
    15:11:57.368 [00:01:36.672] | Header: Date: Saturday, September 26, 2015 22:11:49 GMT

    Please delete the folders "tk1", 'tk2', 'tk3' and "tk4" found in:

    Mac: "~/Library/Preferences/com.adobe.AdobeMuseCC.2015.0/Local Store" (copy and paste into the go > dialog go to the folder in the Finder)

    Windows: store "%appdata%/com.adobe.AdobeMuseCC.2015.0/Local" (copy and paste into a file Explorer window)

    In both cases above, include everything between the quotation marks (including the tilde ~ on Mac) in the copy/paste, but not the quotation marks themselves.

  • Why do I get this message ArgumentError: Error #2015: invalid BitmapData.

    ArgumentError: Error #2015: invalid BitmapData.

    at flash.display::BitmapData/ctor()

    at flash.display::BitmapData()

    at com.king.flash.spaceland.texture::TextureManager/clearDynamicAtlasResource()

    at com.king.flash.spaceland.texture::TextureManager/clearDynamicAtlas()

    at com.king.flash.spaceland.texture::TextureManager/createDynamicAtlas()

    at com.king.ragnarok.spaceland.atlas::DynamicAtlasFactory/createDynamicAtlas()

    at com.king.stritz.juego::ProfilePictureLoader/load()

    at com.king.stritz.juego::ProfilePictureLoader/loadProfilePictureWithSocialUser()

    at com.king.stritz.juego::ProfilePictureLoader/loadProfilePicture()

    at com.king.stritz.view.spaceland.diorama::DioramaPortraitsView/setUpCurrentUser()

    at com.king.stritz.presenter.diorama::DioramaPortraitsPresenter/show()

    at com.king.stritz.presenter.diorama::DioramaPresenterImpl/show()

    at com.king.stritz.state.main::DioramaMainState/onEnterState()

    at com.king.stritz.state::TransitionAction/onTransition()

    at se.fearless.fettle.impl::Transition/onTransition()

    at se.fearless.fettle.impl::TransitionModelImpl/forceSetState()

    at se.fearless.fettle.impl::TransitionModelImpl/fireInternal()

    at se.fearless.fettle.impl::TransitionModelImpl/fireEvent()

    at se.fearless.fettle.impl::StateMachineImpl/fireEvent()

    at com.king.stritz.state::StateChanger/requestStateChange()

    at com.king.stritz.state.main::PerformanceCheckState/changeState()

    at com.king.stritz.state.main::PerformanceCheckState/onEnterState()

    at com.king.stritz.state::TransitionAction/onTransition()

    at se.fearless.fettle.impl::Transition/onTransition()

    at se.fearless.fettle.impl::TransitionModelImpl/forceSetState()

    at se.fearless.fettle.impl::TransitionModelImpl/fireInternal()

    at se.fearless.fettle.impl::TransitionModelImpl/fireEvent()

    at se.fearless.fettle.impl::StateMachineImpl/fireEvent()

    at com.king.stritz.state::StateChanger/requestStateChange()

    to Function/PreloadingState.as$ 0:anonymous()

    to Function/Assets.as$ 1:anonymous()

    at com.king.ragnarok.spaceland.assets.zip::ZipAssetLoader/callback()

    to Function/ZipAssetLoader.as$ 0:anonymous()

    to Function/ImageDecoder.as$ 0:anonymous()

    to Function / onComplete)

    Hi Luetta,

    Can you please share how you are initializing BitmapData in your AS code (also provide little detail of you app you use PNG or ATF)? Looks like the size of bitmapData is more than expected.

    -Nimisha

  • I could only browse to files on my android app dc adobe phone in the gallery and image files, but not other folders

    I could only browse files on my phone android app dc adobe in the folders of the gallery and image, but I could only browse files on my phone android app dc adobe in the folders of the gallery and image, but not the other files

    Hi Buckyball1982,

    What version of Android phone do you use?

    You have a built-in file Explorer or any Explorer third-party file installed on your phone?

    If not, then I recommend you to install an Explorer of files on your phone and you would be able to browse the files in the Acrobat DC application on your Android phone.

    Kind regards

    Rahul

Maybe you are looking for

  • Re: Equium A60-672 will record not on - winlogon.exe - Ordinal not found

    Hi, am a satellite with a start problem in Windows XP Home Edition. It crosses the main screen then shows the above and the message "the orinal found 258 in SHELL32 dynamic link library. LL. When I press OK it comes up with a user interface failure m

  • Unable to connect to internet wireless - WLAN card non - Satellite Pro M10

    Hi, I just got a second hand toshiba satellite pro M10 and I just of him relandscaped and put windows xp home edition on it. What I would like to be able to do is to connect to my network wireless of families so that I can get rid of all the cables o

  • Photos crash when creating project

    All the Ive recently updated to El Capitan, nit course if that is the problem or not but Im going to ask the question. IM aware there are some threads about photos crashing, but none seems to be similar to mine Ive just returned from a trip and try t

  • M4a to MP3 how do.

    Many of the files in my recordings are M4A.  I read here that the rocket will not play them?  How to convert the MP3 without having to buy a program?

  • Taskeng.exe

    What is the purpose of the Taskeng.exe process... ???Usually, I end this process after I have connect to windows...Is their problem...?