access the value in the document class

Hello I am trying to access a value in the document class. but I can't make it work.

what I have is:

can someone tell me how to access the value of myArray?

Bomberman.As:

package {}

import flash.display.MovieClip;

public class bomberman extends MovieClip {}

public var myArray:Array = []; trying to access this value

public void bomberman() {}

init();

trace (document.docClass);

}

private void init() {}

var square: Array = [];

for (var i: Number = 0; i < 11; i ++) {}

for (var j: Number = 0; j < 11; j ++) {}

var temp: grassSquare;

If (i == 0 |) I == 10) {}

Temp = new grassSquare (i * 50, j * 40);

addChild (temp);

Square.push (temp);

} Else if (i %2! = 0) {}

If (j == 0 | j == 10) {}

Temp = new grassSquare (i * 50, j * 40);

addChild (temp);

Square.push (temp);

myArray.push (false);

} else {}

myArray.push (true);

}

} else {}

If (j %2 == 0) {}

Temp = new grassSquare (i * 50, j * 40);

addChild (temp);

Square.push (temp);

myArray.push (false);

} else {}

myArray.push (true);

}

}

}

}

}

}

}

Bomberman.fla:

import flash.events.KeyboardEvent

var User1:Player1 = new Player1;

stage.addEventListener (KeyboardEvent.KEY_DOWN, User1.fl_SetKeyPressed);

User1.x = 75;

User1.y = 60;

addChild (User1);

Player1.as:

package {}

import flash.display.MovieClip;

import flash.events.Event;

import flash.events.KeyboardEvent

import flash.ui.Keyboard

SerializableAttribute public class extends MovieClip {Player1

private var upPressed:Boolean = false;

private var downPressed:Boolean = false;

private var leftPressed:Boolean = false;

private var rightPressed:Boolean = false;

private var currentSquare:uint = 12;

public void Player1() {}

this.addEventListener (Event.ENTER_FRAME, fl_MoveInDirectionOfKey);

stage.addEventListener (KeyboardEvent.KEY_DOWN, fl_SetKeyPressed);

}

public void fl_MoveInDirectionOfKey(event:Event)

{

If (upPressed & & this.y > = 100 /* & & document.myArray [currentSquare-1] * /)

{

This.y-= 40;

upPressed = false;

currentSquare-= 1;

}

If (downPressed & & this.y < = 340 / * & & this.myArray [currentSquare + 1] * /)

{

This.y = 40;

downPressed = false;

currentSquare += 1;

}

If (leftPressed & & this.x > = 125 / * & & /*this.myArray[currentSquare-11]*/)

{

This.x-= 50;

leftPressed = false;

currentSquare = 11;

}

If (rightPressed & & this.x < = 425 / * & & /*this.myArray[currentSquare+11]*/)

{

This.x += 50;

rightPressed = false;

currentSquare += 11;

}

trace (currentSquare);

}

public void fl_SetKeyPressed(event:KeyboardEvent):void

{

switch (event.keyCode)

{

case Keyboard.UP:

{

upPressed = true;

break;

}

case Keyboard.DOWN:

{

downPressed = true;

break;

}

case Keyboard.LEFT:

{

leftPressed = true;

break;

}

case Keyboard.RIGHT:

{

rightPressed = true;

break;

}

}

}

}

}

any class that is added to your list of display:

MovieClip (root) .myArray

Tags: Adobe Animate

Similar Questions

  • Code moves the timeline to the document class Error 1067

    Hey dudes encoder that I need help on some actionscript 3.

    Im trying to move a part of the timeline code in the document class. Here is the code to the timeline:

    Import Memory.MemoryGame;

    Add memory game

    var memoryGame:MemoryGame = new MemoryGame (this, "settings.xml");

    Here is my attempt to move in the Document class:

    Import Memory.MemoryGame;

    -----

    SerializableAttribute public class MemoryGame extends Sprite

    {

    private var memoryGame:MemoryGame;

    public void init(e:Event_=_null):void

    {

    memoryGame = new MemoryGame (this, "settings.xml");

    addChild (MemoryGame);

    }

    Then I get the error: ActionScript Error #1067: Implicit coercion of a value of type to a type unrelated flash.display.DisplayObject class

    Please help guys :-(

    No, I checked just because you have dc.addChild (this); which is meaningless, unless there is an object of class MemoryGame in your library.  You can delete that.

    change

    public void MemoryGame (dc:DisplayObjectContainer, xmlPath:String)

    {

    Save the params

    This.dc = dc;

    Add to the form

    dc.addChild (this);

    var r: Shape = new Shape();

    r.graphics.beginFill (0x000000);

    r.graphics.drawRect (0,0,800,500);

    r.graphics.endFill ();

    addChild (r);

    load the xml file

    loader = new BulkLoader ("memoryGame");

    loader.addEventListener (BulkProgressEvent.COMPLETE, LoaderComplete);

    loader.addEventListener (BulkLoader.ERROR, LoaderError, false, 0, true);

    Loader.Add (xmlPath, {id: "xmldata"});

    Loader.Start ();

    Add preloader

    g_preloader_back = new Shape();

    g_preloader_back. Graphics.beginFill (0x000000);

    g_preloader_back. Graphics.drawRect (0, 0, 200, 5);

    g_preloader_back. Graphics.endFill ();

    g_preloader_back.x = stage.stageWidth/2 - g_preloader_back.width / 2;

    g_preloader_back.y = stage.stageHeight/2 - g_preloader_back.height / 2;

    addChild (g_preloader_back);

    g_preloader_bar = new Shape();

    g_preloader_bar. Graphics.beginFill (0xFFFFFF);

    g_preloader_bar. Graphics.drawRect (0, 0, 196, 3);

    g_preloader_bar.y = stage.stageHeight/2 - g_preloader_bar.height / 2;

    addChild (g_preloader_bar);

    g_preloader_text = new QuickText (g_preloader_back.x, g_preloader_back.y + 10, 'Loading XML...', 10, 0, false, false, false, null);

    addChild (g_preloader_text);

    UpdatePreloader (null);

    Add the sound Manager

    soundManager = new KSGSound();

    }

    TO

    public void MemoryGame()

    {

    Save the params

    If you use "this.dc" anywhere else, replace it with 'this '.

    This.dc = dc;

    Add to the form

    dc.addChild (this);

    var r: Shape = new Shape();

    r.graphics.beginFill (0x000000);

    r.graphics.drawRect (0,0,800,500);

    r.graphics.endFill ();

    addChild (r);

    load the xml file

    var xmlPath:String = "settings.xml";

    loader = new BulkLoader ("memoryGame");

    loader.addEventListener (BulkProgressEvent.COMPLETE, LoaderComplete);

    loader.addEventListener (BulkLoader.ERROR, LoaderError, false, 0, true);

    Loader.Add (xmlPath, {id: "xmldata"});

    Loader.Start ();

    Add preloader

    g_preloader_back = new Shape();

    g_preloader_back. Graphics.beginFill (0x000000);

    g_preloader_back. Graphics.drawRect (0, 0, 200, 5);

    g_preloader_back. Graphics.endFill ();

    g_preloader_back.x = stage.stageWidth/2 - g_preloader_back.width / 2;

    g_preloader_back.y = stage.stageHeight/2 - g_preloader_back.height / 2;

    addChild (g_preloader_back);

    g_preloader_bar = new Shape();

    g_preloader_bar. Graphics.beginFill (0xFFFFFF);

    g_preloader_bar. Graphics.drawRect (0, 0, 196, 3);

    g_preloader_bar.y = stage.stageHeight/2 - g_preloader_bar.height / 2;

    addChild (g_preloader_bar);

    g_preloader_text = new QuickText (g_preloader_back.x, g_preloader_back.y + 10, 'Loading XML...', 10, 0, false, false, false, null);

    addChild (g_preloader_text);

    UpdatePreloader (null);

    Add the sound Manager

    soundManager = new KSGSound();

    }

  • access the document object in the framework

    access the document object in the framework
    ------------------------------------------------
    Hi, MVP!

    There are 2 frames, frame1 and frame2, in my web page. I want to access the document using vb frame1 object and the web browser. How can I write codes front right to do?

    Thank you

    Hi Stanley.K,

    Your question of Windows is more complex than what is generally answered in the Microsoft Answers forums, since it relates to coding in Visual Basic Application Script. It should be better in Visual Basic on MSDN Forums.

    Please post your question in the MSDN Forums by visiting the following link:

    http://social.msdn.Microsoft.com/forums/en-us/vbgeneral/threads

  • Windows Explorer (Vista) hangs when I try to access the Documents folder on a network computer running Windows 7

    Simply run the Windows Explorer on my Vista (desktop computer) machine and try to view or otherwise access My Documents directory on my Windows 7 computer crashes Windows Explorer (computers are connected at home).  Messages event viewer the following:

    Failing application Explorer.EXE, version 6.0.6002.18005, time stamp 0x49e02a1e, failed module ntdll.dll, version 6.0.6002.18327, time stamp 0x4cb74dd3, exception 0xc0000374, offset error 0x00000000000aca57, process 0xb64 id code, start the application time 0x01cc0fa1b28a295d.

    I tried several things to cure the problem without success.  My last attempt was to create a new directory on the Vista computer on the Windows 7 computer.  I then copied some files (using the Windows 7 machine) from the Documents directory on your Windows 7 computer to the new directory and was able to access it from the Vista computer.  I transferred then all the files in the Documents directory to the new directory (again on the Windows 7 computer).  Then, I deleted the Documents directory and renamed the new directory of Documents.  However, when I try to access the Documents directory on the Windows 7 computer from the Vista computer, explore crashes as before (see more top job Event Viewer).  Windows 7 computer is currently running Windows 7 Home Premium, and SP1 is installed as are all Windows updates.  I am able to access the directories music, Photos and videos on the Windows 7 computer from the Vista computer.

    Hello

     

    You can perform a scan of the SFC (System File Checker). It lists all the issues and will also retrieve all files if necessary. Follow the steps below to p Ed a SFC Scan -.

    a. click Start, click programs, on Accessoriesprincipally made, right click guestand then click run as administrator. If you are prompted for an administrator password or a confirmation, type the password, or click Allow
    b. type the following command and press ENTER:
    sfc/scannow
    A message appears indicating that "the system scan will start. Be patient because the scan can take some time.
    c. If all files require a SFC replace will replace them. You may be asked to insert your Win7 DVD for this process to continue.
    d. If everything is correct you should, after the scan, see the following message "resource protection Windows not found any breach of integrity".
    e. once the scan is finished, close the command prompt window, restart the computer and check.

    See the link for further directions on scan SFC - below
    http://support.Microsoft.com/kb/929833

    I hope this helps.

  • Need to access the 'Documents and Settings' folder in Windows 7

    I am importing an ArcMAP GIS project to my new Windows 7 computer (the project was launched on Windows XP).  Because the files in this project were initially located in the subdirectories of the "Documents and Settings" folder, map search these files in this folder.  So, I need to access this folder if I put the files in the location that arcmap is expected to make them, or that I inform manually map the new location, one at a time, hundreds and hundreds of files.  Is there a way I can access the "Documents and Settings" folder to add new subdirectories and files in it?  After some research, I found the folder, but I said that I don't have authority (even as an administrator) to access and modify the content of the folder.  Thank you

    I am importing an ArcMAP GIS project to my new Windows 7 computer (the project was launched on Windows XP).  Because the files in this project were initially located in the subdirectories of the "Documents and Settings" folder, map search these files in this folder.  So, I need to access this folder if I put the files in the location that arcmap is expected to make them, or that I inform manually map the new location, one at a time, hundreds and hundreds of files.  Is there a way I can access the "Documents and Settings" folder to add new subdirectories and files in it?  After some research, I found the folder, but I said that I don't have authority (even as an administrator) to access and modify the content of the folder.  Thank you

    Hey ITromble

    read the below information about junction points even through it was written on vista

    http://www.Svrops.com/Svrops/articles/jpoints.htm

    Old path

    New path

    \Documents and Settings

    \Users

    Here is the vista forums

    link below is in Forum windows 7

    http://answers.Microsoft.com/en-us/Windows/default.aspx#tab=2

    Walter, the time zone traveller

  • Can extend us the document class with a custom flash as3 class?

    Hello
    Can extend us the document class with a custom flash as3 class?

    Thank you
    Mallek

    Try:

    amishap67776642 wrote:

    package

    {

    public class accessories extends ScreenBase

    {

    public void accessories()

    {

    Super();

    addEventListener (Event.ADDED_TO_STAGE, onAddedTostageHandler)

    }

    private void onAddedTostageHandler(e:Event):void

    {

    Super.init ();

    }

    }

    }

    / * class ScreenBase * /.

    package

    {

    SerializableAttribute public class extends MovieClip ScreenBase

    {

    public void ScreenBase)

    {

    Super();

    }

    public void init (): void

    {

    MovieClip (that).tutorialBox_mc.visible = true;

    }

    }

    }

  • Got "the page you are trying to access is not valid." When trying to access the document

    We have an EchoSign document already sent to the clouds to Adobe via API v20, after successful sending that get the URL to access the document. And in our application that is a cluster with two application servers, say a server and Server B and send the document to Adobe via the server. Now, when you try to open the URL of the document from Server A, it is well; but when you try to open the URL of the server B, it reports that "the page you are trying to access is not valid.". Any idea on this? For Server A and Server B, the URL is the same, is not why this happens.

    Hello Usman,

    We have already solved the problem. That's the problem on our side. :-)

    Thank you

    Qing

  • I bought the creative cloud for students and cannot access the document cloud.

    Hello.  I bought the creative cloud for students and cannot access the document cloud.  I thought that it was part of the overall agreement, but it just says my trial has expired and does not allow me to do something.  My payments were made.  The only reason why I

    Your subscription to cloud shows correctly on your account page?

    If you have more than one email, you will be sure that you use the right Adobe ID?

    https://www.adobe.com/account.html for subscriptions on your page from Adobe

    If Yes

    Some general information for a subscription of cloud

    Cloud programs don't use serial... numbers you, connect you to your cloud account paying to download & install & activate... you may need to sign out of the cloud and restart your computer and log into the cloud for things to work

    Sign out of your account of cloud... Restart your computer... Connect to your paid account of cloud

    -Connect using http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html

    -http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html

    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html

    -http://helpx.adobe.com/creative-suite/kb/trial--1-launch.html

    -ID help https://helpx.adobe.com/contact.html?step=ZNA_id-signing_stillNeedHelp

    -http://helpx.adobe.com/creative-cloud/kb/license-this-software.html

    If no

    This is an open forum, Adobe support... you need Adobe personnel to help

    Adobe contact information - http://helpx.adobe.com/contact.html

    -Select your product and what you need help with

    -Click on the blue box "still need help? Contact us. "

  • class does not not with the document class

    I created classes that is available to my level. So level 1 includes a table like:

      floor1[0] = [2,1,1,1,1,1,2];
      floor1
    [1] = [1,1,1,1,1,1,1];
      floor1
    [2] = [1,1,1,2,1,1,1];
      floor1
    [3] = [1,1,1,1,1,1,1];
      floor1
    [4] = [1,1,1,2,1,1,1];
      floor1
    [5] = [1,1,1,1,1,1,1];
      floor1
    [6] = [2,1,1,1,1,1,2];

    And level 2 would contain a different as configuration:

    Floor2 [0] = [1,1,1,3,1,1,1];
    floor2[1] = [1,2,1,3,1,2,1];
    floor2[2] = [1,1,1,3,1,1,1];
    floor2[3] = [1,1,1,2,1,1,1];
    floor2[4] = [1,1,1,3,1,1,1];
    floor2[5] = [1,2,1,3,1,2,1];
    floor2[6] = [1,1,1,3,1,1,1];

    Here's my problem. These classes are not connect with my document class. My document has an empty array named createFloor which will equal level 1 first. Once this level is completed, it will be equal to floor2 and so on. The code is below:

    for (var y = 0; Y < createFloor.length;. Y++)

    {

    for (var X:int = 0; X < createFloor [Y] .length; X++)

    {

    var cell: MovieClip = new Tile (X, Y);

    cell.gotoAndStop(createFloor[Y][X]);

    Cell.x = ((X-Y) * tileh) 365;

    Cell.y = ((X+Y) * tileh/2) + 70;

    addChild (cell);

    cell.addEventListener (MouseEvent.CLICK, mouse click);

    cell.addEventListener (Event.ENTER_FRAME, onGame);

    }

    }

    I don't know how to get the document classes and level to talk with each other. I tried to do the level class to extend the hand, but I fugre that had nothing to do with it. All ideas

    change your class Level1:

    package {}

    import flash.display.MovieClip;

    SerializableAttribute public class extends MovieClip {} Level1

    public var floor1:Array;

    public void Level1() {}

    Level 1 = new Array();

    LEVEL 1 [0] = [2,1,1,1,1,1,2];

    LEVEL 1 [1] = [1,1,1,1,1,1,1];

    LEVEL 1 [2] = [1,1,1,2,1,1,1];

    LEVEL 1 [3] = [1,1,1,1,1,1,1];

    LEVEL 1 [4] = [1,1,1,2,1,1,1];

    LEVEL 1 [5] = [1,1,1,1,1,1,1];

    LEVEL 1 [6] = [2,1,1,1,1,1,2];

    }

    }

    }

    until level 1 is in the same directory as your document class, in your document class you can use:

    private var level1:Level1 = new Level1();

    trace (Level1.Floor1);

  • Connecting a Flash that already has a class inside the Document class

    I'm working on this little project to demonstrate how flash works in a few friends and I'm doing a small avatar have some animation and mouse grow of the reversal and after having removed the mouse the avatar will decrease. It is believed also to be a message displayed on the avatar and clicking on the avatar, the message changes. I have the shrinkage/growth avatar thing done and his works well and I also have the message that will be displayed, but I can't seem to link the two in a single actionscript file so that both appear at the same time.

    Here are the codes:

    (i) for the avatar narrowing/culture

    package {}
    import flash.display.MovieClip;
    import flash.events.MouseEvent;
    SerializableAttribute public class U1A3_Stickman extends MovieClip {}
    private var _origXScale:Number;
    private var _origYScale:Number;
    public void U1A3_Stickman() {}
    _origXScale = This.ScaleX;
    _origYScale = This.ScaleY;
    this.addEventListener (MouseEvent.ROLL_OVER, grow);
    this.addEventListener (MouseEvent.ROLL_OUT, shrink);
    }
    private void grow(event:MouseEvent):void {}
    this.scaleX * = 1.5;
    this.scaleY * = 1.5;
    }
    private void shrink(event:MouseEvent):void {}
    this.scaleX = _origXScale;
    this.scaleY = _origYScale;
    }
    }
    }

    (II) for the message:

    package {}
    import flash.display. *;
    import flash.text. *;
    SerializableAttribute public class U1A3_HelloWorld extends MovieClip {}
    public void U1A3_HelloWorld() {}
    var myMessage:TextField = new TextField();
    var myFormat:TextFormat = new TextFormat();
    myFormat.font = "Arial";
    myFormat.size = 30;
    myFormat.bold = true;
    myFormat.color = 0xFF0000;
    myMessage.x = 100;
    myMessage.y = 50;
    myMessage.autoSize = TextFieldAutoSize.LEFT;
    myMessage.border = true;
    myMessage.defaultTextFormat = myFormat;
    myMessage.text = "What upward! \n I'm so hostage! « ;
    addChild (myMessage);
    }
    }
    }

    I tried to simply insert the document class in flash with the code of reduction/increase of avatar, but it does not work. Any help would be appreciated!

    Assuming you have three U1A3_Stickman.fla files (with the rsp as file as a document class), U1A3_HelloWorld.fla (with the rsp as file as a document class) and a main.fla in one folder. Publish the first two FLAS under swf, then use a charger in the main.fla to load both on stage.

  • Add video clips similar to the step of the Document class

    Hello

    How do you add multiple clips of video similar to the step of the Document class?

    For example, I have four clips of different movie called ball0_mc until ball3_mc.

    Also, how can I add each video clip at random points in the settings of the scene?

    I know it should be easy enough but still new for ACE all pointers would be greatly appreciated. See you soon.

    you add them by using their class name.  If they don't have a class name, give them a:

    var b0:ball0_mc = new ball0_mc();

    addChild (b0);

    B0.x = Math.Random () *(stage.stageWidth-B0.Width);

    B0.y = Math.Random () *(stage.stageHeight-Bo.Height);

    Similarly, for the other instances of the class you want to add.

  • to access the variables defined in the Document class

    I can't evaluate the values established in my document class.

    My document class: ZoneViewer.as:

    SerializableAttribute public class ZoneViewer extends Sprite {}
    private var zone_area_alpha_low:Number is. 2;
    }

    This code exists on a frame in a movieclip in my main script:

    This.zone_shape.Alpha = zone_area_alpha_low;


    How to access the valeur.2 which is declared in my class: document ZoneViewer.as? "zone_area_alpha_low" does not work.

    Solution to the problem of access to a variable value (zone_area_alpha_low) from actionscript code framework in a movieclip.

    FYI... my project file structure:

    Project_Folder/MyApplication.fla
    Project_Folder/MyApplication.swf
    Project_Folder/classes/ZoneViewer.as
    --------------------
    Document class: classes. ZoneViewer

    {classes package

    import flash.display.MovieClip;

    SerializableAttribute public class ZoneViewer extends MovieClip {}

    public static var zone_area_alpha_low:Number =. 1;
    }
    }
    --------------------
    This code exists on the first frame of my movieclip in my .fla file.

    import classes. ZoneViewer;< i="" was="" missing="" this="" import="" statement="" within="" my="">
    This.zone_shape.Alpha = ZoneViewer.zone_area_alpha_low;< this="" finally="" is="" referenced="">

    Kudos to ntbdy for the light. Is there better ways to do this?

  • access a movieclip already on scene of a class of the document class?

    Hello!

    I have a new problem... I try to access MC which are already on the scene of a void class. I found an explanation here , but I do not understand how to continue.

    There are three options in this example, for example in the first option is the main class:

    public void Main()

    {

    If (internship) init()

    of another addEventListener (Event.ADDED_TO_STAGE, init);

    }

    public void init(e:Event_=_null):void

    {

    var foo:Foo = new Foo (internship);

    }

    and the Foo:

    public void Foo(stage:Stage)

    {

    If (internship) trace ("success"); output: success

    }//

    but where do I go from here?

    You are welcome.

    PS when you use the adobe forums, please check the useful/correct, if there is.

  • Cannot access the document in word _

    while trying to open a document in word, I get this error message "the feature you are trying to use is on an unavailable network resource" when I try to load the Office home and Student 2007 disc, it will not allow not the disc must be installed. We had problems with the computer overheating and remove us all of our programs of girls in his profile, so that probably has something to do with us is not able to access the words.

    Uninstall any trial version Office you may have on your computer first.

    Word:

    http://answers.Microsoft.com/en-us/Office/default.aspx

    Office at the above link forums

    http://answers.Microsoft.com/en-us/Office/ee861096.aspx

    Word Help Forums at the link above.

    They will help you with your question Word when repost you in the Office Forums above.

    See you soon.

    Mick Murphy - Microsoft partner

  • When a program accesses the 'documents', it crashes

    OK, so here is my problem.  whenever a program (for example say 2007 Office, etc) say I'm going to insert an image. the dialog box is displayed showing the 'documents' as location. Then the program stops responding and I get a dialog box "program to quit smoking"... This also happens in my bills & esteem pro and my Chief Architect Premier program.   I can't find anything that is closely related to my question.   so I hope that there is someone who can help me with this problem.   Thank you!

    PCINFO
    Windows 7 Ultimate 64 bit
    4 GB of Ram
    (C: 450 GB)
    NVidia GeForce 9800GT graphics card
    Motherboard Asus M2N68-AM
    AMD Phenom X 4 9850 2500 MHz

    Event Viewer logs are no entries between January 12, 2012 to September 23, 2013. The logs indicate hardware problems.

    Log name: System
    Source: Microsoft-Windows-WER-SystemErrorReporting
    Date: 23/09/13 18:47:39
    Event ID: 1001
    Level: error
    Description:
    The computer was restarted after a bugcheck.  The bugcheck was: 0 x 00000124 (0xfffffa8004c798f8, 0 x 0000000000000000, 0 x 0000000000000000, 0 x 0000000000000000). A dump was saved in the: C:\Windows\Minidump\092313-24336-01.dmp. Report ID: 092313-24336-01.

    Bug Check Code 0 x 124 = bug check indicates that a fatal hardware error occurred.
    http://msdn.Microsoft.com/en-us/library/ff557321 (v = vs. 85) .aspx

    Log name: System
    Source: Microsoft-Windows-WHEA-Logger
    Date: 23/09/13 18:49:45
    Event ID: 20
    Level: error
    Description:
    A fatal hardware error occurred.
    Component: AMD Northbridge
    Source of the error: Machine Check Exception
    Error type: sync error
    Processor ID: 0
    View details of this entry contains more information.
     
        3
        0
        4
        0xb200001000020c0f
        0 x 0
        0 x 0
        2
        928

    These errors have not repeated so far but if they have a defective equipment requiring replacement. I suggest that first test RAM memory.

    Please run the Windows 7 Memory Diagnostic tool

    http://www.SevenForums.com/tutorials/715-memory-diagnostics-tool.html

    http://Windows.Microsoft.com/en-us/Windows7/diagnosing-memory-problems-on-your-computer

    You should also check the hard drives. The hard disk that contains partitions F and I have bad sectors. Please best provids of a report of chkdsk on each partition. Select Start, all programs, and accessories, right-click on command prompt, and then click Run as administrator. Type chkdsk, and then press the ENTER key and a report, stating, among other things, a summary of how disk space is used, is provided. If you want a report on a partition or one drive other than C, you need to go to this partition. To access F, where F is the required partition you type F: and press the ENTER key.

    Copies of the reports from a command prompt can be tricky. Right click and select mark. This allows to highlight the selected text, and then click on copy. You will then open Word, Notepad or similar file, right click and paste. The selected text transfers your Clipboard to open the file. You can paste directly into a response message to the majority of the forums.

    In Windows 7, you can use a command-line high;

    http://www.SevenForums.com/tutorials/783-elevated-command-prompt.html

    Regarding your C partition, please select Start, run, type cmd and press ENTER. Type "chkdsk c: /f /r" without the quotes and press ENTER. Make sure you include the spaces indicated. Enter Y when asked if you want to run chkdsk on restart the computer. Quit and then restart the computer.

    Marking bad sectors on a hard disk takes time so be patient. Delimiting does not repair a defective sector. He places pointers to the reader by saying the system not to read or write to these areas that have been damaged.

    If the number of defective sectors continued to increase after using the procedure above several times, then you should replace the disk. If an important system file is written to a bad sector, you can corrupt the registry hives and lose the entire contents of the disc.

    However if have run chkdsk you not see more new bad sectors, then the reader can work for you for years. Please provide a copy of a report of chkdsk on this partition.

    Notes on the reports of the event viewer:
    http://www.gerryscomputertips.co.UK/syserrors5.htm

Maybe you are looking for

  • HP LaserJet: Conclusion Date of technical through manual/sheet production

    Hey guys. Trying to discern the manufacturing date for different models of HP Laserjet and Color Laserjet printers by just the model number. HP customer support told me to check the sheets which I assume are in the PDF version of the user manual. I d

  • what application I have to support ilj file to windows movie maker

    Hello I have a Honestech 3.0SE video to the dvd converter that I transferred my old vhs home movies to my lap top. I have a Toshiba windows 7 with movie maker. I want to edit movies in my movie maker but it does not recognize the file type which is a

  • ListView problem: scrolling non-stop

    Hello friends, I get some problem with ListView in ScrollView ListView doesn't stop scrolling. I want to put some of the views (for example, Label, textArea Image) in the vertical stack layout container & add a list at the end of the container, so th

  • How to clone a T400 using Acronis image

    I just received a shipment of 25 T - 400 ThinkPads (Vista Business) and have created a master image that contains all applications and settings, I want and I want to take an image of the HARD drive and clone it to the other 24 portable. I tried the '

  • 60 d is not supported by Camera Raw and I can't update!

    When I try to open an CR2 file in Photoshop CS5, I get this message:"Could not complete your request because the file appears to be a model of camera that is not taken care of by the installed version of Camera Raw.Please visit the Camera Raw help do