What does the error message mean? TypeError: Error #1010: a term is undefined and has no properties.

Please can you tell me what does the following error code and what should I do to fix it.

TypeError: Error #1010: a term is undefined and has no properties.

Thank you very much

Hello

  • When you get this error?
  • How long you have been facing this problem?
  • What were the changes made before the problem occurred?

Reply back with more information, helping us to better understand the issue.

See also:

http://support.Microsoft.com/kb/555375

Tags: Windows

Similar Questions

  • This new - TypeError: Error #1010: a term is undefined and has no properties

    Hi all I know that there are several threads on this.  I have a file with three frames: frame 1 is a main menu with buttons linking to frame 2 (an English menu) or in a frame 3 (a french).

    Within each sub menu is a code that loads various external swf.  Whenever the playhead passes these submenus in frames 2 or 3, I get the following output error.

    TypeError: Error #1010: a term is undefined and has no properties.

    at LungCancer_index_fla::English_mc_14/frame1()

    or

    TypeError: Error #1010: a term is undefined and has no properties.

    at LungCancer_index_fla::French_mc_21/frame1()

    If its going to the French menu.

    I do not understand what the 14 or the _21 is, beside the French_ or English_mc

    Otherwise, the file works just fine and I'm tempted to just ignore the error but I would still like to know.

    Thanks in advance

    Here's the code for English menu if it helps.

    .......................................................

    Stop();

    main menu button

    FrenchBtn.addEventListener (MouseEvent.CLICK, gotoFr);

    homeBtn.addEventListener (MouseEvent.CLICK, gotoMainMenu);

    function gotoFr(event:MouseEvent):void

    {

    MovieClip (this.root) .gotoAndStop ("French");

    }

    function gotoMainMenu(event:MouseEvent):void

    {

    MovieClip (this.root) .gotoAndStop ("top");

    }

    CHAPTER MENU: Event listeners.

    brainCancer.addEventListener (MouseEvent.CLICK, ch1);

    medication.addEventListener (MouseEvent.CLICK, ch2);

    surgery.addEventListener (MouseEvent.CLICK, ch3);

    radiotherapy.addEventListener (MouseEvent.CLICK, ch4);

    chemotherapy.addEventListener (MouseEvent.CLICK, ch5);

    support.addEventListener (MouseEvent.CLICK, ch6);

    //----------------------------------------------

    function ch1(e:MouseEvent):void {}

    subMenu.x = - 25;

    subMenu.y = - 115;

    }

    function ch2(e:MouseEvent):void {}

    subMenu.x = - 25;

    subMenu.y = 135;

    }

    function ch3(e:MouseEvent):void {}

    subMenu.x = - 25;

    subMenu.y = 385;

    }

    function ch4(e:MouseEvent):void {}

    subMenu.x = - 25;

    subMenu.y = 635;

    }

    function ch5(e:MouseEvent):void {}

    subMenu.x = - 25;

    subMenu.y = 885;

    }

    function ch6(e:MouseEvent):void {}

    subMenu.x = - 25;

    subMenu.y = 1135;

    }

    -external SWF call.

    var Xpos:Number = - 250;

    var Ypos:Number = - 350;

    var swf:MovieClip;

    var loader: Loader = new Loader();

    var defaultSWF:URLRequest = new URLRequest("swfs/cover.swf");

    Loader.Load (defaultSWF);

    Loader.x = Xpos;

    Loader.y = Ypos;

    addChild (loader);

    Function universal BTNS

    function btnClick(event:MouseEvent):void {}

    removeChild (loader);

    var newSWFRequest:URLRequest = new URLRequest ("SWFs /" + event.target.name + ".swf");

    Loader.Load (newSWFRequest);

    Loader.x = Xpos;

    Loader.y = Ypos;

    addChild (loader);

    }

    // ------------- BTN LISTENERS ---------------------------//

    Chapter 1: what is the gliomas

    subMenu.chapter1_1.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter1_2.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter1_3.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter1_4.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter1_5.addEventListener (MouseEvent.CLICK, btnClick);

    Chapter 2: drugs

    subMenu.chapter2_1.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter2_2.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter2_3.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter2_4.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter2_5.addEventListener (MouseEvent.CLICK, btnClick);

    Chapter 3: surgery

    subMenu.chapter3_1.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter3_2_1.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter3_2_2.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter3_2_3.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter3_3.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter3_4_1.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter3_4_2.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter3_4_3.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter3_5.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter3_6_1.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter3_6_2.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter3_6_3.addEventListener (MouseEvent.CLICK, btnClick);

    Chapter 4: radiation therapy

    subMenu.chapter4_1.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter4_2_1.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter4_2_2.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter4_3.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter4_4.addEventListener (MouseEvent.CLICK, btnClick);

    Chapter 5: chemotherapy

    subMenu.chapter5_1.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter5_2_1.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter5_2_2.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter5_3.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter5_4_1.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter5_4_2.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter5_5.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter5_6.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter5_7.addEventListener (MouseEvent.CLICK, btnClick);

    Chapter 6: support

    subMenu.chapter6_1_1.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter6_1_2.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter6_1_3.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter6_2.addEventListener (MouseEvent.CLICK, btnClick);

    subMenu.chapter6_4.addEventListener (MouseEvent.CLICK, btnClick);

    Go to your settings Flash publish and select the option to enable debugging.  Then tun the file so that the errors occur again.  If lucky the error message includes a number line just after the frame number.

  • TypeError: Error #1010: a term is undefined and has no properties.

    Error:

    TypeError: Error #1010: a term is undefined and has no properties.

    at BreedingSandbox_fla::MainTimeline/frame1() [BreedingSandbox_fla. MainTimeline::frame1:12]

    Code:

    Stop();

    mainMenu.menu1_mc.mc01.alpha = 0.4;

    mainMenu.menu2_mc.mc02.alpha = 0.4;

    mainMenu.menu1_mc.pane11.pane1.alpha = 0.6;

    mainMenu.menu1_mc.pane12.pane2.alpha = 0.6;

    mainMenu.menu1_mc.pane13.pane3.alpha = 0.6;

    mainMenu.menu1_mc.pane14.pane4.alpha = 0.6;

    mainMenu.menu1_mc.pane15.pane5.alpha = 0.6;

    mainMenu.menu1_mc.pane16.pane6.alpha = 0.6;

    mainMenu.menu1_mc.pane17.pane7.alpha = 0.6;

    mainMenu.menu1_mc.pane18.pane8.alpha = 0.6;

    mainMenu.menu1_mc.pane18.pane9.alpha = 0.6;

    mainMenu.menu1_mc.pane110.pane10.alpha = 0.6;

    var btnNum:int;

    var btnNumBig:int;

    var menu1Open:Boolean = false;

    var menu2Open:Boolean = false;

    var menu3Open:Boolean = false;

    var menu4Open:Boolean = false;

    var menu5Open:Boolean = false;

    var menu6Open:Boolean = false;

    var menu7Open:Boolean = false;

    var menu8Open:Boolean = false;

    var menu9Open:Boolean = false;

    var menu10Open:Boolean = false;

    var bg:MovieClip = new MovieClip();

    bg.graphics.beginFill (0 x 999999, 1);

    bg.graphics.drawRect (0, 0, stage.stageWidth, stage.stageHeight);

    bg.graphics.endFill ();

    BG.alpha = 0;

    mainMenu.addChildAt(bg,1);

    stage.addEventListener (MouseEvent.MOUSE_OVER, overBtn);

    function overBtn(evt:MouseEvent):void

    {

    switch (evt.target)

    {

    case mainMenu.menu1_mc.btnEarth1:

    btnNumBig = 1;

    openMenuBig();

    menu1Open = true;

    closeOtherMenus();

    break;

    case mainMenu.menu1_mc.btnFlame1:

    btnNum = 2;

    openMenu();

    menu2Open = true;

    closeOtherMenus();

    break;

    case mainMenu.menu1_mc.btnWater1:

    btnNum = 3;

    openMenu();

    menu3Open = true;

    closeOtherMenus();

    break;

    case mainMenu.menu1_mc.btnPlant1:

    btnNum = 4;

    openMenu();

    menu4Open = true;

    closeOtherMenus();

    break;

    case mainMenu.menu1_mc.btnElectric1:

    btnNum = 5;

    openMenu();

    menu5Open = true;

    closeOtherMenus();

    break;

    case mainMenu.menu1_mc.btnIce1:

    btnNum = 6;

    openMenu();

    menu6Open = true;

    closeOtherMenus();

    break;

    case mainMenu.menu1_mc.btnMetal1:

    btnNum = 7;

    openMenu();

    menu7Open = true;

    closeOtherMenus();

    break;

    case mainMenu.menu1_mc.btnDark:

    btnNum = 8;

    openMenu();

    menu8Open = true;

    closeOtherMenus();

    break;

    case mainMenu.menu1_mc.btnLegend1:

    btnNum = 9;

    openMenu();

    menu9Open = true;

    closeOtherMenus();

    break;

    case mainMenu.menu1_mc.btnPure1:

    btnNum = 10;

    openMenu();

    menu10Open = true;

    closeOtherMenus();

    break;

    }

    }

    bg.addEventListener (MouseEvent.MOUSE_OVER, leaveMenu);

    function leaveMenu(evt:MouseEvent):void

    {

    If (bg.hitTestPoint (mouseX, mouseY, true))

    {

    closeMenu();

    menu1Open = false;

    menu2Open = false;

    menu3Open = false;

    menu4Open = false;

    menu5Open = false;

    menu6Open = false;

    menu7Open = false;

    menu8Open = false;

    menu9Open = false;

    menu10Open = false;

    }

    }

    function openMenuBig (): void

    {

    mainMenu.menu1_mc.tween1.tweenLeftOut2.addTarget (mainMenu.menu1_mc.getChildByName ("p ane1" + btnNumBig), 1);

    }

    function openMenu (): void

    {

    mainMenu.menu1_mc.tween1.tweenLeftOut1.addTarget (mainMenu.menu1_mc.getChildByName ("p ane1" + btnNum), 1);

    }

    function closeMenu (): void

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.getChildByName ("pa ne1" + btnNum), 1);

    }

    function closeOtherMenus (): void

    {

    If (btnNumBig == 1 & & menu2Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane12, 1);

    menu2Open = false;

    }

    If (btnNumBig == 1 & & menu3Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane13, 1);

    menu3Open = false;

    }

    If (btnNumBig == 1 & & menu4Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane14, 1);

    menu4Open = false;

    }

    If (btnNumBig == 1 & & menu5Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane15, 1);

    menu5Open = false;

    }

    If (btnNumBig == 1 & & menu6Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane16, 1);

    menu6Open = false;

    }

    If (btnNumBig == 1 & & menu7Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane17, 1);

    menu7Open = false;

    }

    If (btnNumBig == 1 & & menu8Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane18, 1);

    menu8Open = false;

    }

    If (btnNumBig == 1 & & menu9Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane19, 1);

    menu9Open = false;

    }

    If (btnNumBig == 1 & & menu10Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane110, 1);

    menu10Open = false;

    }

    If (btnNum == 2 & & menu1Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane11, 1);

    menu1Open = false;

    }

    If (btnNum == 2 & & menu3Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane13, 1);

    menu3Open = false;

    }

    If (btnNum == 2 & & menu4Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane14, 1);

    menu4Open = false;

    }

    If (btnNum == 2 & & menu5Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane15, 1);

    menu5Open = false;

    }

    If (btnNum == 2 & & menu6Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane16, 1);

    menu6Open = false;

    }

    If (btnNum == 2 & & menu7Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane17, 1);

    menu7Open = false;

    }

    If (btnNum == 2 & & menu8Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane18, 1);

    menu8Open = false;

    }

    If (btnNum == 2 & & menu9Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane19, 1);

    menu9Open = false;

    }

    If (btnNum == 2 & & menu10Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane110, 1);

    menu10Open = false;

    }

    If (btnNum == 3 & & menu1Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane11, 1);

    menu1Open = false;

    }

    If (btnNum == 3 & & menu2Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane12, 1);

    menu2Open = false;

    }

    If (btnNum == 3 & & menu4Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane14, 1);

    menu4Open = false;

    }

    If (btnNum == 3 & & menu5Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane15, 1);

    menu5Open = false;

    }

    If (btnNum == 3 & & menu6Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane16, 1);

    menu6Open = false;

    }

    If (btnNum == 3 & & menu7Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane17, 1);

    menu7Open = false;

    }

    If (btnNum == 3 & & menu8Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane18, 1);

    menu8Open = false;

    }

    If (btnNum == 3 & & menu9Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane19, 1);

    menu9Open = false;

    }

    If (btnNum == 3 & & menu10Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane110, 1);

    menu10Open = false;

    }

    If (btnNum == 4 & & menu1Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane11, 1);

    menu1Open = false;

    }

    If (btnNum == 4 & & menu2Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane12, 1);

    menu2Open = false;

    }

    If (btnNum == 4 & & menu3Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane13, 1);

    menu3Open = false;

    }

    If (btnNum == 4 & & menu5Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane15, 1);

    menu5Open = false;

    }

    If (btnNum == 4 & & menu6Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane16, 1);

    menu6Open = false;

    }

    If (btnNum == 4 & & menu7Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane17, 1);

    menu7Open = false;

    }

    If (btnNum == 4 & & menu8Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane18, 1);

    menu8Open = false;

    }

    If (btnNum == 4 & & menu9Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane19, 1);

    menu9Open = false;

    }

    If (btnNum == 4 & & menu10Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane110, 1);

    menu10Open = false;

    }

    If (btnNum == 5 & & menu1Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane11, 1);

    menu1Open = false;

    }

    If (btnNum == 5 & & menu2Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane12, 1);

    menu2Open = false;

    }

    If (btnNum == 5 & & menu3Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane13, 1);

    menu3Open = false;

    }

    If (btnNum == 5 & & menu4Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane14, 1);

    menu4Open = false;

    }

    If (btnNum == 5 & & menu6Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane16, 1);

    menu6Open = false;

    }

    If (btnNum == 5 & & menu7Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane17, 1);

    menu7Open = false;

    }

    If (btnNum == 5 & & menu8Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane18, 1);

    menu8Open = false;

    }

    If (btnNum == 5 & & menu9Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane19, 1);

    menu9Open = false;

    }

    If (btnNum == 5 & & menu10Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane110, 1);

    menu10Open = false;

    }

    If (btnNum == 6 & & menu1Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane11, 1);

    menu1Open = false;

    }

    If (btnNum == 6 & & menu2Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane12, 1);

    menu2Open = false;

    }

    If (btnNum == 6 & & menu3Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane13, 1);

    menu3Open = false;

    }

    If (btnNum == 6 & & menu4Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane14, 1);

    menu4Open = false;

    }

    If (btnNum == 6 & & menu5Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane15, 1);

    menu5Open = false;

    }

    If (btnNum == 6 & & menu7Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane17, 1);

    menu7Open = false;

    }

    If (btnNum == 6 & & menu8Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane18, 1);

    menu8Open = false;

    }

    If (btnNum == 6 & & menu9Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane19, 1);

    menu9Open = false;

    }

    If (btnNum == 6 & & menu10Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane110, 1);

    menu10Open = false;

    }

    If (btnNum == 7 & & menu1Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane11, 1);

    menu1Open = false;

    }

    If (btnNum == 7 & & menu2Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane12, 1);

    menu2Open = false;

    }

    If (btnNum == 7 & & menu3Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane13, 1);

    menu3Open = false;

    }

    If (btnNum == 7 & & menu4Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane14, 1);

    menu4Open = false;

    }

    If (btnNum == 7 & & menu5Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane15, 1);

    menu5Open = false;

    }

    If (btnNum == 7 & & menu6Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane16, 1);

    menu6Open = false;

    }

    If (btnNum == 7 & & menu8Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane18, 1);

    menu8Open = false;

    }

    If (btnNum == 7 & & menu9Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane19, 1);

    menu9Open = false;

    }

    If (btnNum == 7 & & menu10Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane110, 1);

    menu10Open = false;

    }

    If (btnNum == 8 & & menu1Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane11, 1);

    menu1Open = false;

    }

    If (btnNum == 8 & & menu2Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane12, 1);

    menu2Open = false;

    }

    If (btnNum == 8 & & menu3Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane13, 1);

    menu3Open = false;

    }

    If (btnNum == 8 & & menu4Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane14, 1);

    menu4Open = false;

    }

    If (btnNum == 8 & & menu5Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane15, 1);

    menu5Open = false;

    }

    If (btnNum == 8 & & menu6Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane16, 1);

    menu6Open = false;

    }

    If (btnNum == 8 & & menu7Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane17, 1);

    menu7Open = false;

    }

    If (btnNum == 8 & & menu9Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane19, 1);

    menu9Open = false;

    }

    If (btnNum == 8 & & menu10Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane110, 1);

    menu10Open = false;

    }

    If (btnNum == 9 & & menu1Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane11, 1);

    menu1Open = false;

    }

    If (btnNum == 9 & & menu2Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane12, 1);

    menu2Open = false;

    }

    If (btnNum == 9 & & menu3Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane13, 1);

    menu3Open = false;

    }

    If (btnNum == 9 & & menu4Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane14, 1);

    menu4Open = false;

    }

    If (btnNum == 9 & & menu5Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane15, 1);

    menu5Open = false;

    }

    If (btnNum == 9 & & menu6Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane16, 1);

    menu6Open = false;

    }

    If (btnNum == 9 & & menu7Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane17, 1);

    menu7Open = false;

    }

    If (btnNum == 9 & & menu8Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane18, 1);

    menu8Open = false;

    }

    If (btnNum == 9 & & menu10Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane110, 1);

    menu10Open = false;

    }

    If (btnNum == 10 & & menu1Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane11, 1);

    menu1Open = false;

    }

    If (btnNum == 10 & & menu2Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane12, 1);

    menu2Open = false;

    }

    If (btnNum == 10 & & menu3Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane13, 1);

    menu3Open = false;

    }

    If (btnNum == 10 & & menu4Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane14, 1);

    menu4Open = false;

    }

    If (btnNum == 10 & & menu5Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane15, 1);

    menu5Open = false;

    }

    If (btnNum == 10 & & menu6Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane16, 1);

    menu6Open = false;

    }

    If (btnNum == 10 & & menu7Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane17, 1);

    menu7Open = false;

    }

    If (btnNum == 10 & & menu8Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane18, 1);

    menu8Open = false;

    }

    If (btnNum == 10 & & menu9Open)

    {

    mainMenu.menu1_mc.tween1.tweenLeftIn1.addTarget (mainMenu.menu1_mc.pane19, 1);

    menu9Open = false;

    }

    }

    can someone help me with this error? I am trying to create a drop-down menus bar

    Please help me

    If I had to guess I would say here is line 12 and it should be changed since...

    mainMenu.menu1_mc.pane18.pane9.alpha = 0.6;

    TO

    mainMenu.menu1_mc.pane19.pane9.alpha = 0.6;

    But this assumption is based on respecting the encoding scheme by which it is surrounded

  • TypeError: Error #1010: a term is undefined and has no properties.      in Main()

    Hello world!

    I am currently working on my final year project and it's my first time using Adobe Flash.Therefore I'm looking for your kind assistance to solve my problem.

    In fact, I want my home page a link to another page with a button. The two page created using movieclip. This error "TypeError: Error #1010: a term is undefined and has no properties." " in Main() ' a pop out output.

    package

    {

    import flash.display.MovieClip;

    import flash.events.MouseEvent;

    /public class Main extends MovieClip

    {

    var mainPage:MainPage;

    var tutOne:TutOne;

    public void Main()

    {

    mainPage = new MainPage();

    tutOne = new TutOne();

    addChild (mainPage);

    mainPage.btnTutorial.addEventListener (MouseEvent.CLICK,

    onbtnTutorialClick);

    }

    int onbtnTutorialClick(event:MouseEvent):void

    {

    addChild (tutOne);

    removeChild (mainPage);

    }

    }

    }

    Why is it so? How to remove this error?

    Can someone help me please .

    It is possible that you have lack of naming or misnamed the button inside the movieclip.  Just to be sure that the main page exists at this time in your code, use a front track of this line of code... you can also check for the button in this trace...

    trace (mainPage, mainPage.btnTutorial);

  • Error #1010: A term is undefined and has no properties.

    Status display of twitter in flash via twitter with URLLoader.

    Line 394:


    Note: xml.status [num].user.statuses_count is 21, however when the flash I tried to retrieve the last State, which is number 21, it crashes with error #1010. Why he won't get the latest status? But when xml.status [num].user.statuses_count is equal to 20, it will retrieve all the 20 situation, including the latest status without error. It's very weird, I have no idea of what is happening is there any error event listener can I use to catch this type of error, so that my flash will always be operational when it happens again?


    for (var i = 0; i < xml.status [num].user.statuses_count; i ++)

    {

    post_array [i] = ContentCount;

    ContentCount ++;

    content_string += getContent (post_array [i]);

    }

    Line 450:

    private void getContent(num:Number) {}

    View all month, day and hour

    var posted: String = xml.status [num] .created_at;

    var content: String = "< font color =" #00000 ' > < a href = "+" "" http://Twitter.com/ « ' USER name "/ statutes / ' + xml.status [num] user.user + '" target = "_blank" > ' + xml.status [num] .text + ' < /a > < / fonts > < br / > < font size = "9" color = "#333333" > "+" posted the: "+ posted.substr (0, posted.length - 11) + ';' + '" of: "+ xml.status [num] .source +" < / fonts > < br / > < br / > '; »»

    Returns information

    return the content;

    }

    TypeError: Error #1010: a term is undefined and has no properties.

    at::MainClass/getContent() [C:\Users\xx\xx\xx\xx\xx\xx\xx\MainClass.as:450] fladev.twitter

    at::MainClass/displayInfo() [C:\Users\xx\xx\xx\xx\xx\xx\xx\MainClass.as:394] fladev.twitter

    at flash.events::EventDispatcher/dispatchEventFunction()

    at flash.events::EventDispatcher/dispatchEvent()

    at flash.net::URLLoader/onComplete()

    Like I said, your results can be limited to these sites. For example wordpress WHAT FEED generally send only 10 flow. The fact that you get exactly 20 RSS (0-19 = 20) tells me that Twitter is likely to limit what he sends you.

    You can always look in the API of twitter for an argument to send to twitter when you request workflows to send more then the amount of the default value.

  • Error #1010 (a term is undefined and has no properties) in a simple HTTPService via POST

    I get the #1010 error (a term is undefined and has no properties):

    to flexGraph / httpResultHandlerUserInfo)

    to flexGraph / __userInfoXML_result)

    etc.

    I deleted some parts of the code is easier to read, if you can help me. I am filling a datagrid with information from a database, according to the alias I choose in the drop-down list. I get the error when I take an alias from the drop-down list.

    < mx:Script >

    <! [CDATA]

    Import mx.collections.ArrayCollection;

    Import mx.rpc.events.FaultEvent;

    Import mx.rpc.events.ResultEvent;

    Import mx.events.DropdownEvent;

    [Bindable] private var Usersinfo: ArrayCollection collection;

    private void httpResultHandlerUserInfo(event:ResultEvent):void {}

    Usersinfo = event.result.users.user;

    }

    private void httpFaultHandlerUserInfo(event:FaultEvent):void {}

    Alert.Show ("Unable to load the information of the user", "Error");

         }

    private void chooseUserCB(event:DropdownEvent):void {}

    userInfoXML. send();

    }

    }

    []] >

    "< mx:HTTPService id ="userInfoXML"url ="http://www.mysecondplace.org/flex/userInfo.php"" "

    "result =" httpResultHandlerUserInfo (Event) "fault =" httpFaultHandlerUserInfo (event) ".

    useProxy = "false" method = "POST" >

    < mx:request xmlns = "" > < alias > {usersAliasCB. selectedItem.alias} < / alias > < / mx:request >

    < / mx:HTTPService >

    "" < mx:ComboBox id = "usersAliasCB"

    x = "10" y = "10".

    labelField = 'alias '.

    Close = "chooseUserCB (Event)" / >

    < mx:DataGrid id = 'test '.

    x = "10" y = "100".

    dataProvider = "{Usersinfo}" / >

    Here is an example of the PHP file:

    $query_user = "SELECT * WHERE = alias USERS '." $_POST ["alias"]. " » ;

    Queries are working, help me please (if I test it with a correct alias) and I don't get the Alert.show ("Unable to load the information of the user", "Error");

    I had the problem...

    what I would do is I would create a tag counter in php, as well as other tags.

    $xml = '';
    $xml .= "";
    $xml .= "";
    
    $query = "select * from usertable";
    
    while(/* records */ )
    {
         $xml .= "";
              $xml .= "".$row[0]."";//..................all other fields you need
         $xml .= "";
    }
    
    $xml .= "";
    $xml .= "".mysql_num_rows()/* like that, i forgot, hope you get it.*/."";
    $xml .= "";
    
    echo $xml;
    

    now, in flex, check the count field, then:

    if(e.result.root.count == 1)
         usersInfo  = new ArrayCollection([e.result.root.items.item]);
    else if(e.result.root.count > 1)
         usersInfo  = e.result.root.items.item;
    else
         usersInfo  = new ArrayCollection();
    

    hope that it fixes.

  • Error #1010: A term is undefined and has no properties. When he is not yet on the scene

    This is an error that I can't even explain to me why it fires, because it fires every time - that when I take like 1 or the last ship of table and it changes in some way and is not splice itself or something like that.

    So I have a doShips function:

    function doShips() {
              for (var i:int = shipArray.length - 1; i >= 0; i--) {
                        shipArray[i].moveDown() //what the code in the Ship and Ship2 class does -> only: this.y += 3
                        for (var bcount= _bulletsArray.length-1; bcount >= 0; bcount--) {
                                  //if the bullet is touching the ship
    
                                            if (shipArray[i].hitTestObject(_bulletsArray[bcount])) {
                                            //if we get here it means there`s is a collision
    
                                                      removeChild(_bulletsArray[bcount]);
                                            _bulletsArray.splice(bcount,1);
                                            removeChild(shipArray[i]);
                                            shipArray.splice(i,1);
                                  }
                        }
              }
    }
    
    

    When the FLA to debug the error comes from

     at ArrayOfShips_newG_withTurret_fla::MainTimeline/doShips()[ArrayOfShips_newG_withTurret_fla.MainTimeline::frame1:100]
    

    line 100 is

    if (shipArray[i].hitTestObject(_bulletsArray[bcount])) {
    

    prior to this, there is a player on the stage that takes balls

    //handling the bullets
    function doBullets(){
              //make a for loop to iterate all  the _bulletsArray on the screen
              for (var bcount:int = _bulletsArray.length-1; bcount>=0; bcount--) {
                        //make the bullets move Up
                        _bulletsArray[bcount].y -=20;
                        //if the bullet is beyond the screen remove from the stage and the Array
                        if(_bulletsArray[bcount].y < 0) {
                                  removeChild(_bulletsArray[bcount])
                                  _bulletsArray.splice(bcount,1);
                        }
              }
    }
    
    

    also a function to move the player to the X coordinate.

    and also a function that ships positions, but they are not important because I don't think they have anything to do with the error.

    I can show all of the code in the FLA if it will help in some way to solve this problem.

    Try using the index loops as little as possible. Use pipes for... each:

    a. they are faster

    b. they do not just depend on/pause on the removing items from tables in the middle of the iterations.

    Try this code:

    function doShips():void
    {
              for each(var ship:MovieClip in shipArray)
              {
                        Object(ship).moveDown() ;
                        for each(var bullet:MovieClip in _bulletsArray)
                        {
                                  //if the bullet is touching the ship
                                  if (ship.hitTestObject(bullet))
                                  {
                                            //if we get here it means there's is a collision
                                            removeChild(bullet);
                                            _bulletsArray.splice(_bulletsArray.indexOf(bullet), 1);
                                            removeChild(ship);
                                            shipArray.splice(shipArray.indexOf(ship), 1);
                                  }
                        }
              }
    }
    
  • What does the error code 80240016? my computer will not install updates

    What does the error code 80240016? my computer will not install updates!

    http://support.Microsoft.com/kb/957307

    Error message when you try to install the updates on the Windows Update Web site or the Microsoft Update Web site: "0 x 80240016.

    If the above does not resolve the problem:

    Windows Update Forum:

    It comes with Vista, upgrade install and activate Forum.

    You will get the best help for any problem of Update/Service Pack in the Windows Update Forum; the link below:

    http://social.answers.Microsoft.com/forums/en-us/vistawu/threads

    When you repost here, kindly include the Error Codes, and exactly what is happening when you try to update.

    In this way, you will receive the best help.

    See you soon.

    Mick Murphy - Microsoft partner

  • What does the error code 213:19?

    What does the error code 213:19

    Salvation can't,

    This error occurs when the SLStore folder has not enough permission to make the necessary changes or to update the contents of this folder.

    Please provide the information to provide assistance with this question below.

    1. what operating system do you use?

    2. which product are you trying to use?

    3. Please provide the full error message or a screenshot of the error.

    ~ UL

  • What does the error code 80070005?

    What does the error code 80070005?

    If it related to Windows updates, this could be the underlying issue: http://answers.microsoft.com/en-us/windows/forum/windows_other-windows_update/vista-error-code-80070005-cant-install-windows/7a0e2719-1353-458c-8c88-2e6bc9e8f906

    Or: http://social.technet.microsoft.com/Forums/en/itprovistasetup/thread/95edbee4-a75c-48ad-91d1-5316a96f9567

    J W Stuart: http://www.pagestart.com

  • What does the error code 1003? It appears when I want to perform an automatic update of the creative cloud.

    What does the error code 1003? It appears when I want to perform an automatic update of the creative cloud.

    Creative cloud update error

  • What does the error 100?

    What does the error 100?

    Hi RjSmithsmitty1949,

    Error 100 usually comes when the download wizard is not able to communicate with the Adobe.com site. Please follow the given ko: n_1-http://helpx.adobe.com/creative-suite/kb/troubleshoot-download-assistant.html#main_Solutio for more information.

    You can even try the download in case of other rendering problem: http://prodesigntools.com/tag/ddl .

    Please follow the very important instructions before downloading.

    Kind regards

    Romit Sinha

  • What does the error message 0 x 80070571

    Microsoft excel (Windows Home Vista) I get a msg that exel.exe disk is damaged or unstable and error msg 0 x 80070571.  When I access an excel file it says that the file is open or exist and should I utility chkdsk on the volume c.  Also this msg hh.exe corrupt disk.  I can't close an excel file as it says it works already also the foregoing... CAN SOMEONE HELP ME PLEASE!

    80070571 = the disc is damaged and unreadable.
     
    Standard hardware troubleshooting
     
     
    First to test we can the material. Material defects can appear as many software defects, that's why we need to test the material first...
     

    Follow these steps in order. Defects of memory can cause disk corruption, disk failures can cause corruption of the disk. Damaged disc causes corrupted files (which SFC may be able to fix). If you get a stop error and after return. Do not run chkdsk with faulty memory.

     
    Diagnosis of memory
    If you have not run a diagnosis of memory, please do. Click on Start - Control Panel - choose Classic view in the left pane - choose Administrative Tools - then memory diagnostic tool.
     

    S.M.A.R.T
    Start - All Programs - Accessories - right on command prompt and choose run as administrator. Type (or copy and paste by clicking in the command prompt window and choose Paste).
     
    Disk in Windows drives monitor for impending failure. The function is called S.M.A.R.T. It detects an imminent failure, 30% of the time. In a type elevated command prompt (it's a single line)
     
    WMIC PATH MSStorageDriver_FailurePredictStatus /namespace:\\root\wmi get active, predictfailure, reason List
     
    If it is on will be true, otherwise on enable in the BIOS of the computer.
     
    Predict the failure must be False if everything is ok.
     
    In Vista and later if SMART failure predicted Windows prompts the user to run the backup.
     
    Run chkdsk
    In computer all your drives right click and choose Properties, then the Tools tab, and then click check now. Check the TWO boxes and then start. Reset. This will take from one day to the next.

     
    SFC
    Check the alteration of the file by clicking on Start - All Programs - Accessories - right on command prompt and choose run as administrator. Type (or copy and paste by clicking in the command prompt window and choose Paste).
     
    sfc/scannow
     
    Heat
    Heat can lead to problems of this kind, and sudden restarts without crashing. Make sure that your fans are not clogged with dust.
     
    For memory diagnostic results
    Click on Start - Control Panel (and select Classic view in the left pane), select Administrative Tools and then Event Viewer , and then look in the event (Local) - Applications and Services - Microsoft - Windows - MemoryDiagnostic-results Viewer entered.
     
    Look for EventID is 1201 or 1101 and Source is MemoryDiagnostic-results

     
    Double-click the entry for more details on this entry.

    For results of Chkdsk

    Click on Start - Control Panel (and select Classic view in the left pane) choose Administrative Tools and then Event Viewer , and then look at the Application and the System will connect (under Windows logs) for entries.
     
    Look for EventID is 7 and Source disk
    Look for EventID is 11 and the Source disk
    Look for EventID is 50 , and the Source is disk
    Look for EventID is 51 and Source disk
    Look for EventID is 52 and Source disk
    Look for EventID 55 and Source is NTFS
    Look for EventID is 130 and Source is NTFS

    Look for EventID is 134 and Source is NTFS
    Look for EventID is 137 and Source is NTFS
    Look for EventID 1001 and Source is Autochk
    Look for EventID 1001 and Source is Winlogon
    Look for EventID 1001 and Source is WinInit
    Look for EventID 1001 and Source is Chkdsk
    Look for EventID is 26212 and Source is Chkdsk
    Look for EventID 26213 and Source is Chkdsk
    Look for EventID 26214 and Source is Chkdsk
    Double-click the entry for more details on this entry.
     
    PS 7 and 55 are auto repair codes where windows repair disk errors silently on the fly. 52 is the SMART warning.

     
    For the results of the SFC
    Start - All Programs - Accessories - right on command prompt and choose run as administrator. Type (or copy and paste by clicking in the command prompt window and choose Paste).
     
    findstr/c: "[SR] cannot" %windir%\logs\cbs\cbs.log|more "
     
    It will be able to see which files are corrupted.
     
    To see if there
     
    findstr/c: "[SR] repair" %windir%\logs\cbs\cbs.log|more

     
    There are often false positives for small text files that Windows uses like settings.ini and desktop.ini. Ignore these.
     
  • What does the Error #1090 stacktrace:null?

    Hello

    Does anyone know what means this error?

    My flex application seems well seen on a Mac with Safari or Firefox. When I checked it on a PC running Windows XP and IE, I had an alert with the error message above. Any ideas as to what is happening?

    Thank you.

    -Laxmidi

    Hello

    Error #1090 is for XML parser failure: element is incorrect. Check this page for the error codes and their meanings

    http://www.Adobe.com/LiveDocs/Flex/3/langref/runtimeErrors.html

    If you use xml in your application, make sure that it is correctly formatted.

  • What does the error 43?

    I had destjet f2280, I try to put in place, but it keeps the error 43. What this mean and how do I set up the printer on my mac? is there someone who has the same probs? is could someone please tell me what is wrong with him?

    Hello

    Where you see the 43 error during installation?

    From the beginning, after selecting the device?

    So, which version of Mac OS are you using?

    You can check it by clicking the Apple icon, then the about this Mac.

    So, if you use the original CD to install the printer, please specify which version of the Mac OS, it is intended - it should be written on the disc label.

Maybe you are looking for

  • How to slow the time-lapse video I took?

    Accidentally, I recorded a video using Time lapse video functionality.  How can I slow down the video to view it? In addition, he did not record sound when it is in Time lapse mode?

  • structure of the event

    Hi, I'm new to Labview. May I ask - is it possible to use 'match model' within the structure of the event to detect the shift? For example, if the event detects 'one', it will go in the first round, if detect 'two', it will go to the second event...

  • Wallpapers flashes a blue screen with a desktop screen

    Product: HP ENVY TouchSmart 15 t-j000 Select Edition CTO Notebook PC, model C9G48AAR, product number: C8P45AVProblem: Once connected, the screen flashes start screen randomly and does not respond to any input.Effort: We followed the instructions on t

  • A210 automatic rotation of images not

    Auto spin button does not work in the settings. No box of ck in the Accessibility tab.

  • Archive of TouchSmart HP ENVY 15-j051ea Notebook BIOS F.24

    Hello Is there anyway to get the previous version on the laptop bios? I've updated to the latest version F.43 for my TouchSmart from HP ENVY 15 - j051ea laptop and now refuses to boot from the HARD drive. Saying: there is no operating system. Is ther