Extension of class Array, get Error #1069: property 0 not found with indexOf appeal

I'm using inheritance to extend the Array class to create a class of paths that moves of Sprites/MovieClips around on the screen. I get a weird error on a call to indexOf. Here is the error:

ReferenceError: Error #1069: property 0 not found on paths and there is no default value.
to Array$ / _indexOf)
table / http://Adobe.com/AS3/2006/builtin:IndexOf ()
to Paths / Next () [D:\Stephen\Documents\Flash\TossGame\TossGameFirstPerson\Paths.as:40]

Here is the corresponding code in the class of paths:

SerializableAttribute public class paths extends Array
{
private var cCurrentPath:Path;

public function () following: path
{
var lArray:Array =;
var lNextIndex:int is indexOf (cCurrentPath) + 1;.
If (lNextIndex == length) lNextIndex = 0;
var lPath:Path = lArray [lNextIndex];
lPath return;
}
} / / class

I get the error in the highlighted line. cCurrentPath is filled with a trace object that corresponds to the object at position 0 of the this object (paths). I tried the following variants of the Next() function:

public function () following: path
{
var lArray:Array =;
var lNextIndex:int =
lArray. indexOf (cCurrentPath) + 1;
If (lNextIndex ==
lArray. length ) lNextIndex = 0;
var lPath:Path = lArray [lNextIndex];
lPath return;
}

public function () following: path
{
var lArray:Array =;
var lNextIndex:int = this
. indexOf (cCurrentPath) + 1;
If (lNextIndex == this
. length ) lNextIndex = 0;
var lPath:Path = lArray [lNextIndex];
lPath return;
}

public function () following: path
{
var lArray:Array =;
var lNextIndex:int = super
. indexOf (cCurrentPath) + 1;
If (lNextIndex == super
. length ) lNextIndex = 0;
var lPath:Path = lArray [lNextIndex];
lPath return;
}


Same product if mistake it I try. Anyone got any ideas?

Stephen

Flash CS3 Pro (Version 9.0)

Mark your dynamic class.

class dynamic public railways extends from table

Tags: Adobe Animate

Similar Questions

  • Error 1069 property 0 not found on flash.text.TextField and there is no default value

    So, I worked on it for a few days and what makes me crazy is this is a simple file with many simple script and I still can't seem to understand what is this error and how to fix it: property 0 not found on flash.text.TextField and there is no default

    The script below what we look at, everything is drawn with AS3, there is no object library (except for the police). I little understand what means the error, but I do not understand it or how to fix it.

    import flash.display.MovieClip;
    import flash.events.MouseEvent;
    import flash.events.Event;
    import flash.filters.BlurFilter;
    import flash.display.Shape;
    
    import flash.display.Sprite;
    import flash.display.Graphics;
    import flash.events.*;
    import flash.geom.*;
    import flash.events.*;
    
    var boxBg:Shape = new Shape();
        
    boxBg.graphics.lineStyle(1, 0x000000, .5, true);
    boxBg.graphics.beginFill(0xff6600);
    boxBg.graphics.drawRect(0, 0, 50, 50);
    boxBg.graphics.endFill();
    
    var box:Sprite = new Sprite();
    box.x = 335;
    box.y = 245;
    
    addChild(box);
    box.addChild(boxBg);
    
    var toggleBg:Shape = new Shape();
    var toggleBtn:Sprite = new Sprite();
        
    toggleBg.graphics.lineStyle(1, 0xefefef, .5, true);
    toggleBg.graphics.beginFill(0xffffff);
    toggleBg.graphics.drawCircle(0, 0, 25);
    toggleBg.graphics.endFill();
    toggleBtn.buttonMode = true;
    toggleBtn.mouseChildren = false;
    
    toggleBtn.x = stage.stageWidth - 75;
    toggleBtn.y = 25;
    
    addChild(toggleBtn);
    toggleBtn.addChild(toggleBg);
    
    for (var i:int = 0; i < 10; i++) {
        var btnBg:Shape = new Shape();
        
        btnBg.graphics.lineStyle(1, 0xefefef, .5, true);
        btnBg.graphics.beginFill(0xffffff);
        btnBg.graphics.moveTo(12, 0);
        btnBg.graphics.lineTo(24, 20);
        btnBg.graphics.lineTo(0, 20);
        btnBg.graphics.lineTo(12,0);
        btnBg.graphics.endFill();
        
        var btnFont = new Myriad();
        
        var btnFormat:TextFormat = new TextFormat();
        btnFormat.font = btnFont.fontName;
        btnFormat.size = 12;
        btnFormat.align = "center";
        btnFormat.color = 0xffffff;
        
        var btnTxt:TextField = new TextField();
        btnTxt.defaultTextFormat = btnFormat;
        btnTxt.width = 50;
        btnTxt.height = 20;
        btnTxt.y = 5;
        
        var myBtn:Sprite = new Sprite();
        
        myBtn.name = ("Blend " + (i + 1));
        myBtn.buttonMode = true;
        myBtn.mouseChildren = false;
        
        addChild(myBtn);
        
        myBtn.x = 10 + (i * 75);
        myBtn.y = 500;
        
        myBtn.addChild(btnBg);
        myBtn.addChild(btnTxt);
        
        btnTxt.text = myBtn.name;
        
        myBtn.addEventListener(MouseEvent.CLICK, btnHandler);
        myBtn.addEventListener(MouseEvent.ROLL_OVER, btnHandler);
        myBtn.addEventListener(MouseEvent.ROLL_OUT, btnHandler);
        toggleBtn.addEventListener(MouseEvent.MOUSE_DOWN, onToggleVisible);
    }
    
    function btnHandler(event:MouseEvent):void {
        if(event.type == MouseEvent.CLICK){
            if(event.currentTarget == btnTxt[0]){
                box.blendMode = BlendMode.NORMAL;
            }
            
            if(event.currentTarget == btnTxt[1]){
                box.blendMode = BlendMode.DARKEN;
            }
            
            if(event.currentTarget == btnTxt[2]){
                box.blendMode = BlendMode.DIFFERENCE;
            }
            if(event.currentTarget == btnTxt[3]){
                box.blendMode = BlendMode.HARDLIGHT;
            }
            
            if(event.currentTarget == btnTxt[4]){
                box.blendMode = BlendMode.INVERT;
            }
            
            if(event.currentTarget == btnTxt[5]){
                box.blendMode = BlendMode.LIGHTEN;
            }
            
            if(event.currentTarget == btnTxt[6]){
                box.blendMode = BlendMode.MULTIPLY;
            }
            
            if(event.currentTarget == btnTxt[7]){
                box.blendMode = BlendMode.OVERLAY;
            }
            
            if(event.currentTarget == btnTxt[8]){
                box.blendMode = BlendMode.SCREEN;
            }
            
            if(event.currentTarget == btnTxt[9]){
                box.blendMode = BlendMode.SUBTRACT;
            }
        }
    }
        
    function onToggleVisible(event:MouseEvent):void {
        box.visible = !box.visible;
    }
    

    I have made through problems similar, but could not find an adequate solution. If anyone can help me identify the problem and the solution, I would be extremely grateful.

    The following code makes more sense, it is more efficient (although it may be more efficient), and it is better organized:

    import flash.display.Shape;
    import flash.display.Sprite;
    import flash.events.*;
    import flash.geom.*;
    import flash.events.*;
    import flash.text.*;
    
    var box:Sprite;
    var toggleBtn:Sprite;
    var btnFont:Font;
    var btnFormat:TextFormat;
    
    init();
    
    function init():void
    {
         initFormat();
         makeBox();
         makeToggleButton();
         makeButtons();
    }
    
    function initFormat():void
    {
         btnFont = new Myriad();
         btnFormat = new TextFormat();
         btnFormat.font = btnFont.fontName;
         btnFormat.size = 12;
         btnFormat.align = "center";
         btnFormat.color = 0xffffff;
    }
    
    function makeToggleButton():void
    {
         toggleBtn = new Sprite();
         toggleBtn.graphics.lineStyle(1, 0xefefef, .5, true);
         toggleBtn.graphics.beginFill(0xffffff);
         toggleBtn.graphics.drawCircle(0, 0, 25);
         toggleBtn.graphics.endFill();
         toggleBtn.buttonMode = true;
         toggleBtn.mouseChildren = false;
         toggleBtn.addEventListener(MouseEvent.MOUSE_DOWN, onToggleVisible);
         addChild(toggleBtn);
    
         toggleBtn.x = stage.stageWidth - 75;
         toggleBtn.y = 25;
    }
    
    function makeBox():void
    {
         box = new Sprite();
         box.graphics.lineStyle(1, 0x000000, .5, true);
         box.graphics.beginFill(0xff6600);
         box.graphics.drawRect(0, 0, 50, 50);
         box.graphics.endFill();
    
         addChild(box);
    
         box.x = 335;
         box.y = 245;
    }
    
    function makeButtons():void
    {
         var myBtn:Sprite;
         for (var i:int = 0; i < 10; i++)
         {
              myBtn = drawButton("Blend " + (i + 1));
              addChild(myBtn);
              myBtn.x = 10 + i * 75;
              myBtn.y = 500;
              myBtn.addEventListener(MouseEvent.CLICK, btnHandler);
              myBtn.addEventListener(MouseEvent.ROLL_OVER, btnHandler);
              myBtn.addEventListener(MouseEvent.ROLL_OUT, btnHandler);
         }
    }
    
    function btnHandler(e:MouseEvent):void
    {
         if (e.type == MouseEvent.CLICK)
         {
              switch (e.currentTarget.name)
              {
                   case "Blend 1":
                        box.blendMode = BlendMode.NORMAL;
                        break;
                   case "Blend 2":
                        box.blendMode = BlendMode.DARKEN;
                        break;
                   case "Blend 3":
                        box.blendMode = BlendMode.DIFFERENCE;
                        break;
                   case "Blend 4":
                        box.blendMode = BlendMode.HARDLIGHT;
                        break;
                   case "Blend 5":
                        box.blendMode = BlendMode.INVERT;
                        break;
                   case "Blend 6":
                        box.blendMode = BlendMode.LIGHTEN;
                        break;
                   case "Blend 7":
                        box.blendMode = BlendMode.MULTIPLY;
                        break;
                   case "Blend 8":
                        box.blendMode = BlendMode.OVERLAY;
                        break;
                   case "Blend 9":
                        box.blendMode = BlendMode.SCREEN;
                        break;
                   case "Blend 10":
                        box.blendMode = BlendMode.SUBTRACT;
                        break;
              }
         }
    }
    
    function onToggleVisible(e:MouseEvent):void
    {
         box.visible = !box.visible;
    }
    
    function drawButton(buttonName:String):Sprite
    {
         var btnTxt:TextField = new TextField();
         btnTxt.defaultTextFormat = btnFormat;
         btnTxt.width = 50;
         btnTxt.height = 20;
         btnTxt.y = 5;
         btnTxt.text = buttonName;
    
         var myBtn:Sprite = new Sprite();
         myBtn.graphics.lineStyle(1, 0xefefef, .5, true);
         myBtn.graphics.beginFill(0xffffff);
         myBtn.graphics.moveTo(12, 0);
         myBtn.graphics.lineTo(24, 20);
         myBtn.graphics.lineTo(0, 20);
         myBtn.graphics.lineTo(12, 0);
         myBtn.graphics.endFill();
    
         myBtn.name = buttonName;
         myBtn.buttonMode = true;
         myBtn.mouseChildren = false;
    
         myBtn.addChild(btnBg);
         myBtn.addChild(btnTxt);
    
         return myBtn;
    }
    
  • By connecting to Vista, get error mdata.dat file not found

    When you connect to windows vista I get the file error 'MONTANA. DAT"not wetting. I can not tell whence error or how to fix it.

    Hi Jameswithey,

    1 did you recent hardware or changes to the software of the system?

    This error message usually refers to the mouse. If you have recently installed a new mouse on your computer, you may need to remove the software that came with your mouse and see if the problem persists.

    Step 1:

    Uninstall the mouse in programs and features

    a. click on start

    b. type appwiz.cpl in the start search

    c. search for all mouse software packages, right click and uninstall.

    Once it is removed, reconnect your mouse, restart your computer, and update the drivers.

    You can also consult the website of the manufacturer of mouse and try to update the latest version of the drivers.

    Updated a hardware driver that is not working properly

    Step 2:

    If the step above does not work, you can try to perform a clean boot and check.

    A clean boot to check if startup item or services to third-party application is causing this issue.

    You can read the following article to put the computer in a clean boot:

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7

    After the troubleshooting steps, please refer to clean the boot link to put the computer to normal startup mode.

    Hope this information is useful.

  • I try to update Lightroom 5.7 but I get an error that says "Application not found" with an adobe before her address. I'm completely stumped.

    The title pretty much sums up it. What should I do now?

    Go to the update page and download the 5.7.1 for Windows version.

    Updates

    It seems that the update in the Help menu the link feature is dead.

  • Error 1308.Source file not found with 9.4.2 point Admin installation

    I'm including as much information in this post as possible to help refine my problem, so if it is too wordy I apologize.

    I created an installation point Admin for Acrobat 9 connecting to Acrobat 9.4.2 by using the following commands in a batch file:

    D:
    CD \Adobe\Acrobat\AcrobatPro9
    MD \Adobe\Acrobat\AcrobatPro9AIP
    start/wait msiexec /a AcroPro.msi TARGETDIR = D:\Adobe\Acrobat\AcrobatPro9AIP Liv D:\Adobe\Acrobat\AcrobatPro9AIP\install900.log/qn
    CD \Adobe\Acrobat\AcrobatPro9AIP
    Start/wait msiexec /p D:\Adobe\Acrobat\AcrobatPro9\AcroProStdUpd910_T1T2_incr.msp /a AcroPro.msi TARGETDIR = D:\Adobe\Acrobat\AcrobatPro9AIP PATCHAIP = 1 /Liv install910.log/SB
    Start/wait msiexec /p D:\Adobe\Acrobat\AcrobatPro9\AcrobatUpd912_all_incr.msp /a AcroPro.msi TARGETDIR = D:\Adobe\Acrobat\AcrobatPro9AIP PATCHAIP = 1 /Liv install912.log/SB
    Start/wait msiexec /p D:\Adobe\Acrobat\AcrobatPro9\AcrobatUpd920_all_incr.msp /a AcroPro.msi TARGETDIR = D:\Adobe\Acrobat\AcrobatPro9AIP PATCHAIP = 1 /Liv install920.log/SB
    Start/wait msiexec /p D:\Adobe\Acrobat\AcrobatPro9\AcrobatUpd930_all_incr.msp /a AcroPro.msi TARGETDIR = D:\Adobe\Acrobat\AcrobatPro9AIP PATCHAIP = 1 /Liv install930.log/SB
    Start/wait msiexec /p D:\Adobe\Acrobat\AcrobatPro9\AcrobatUpd932_all_incr.msp /a AcroPro.msi TARGETDIR = D:\Adobe\Acrobat\AcrobatPro9AIP PATCHAIP = 1 /Liv install932.log/SB
    Start/wait msiexec /p D:\Adobe\Acrobat\AcrobatPro9\AcrobatUpd933_all_incr.msp /a AcroPro.msi TARGETDIR = D:\Adobe\Acrobat\AcrobatPro9AIP PATCHAIP = 1 /Liv install933.log/SB
    Start/wait msiexec /p D:\Adobe\Acrobat\AcrobatPro9\AcrobatUpd940_all_incr.msp /a AcroPro.msi TARGETDIR = D:\Adobe\Acrobat\AcrobatPro9AIP PATCHAIP = 1 /Liv install940.log/SB
    Start/wait msiexec /p D:\Adobe\Acrobat\AcrobatPro9\AcrobatUpd941_all_incr.msp /a AcroPro.msi TARGETDIR = D:\Adobe\Acrobat\AcrobatPro9AIP PATCHAIP = 1 /Liv install941.log/SB
    Start/wait msiexec /p D:\Adobe\Acrobat\AcrobatPro9\AcrobatUpd942_all_incr.msp /a AcroPro.msi TARGETDIR = D:\Adobe\Acrobat\AcrobatPro9AIP PATCHAIP = 1 /Liv install942.log/SB

    I rename the file "AcrobatPro9AIP" to reflect the current version (for example, "Acrobat9.4.2"), copy the folder to my DFS, create an STD with the Customization Wizard, and then deploy with group policy.

    Before you deploy the I have I have always run a few facilities test on two Windows XP 32-bit machines and two Windows 7 64-bit workstations. I use this method to build my installation point for the 5 latest Adobe patches without problem, but suddenly with the version 9.4.2 my test workstations pop up with the following error when installing through the standard installation method "msiexec /i acropro.msi TRANSFORMS = acropro.mst":

    AcroproError.PNG

    I built my installation for acrobat9.4.1, 9.4.0 and 9.3.3 package exactly the same way and facilities did not have this error. The file 'Adobe.Acrobat.Dependencies.manifest' does not exist in my 9.4.1 or 9.4.0 package files, neither exists - it in the 9.4.2 file. Any suggestions?

    File 'Adobe.Acrobat.Dependencies.manifest' is not present in the 9.4.2 AIP created by you and whence the error.

    This file is not getting extracted from your agreement in principle is because you set the PATCHAIP property to 1.

    According to the doc - http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/gpo_ad_9.pdf , no property is required to be used.

    My 9.4.2 AIP is install without any error, because I created it without using the PATCHAIP property.

    Note: you must create your AIP from the beginning (i.e. 9.0) without the help of this property. 9.4.2 applying the patch on the 9.4.0 - AIP-created-by-PATCHAIP property would still result in the same error.

    In short, the problem just remove "PATCHAIP = 1" to your script.

  • Error #1069: Property not found unloadAndStop on flash.display.Loader

    Hey all,.

    I have inhareted a flex application that was built in (I think) flex 3.x.  I am currently using Flash builder 4 and set the compiler settings to use flex 3.5.  as soon as I have for rund or debug the application, I get the following error:

    ReferenceError: Error #1069: property not found on flash.display.Loader unloadAndStop and there is no default value.

    to MethodInfo - 7)

    service /http://adobe.com/AS3/2006/builtin: apply)

    to SetIntervalTimer / onTimer)

    to::Timer/_timerDispatch() flash.utils

    to::Timer/tick() flash.utils

    I don't know what is the cause, the only thing I can think of at this point is that the app was built with a verson SDK before 3.5 and because I can't choose TI 3.5 throw this error. Can anyone confirm this or give me some advice on this.

    Thanks a ton.

    default project 3.x to assume the Flash Player 9, which did not have

    unloadAndStop on the charger.  Another code that you are running is assuming that player

    10. you want to either demote this code to take the Player 9, or set

    -target-Player = 10 on the compiler options.

  • TFLN startup error: class 'net.rim.blackberry.api.homescreen.HomeScreen' not found

    I am beta testing my app and it works fine for me in all simulators and a 9530 Storm. But one of my beta testers reported the app doesn't launch and gets the error:

    TFLN startup error: class 'net.rim.blackberry.api.homescreen.HomeScreen' not found

    I can't imagine how that could happen. Any ideas? Thanks in advance.

    DentateGyrus wrote:
    The user's phone is "BOLD" with the OS update for it. He didn't give me a version number, but I guess than 4.6. It was compiled in 4.7, but works perfectly well in the "BOLD" Simulator.

    An application built in version 4.7 is not compatible on the 4.6 version.  Please refer to the following.

    What is - an appropriate version of the BlackBerry JDE
    Article number: DB-00537

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800901/What_Is_-_Appr...

  • Get FL.exe - Entry Point not found 'point of entry procedure for NtAlpcSendWaitReceivePort not found in the dynamic link library ntdll.dll' error at boot fruity loops.

    Original title: ntdll.dll error at boot fruity loops.

    get FL.exe - Entry Point not found 'point of entry procedure for NtAlpcSendWaitReceivePort not found in the dynamic link library ntdll.dll' error when I try to start fruity loops after installing Kies from samsung for the new phone. How can I fix this error? Help, please. Thanks in advance! :)

    Hello
    I suggest you contact support FL. I couldn't find all of the resources for this program.
    Eddie B.

  • Error (10,47): EntryFlowPageCO not found in the oracle.apps.ap.oie.entry class.

    Hi all

    I extended a CO named IndusFinalReviewPageCOXX and I got the following error.

    Error (10,47): EntryFlowPageCO not found in the class oracle.apps.ap.oie.entry.summary.webui.FinalReviewPageCO in the indus.oracle.apps.ap.oie.entry.summary.webui.IndusFinalReviewPageCOXX class.


    I already drag the EntryFlowPageCO class file in the path myclasses\oracle\apps\ap\oie\entry\summary\webui
    and import the file. but the error remains the same... After that, I compile the EntryFlowPageCO class file and found a CO EntryFlowPageCO imports more. I drag the class of this CO also file in the appropriate path... But still the same error.

    Please give me the solution as soon as POSSIBLE.

    Thank you
    Amit Jaitly

    Amit,

    In the standard central, you can check this controller as entryflowpageco is not under myclasses\oracle\apps\ap\oie\entry\summary\webui.

    Its under oracle/apps/ap/goose/entry/webui put the same under this directory structure.

    Kind regards
    GYAN

  • When I start or restart my computer, I get the following message on my desk: error: IM32FAX. DIL not found. What is this and how can I fix it?

    Error: IM32FAX. DIL not found

    Probably a problem with your lexmark all in one printer software/drivers.
    updated all the drivers recently?

  • Get the error message "connection Wireless not found" after re-installation of Windows vista

    Original title: I reinstalled just the OS (Vista) on a Dell laptop and I get a message saying that not found wireless

    I'm rebvuilding a laptop Dell Inspiron 1525 using the original disks. When I try to connect to the internet, I get a message saying that there is no responsible wireless device.

    Hello

     
    Update the network drivers and check if the problem persists.
     
     
    Hope that helps.
  • Fatal error. Object was not found.

    Hello

    I built aninstaller package that includes:

    3 x .exe

    LabVIEW2009 Dev Environment

    VISA Runtime Environment

    NOR-DAQmx

    When I try to run the Setup program (from the local hard disk) I get the following error, any ideas anyone?

    At soon inadvance, Alec

    .\Distribution.cpp(320): IInstallerError 10002
    Fatal error. Object was not found.
    class CPart object lookup by ProductCode cannot find the object {9A832E3A-8676-41CC-A945-9C6827D00B4C}

    I was building the installer directly on a network drive. If you create the installer on site and then copy it to a network drive, it works fine.

  • I get the message BDUIsui.dll not found

    original title: Dll not found

    When I start my laptop (Windows Vista Ultimate) I get the message BDUIsui.dll not found (specific module could not be found) is that important?

    Hello

    Google who provides virtually no information that suggests it might be the malicious program or a start remains for her entry search

    Download update and scan with the free version of malwarebytes anti-malware

    http://www.Malwarebytes.org/MBAM.php

    You can also download and run rkill to stop the process of problem before you download and scan with malwarebytes

    http://www.bleepingcomputer.com/download/anti-virus/rkill

    If it does not remove the problem and or work correctly in normal mode do work above in safe mode with networking

    Windows Vista

    Using the F8 method:

    1. Restart your computer.
    2. When the computer starts, you will see your computer hardware are listed. When you see this information begins to tap theF8 key repeatedly until you are presented with theBoot Options Advanced Windows Vista.
    3. Select the Safe Mode with networking with the arrow keys.
    4. Then press enter on your keyboard to start mode without failure of Vista.
    5. To start Windows, you'll be a typical logon screen. Connect to your computer and Vista goes into safe mode.
    6. Do whatever tasks you need and when you are done, reboot to return to normal mode.

    If the error persists after scanning use this program to out startup

    This utility, which has a knowledge of auto-starting locations of any startup monitor, shows you what programs configured to run at system startup or login and that the entries in the order of processing windows. These programs include those in your startup folder, Run, RunOnce, and other registry keys. You can configure Autoruns to show other locations, including Explorer shell, toolbar extensions, helper objects to the browser, Winlogon notifications, auto and many start-up services even more. Autoruns goes way beyond the MSConfig utility bundled with Windows Me and XP.

    http://TechNet.Microsoft.com/en-us/sysinternals/bb963902

  • Error message 'setenv.ini' not found during installation

    I want to install the XP Pro version of the cd but I get the error message "setenv.ini" not found

    Hello

    This occurs if you install Windows from the Microsoft or Toshiba Recovery disk?
    In addition, it would be interesting to know what laptop you have.

    The disc is maybe scratchy check it!

  • Error - backup file is not found or is not the file you requested.

    Original title: restoration of Windows XP utility gives "file not found error.

    Hello
    I have Windows XP SP3 on my system. I tried to restore my backup file I had created a few months back. and I get the following error:
    "Backup file is not found or is not the file you requested.
    even though I am pointing to the correct file.

    It is possible (although I'm not sure) can I have left my backup file a different location for a more current. However, in the Restore Wizard, I'm still that it points to the current file.

    I followed the instructions of Dena in the following post:
    http://answers.Microsoft.com/en-us/Windows/Forum/windows_xp-system/cannot-restore-files-from-computer-backup-on/4c3ac6eb-c8f5-4DB9-BA56-e158e057f828

    However, it does not help. When I try to catalog them by following the steps, an hourglass appears, but there is no algorithmic activity event. So if I move my mouse even slightly, the hourglass disappears and is replaced by the pointer. Then when I try to work with the backup file, I get the same error as above.

    Please help me with this restoration! There is a huge amount of data which suddenly went 'pfoosh' one morning. people say we should have backups for buffering against these events, but a pity that my backup doesn't even work! Help, please! I would really appreciate it.

    Thank you

    Hello

    ·         You receive a specific error with the error code: "the backup file is not found or is not the file you requested"?

    ·         Is the backup stored locally or on an external drive?

    You try to run chkdsk on the drive that contains the backup. Later, check to see if the problem persists.

    How to perform disk error checking in Windows XP

    Hope the helps of information. Please post back and we do know.

    Concerning
    Joel S
    Microsoft Answers Support Engineer

Maybe you are looking for

  • Have the URL to display in the toolbar by default

    When I start Firefox, the address bar is empty. How can I go back to have the spectacle of the default URLS for all pages in the address bar? Kind regardsChuck bobo

  • What is the best stick selfie to use with the iPhone 6?

    I am looking to buy a stick of selfie for my vacation, and I was hoping you all could tell me more reliable options you use or you know.  Thank you.

  • Pavilion 15ab032tx: USB driver for HP pavilion 15ab032tx

    Hello... I recently installed Windows7 in dual boot with pre-installed Windows 8.1. But Windows7 doesn't read my usb devices (thumb drives, phones etc.). I am looking for a suitable place download the complete driver sets for each thing, but unable t

  • The dvd error message Vhs conversion

    I have a program to convert your own Vhs into dvd movies when I use it I get an error message something about the ip address of my computer, I called microsoft and my local far servise that no chance, the name of the program is that Plextor ConvertX

  • 49 err 47803b 2

    We have a range of printers hp laserjet 2055dn display 40 4780b 2 Err... Turn then, in the face Panel.  This allowed a single print page and then returns the message.  We then tried to replace the printer with two like models and they both give the s