problem with variable/table setting

Hello

in a flash model, I found several buttons with almost the same action script code. When you press the button a popup window with different text (for each button a single text).

the following code in the code section, buttons, only the last two codelines are different for each button.

(release)
{
_root.scrHEIGHT = 200;
_root.scroller.scroller.gotoAndStop (2);
_root.scroller._x = 100;
_root.scroller._y = 90;
_root. TM_title = "Info Box";
_root. READ = 22;
}

so, I think that the entry of the single text for each button is managed in the last line '_root '. READ = 22 ".

I also found the parts of text of belonging to the library. now, my problem is that I don't know where the connection is defined between the text and the variable READ/table. in this case, the connection is 22, but I find all well in the part of text or the property of the button when the connection is set to 22. I'm using flash cs4. anyone could help me?

Thank you very much

Pascal

You said that you were able to locate the text elements in the library.  What about them implies numbers, you see?  Right click on them and examine their properties and Assembly.

Also, what do you find in the _root.scroller.scroller framework 2?

Tags: Adobe Animate

Similar Questions

  • Problems with variable/table length

    Yes, me again.

    Well, everything seems to work in this script I have.  In this regard, the vmsStillOn.length should return the number of slot machines tension on a host.

    This seems to work great until there is only 1 host on the computer.    Here's what happens: if I have 2 virtual machines on a host, length returns the form 2.  If I have a virtual machine turn off, the length does not at all appear and I don't know why.   I'm sure there is a better way to make a counter, but that's what I have so far working with.  Thank you HERE!

    {}

    Start-Sleep - #Wait 15 seconds, 15 seconds and check again!

    $poweredOn = $FALSE

    #Start - Sleep - seconds 10

    {foreach ($machine in $hosts)

    SE connect-VIServer-server $machine - user $user-password $pass

    {color: #ff0000} $vmsStillOn = Get-VMHost | Get - VM | where {$_.} PowerState - don't "PoweredOff"}

    Disconnect-VIServer-confirm: $FALSE

    Write-Host 'Is number of virtual machines' $vmsStillOn.length

    If ($vmsStillOn.length & gt; 0) {}

    $poweredOn = $TRUE

    breaking

    }

    }

    } while ($poweredOn = $TRUE)

    When there is only 1 guest runs the $vmStillOn variable is not an array of VirtualMachineImpl objects, but a single object of VirtualMachineImpl.

    The length property does not exist in the VirtualMachineImpl object.

    The length is to a table.

    As a solution, you can count the number of objects VirtualMachineImpl returned (with the Measure-Object cmdlet) and use that value instead of the length property.

    Something like this for example

    do {
         Start-Sleep -Seconds 15 #Wait 15 seconds, and check again!
         $poweredOn = $FALSE
    
         #Start-Sleep -Seconds 10
         foreach ($machine in $hosts){
              Connect-VIServer -Server $machine -User $user -Password $pass
              $vmsStillOn = Get-VMHost | Get-VM | where {$_.PowerState -ne "PoweredOff"} | Measure-Object | %{$_.Count}
              Disconnect-VIServer - Confirm:$FALSE
    
              Write-Host "Number of VMs is " $vmsStillOn
              if ($vmsStillOn > 0){
                   $poweredOn = $TRUE
                   break
              }
         }
    }while($poweredOn = $TRUE)
    
  • Problem with variables not excluding search terms not

    People,

    I'm having a problem with variables, when used in topic titles.

    We produce two distinct versions of a webhelp. The text is almost exactly the same, but the product has a different name in each version. In one version, he is called FLOW; in another, it is called Service generator. We use the user-defined variables to control which name is used to identify the product, when we generate the webhelp.

    So, I have (for example), a subject that begins with the heading:

    Construction of a FLOW script

    where the text occupied by 'FLOW' is provided by a variable with two values - FLOW and Service constructor.

    So when I generate the generator using the web Service version, I put Robohelp using the Service Builder variable defined, and all contained text and the table of positions generate fine; FLOW is nowhere to be seen.

    But when I type "FLOW" in the search box, the system identifies each of the three subjects that are built as in the example above, with a topic title that contains the variable used to set the name of the product. In addition, it displays in the search results using STREAM in the title of the topic, not Service Builder (but when I open the topic, the text in the header is rendered correctly).

    In addition, the system uses the "FLOW" and not "Service Builder" in the headings found by the search, regardless of what research the term is used.

    Everyone comes through this? Nobody knows how to solve this problem, please?

    Thanks in advance,

    NA.

    What version of RoboHelp do you use?

    I use the 2015 Release version. It used to be version 11.

    In the Release version of 2015, my topic Properties dialog box looks like this:

    I think that version 11 may have introduced the possibility of having a variable in the title of the topic. If your version is older and does not seem to offer a way through the dialogue box to deal with this, I was wondering if you could fudge by manipulating the code manually. For example, I see that when I use a variable in a topic title, I end up with this:

    So I was wondering if you could add just in the bit that reads:

    < InsertVariableNameHere >

    Of course, you want to replace the text InsertVariableNameHere with the actual name of your variable.

    It can fail miserably because the process of generation of RoboHelp doesn't know how to cope. But in fact, it might work! You won't know until you try.

    And even if it fails, I may be able to offer another approach that you will overcome the problem.

    See you soon... Rick

  • execution of stored procedure in sql developer/sql more with a table setting?

    Hello

    I create a package with a procedure which has a cursor ref as output and a type as an input parameter.  Here is my definition of the package

    PACKAGE 
    -------
    CREATE OR REPLACE PACKAGE TEST
    As
      TYPE RefCursorType IS REF CURSOR;
      type intTableType is table of varchar2(50) index by binary_integer;
      
      PROCEDURE GETDATA (
              P_RECORDS OUT RefCursorType,           
               YEAR_LIST IN intTableType
      );  
    END;
    
    
    PACKAGE BODY
    -----------------------
    
    SET DEFINE OFF
    CREATE OR REPLACE PACKAGE BODY TEST
    AS 
    PROCEDURE GETDATA
    (
      P_RECORDS OUT RefCursorType,  
      YEAR_LIST IN intTableType  
    )
    AS 
    iYearList  IDTableType;
    BEGIN 
      --GET ARRAY COUNT
      IYEARLIST := IDTABLETYPE();
      IYEARLIST.EXTEND(YEAR_LIST.COUNT);
      
      --LOOP THROUGH LISTS AND POPULATE ARRAY
      FOR I IN YEAR_LIST.FIRST .. YEAR_LIST.LAST
      LOOP
      IYEARLIST(I) := IDTYPE(TO_CHAR(YEAR_LIST(I)));
      END LOOP;
      
       OPEN P_RECORDS FOR 
       SELECT CITHTML AS FORMATTED
        FROM dbTest.FORMATTED_HTML
      WHERE YEAR IN (SELECT * FROM TABLE(IYEARLIST))
      ;
      END GETDATA ;
    END TEST ;
    /
    
    

    I want to perform this procedure from the sql or sql developer more to see if it works properly.   The year field dbTest.FORMATTED_HTML is defined as varchar2 (20 bytes).  He has many years as well as text.

    I've used this in the past with simple stored procedures, but not those with a table setting

    var r refcursor;

    exec GETOLDDATA(:r,40);

    print r;

    How can I modify this to allow him to run my stored procedure?

    Thank you

    Just declare SQL, not type of PL/SQL:

    CREATE OR REPLACE

    TYPE Str50TblType

    AS THE TABLE OF THE VARCHAR2 (50)

    /

    CREATE OR REPLACE

    THE TEST PACKAGE

    IS

    GETDATA PROCEDURE)

    P_RECORDS ON SYS_REFCURSOR,

    YEAR_LIST IN Str50TblType

    );

    END;

    /

    CREATE OR REPLACE

    TEST OF PACKAGE BODY

    IS

    GETDATA PROCEDURE)

    P_RECORDS ON SYS_REFCURSOR,

    YEAR_LIST IN Str50TblType

    )

    IS

    BEGIN

    OPEN P_RECORDS

    FOR

    SELECT CITHTML AS FORMATTED

    OF dbTest.FORMATTED_HTML

    WHERE YEAR IN)

    SELECT *.

    TABLE (YEAR_LIST)

    );

    GETDATA END;

    END TEST;

    /

    SY.

  • Problem with a table

    Hello

    Sorry for my bad English.

    I have a problem with a table. I made a table with a script, but when I add a new line, this script will not work in the new lines. I know that I have something wrong, but I do not know the solution. Anyboy help me? You can see the file in http://www.frmgm.jazztel.es/duda.pdf. I am new in programming.

    I thank you very much.

    OK, now I understand... each row that you add to the table changes the somExpression for objects (so that they are unique). The repeating subform Gets a case number, but the rest of the phrase remains the same. If you do not include a number of occurrence, then the 1st appearance is supposed to... that is why only the 1st row is affected. You can build expressions so that you can derive the correct number of occurrence. The click event code would look like this:

    If (xfa.resolveNode ("Tabla1.Fila1 [" + this.parent.index + "]").) Casillaverificacion1.RawValue == '0') {}
    xfa.resolveNode ("Tabla1.Fila1 [" + this.parent.index + "]"). Casillaverificacion2.access = "readOnly";
    xfa.resolveNode ("Tabla1.Fila1 [" + this.parent.index + "]"). Casillaverificacion3.access = "readOnly";
    xfa.resolveNode ("Tabla1.Fila1 [" + this.parent.index + "]"). Casillaverificacion4.access = "readOnly";
    xfa.resolveNode ("Tabla1.Fila1 [" + this.parent.index + "]"). Boton1.presence = 'hidden ';
    } else {}
    xfa.resolveNode ("Tabla1.Fila1 [" + this.parent.index + "]"). Boton1.presence = "visible";
    xfa.resolveNode ("Tabla1.Fila1 [" + this.parent.index + "]"). Casillaverificacion1.access = "readOnly";
    xfa.resolveNode ("Tabla1.Fila1 [" + this.parent.index + "]"). Casillaverificacion2.access = "open";
    xfa.resolveNode ("Tabla1.Fila1 [" + this.parent.index + "]"). Casillaverificacion3.access = "readOnly";
    xfa.resolveNode ("Tabla1.Fila1 [" + this.parent.index + "]"). Casillaverificacion4.access = "readOnly";
    }

    You can see that the xfa.resolveNode takes a string that represents the object we want to use. The string is then built and the number of occurrence of the Fila1 subform is derived by obtaining the index number of the subform parent of the object that we clicked (this.parent.index). Occurane numbers are wrapped in [] brackets.  The rest has not changed. You will need to update your code to use this technique.

    Hope that helps

    Paul

  • Problem with create table as select (DEC)

    Hello

    We try to data cleaning of huge tables. And a customer of guise is reanme main table to the backup table. Then create a master table in select * backup table with some test.

    Now the problem with create table select, is that it creates the table without indexes and constraints. Is it possible to use the ETG (create the select table) with the same structure that he was the (all index, constriaints).

    Or any other solution to solve this problem?

    Thanks in advance

    Sweety wrote:
    Hello

    We try to data cleaning of huge tables. And a customer of guise is reanme main table to the backup table. Then create a master table in select * backup table with some test.

    Now the problem with create table select, is that it creates the table without indexes and constraints. Is it possible to use the ETG (create the select table) with the same structure that he was the (all index, constriaints).

    Or any other solution to solve this problem?

    Thanks in advance

    No, this is not possible. You need to get the manuscript of dependent object and create it manually.

  • Problem with variable declaration

    I'm developing a multiuser Flash application, using the smartfox Server 2.0, but I'll have a problem with defining/declaration of a variable/object/table and then access. I am trying to set the "curMap" (be it a variable, the matrix, the object, everything that works) within the following function, like the array returned by the server, "resObj". It works fine as long as I only call 'curMap' within this function (see you in line: r_txt.text = curMap ;)) However whenever I try to call the "curMap" on the coding of the image outside the function, it returns under the indefinite form or usually nothing.  Any ideas on how to properly / attribute this? I tried various things (such as _root, _global or setting the var "curMap" outside of the function) with no luck.

    Here is my Code:

    smartfox.onExtensionResponse = function (resObj:Object, type: String)
    {
    If (type is 'xml')
    {
    If (resObj._cmd is "getMap")
    {
    curMap = resObj.db [0];
    r_txt. Text = curMap;
    } Else if (resObj._cmd == "getSurr") {}
    surrMap = resObj.db;
    b_txt. Text = surrMap [0];
    }
    }
    }

    Thank you

    Make sure that you are trying to access this variable before it is defined.  That is to say, which resembles an asynchronous function for the code of this function will probably run AFTER the code that appears in the lines that follow the body of the function.

  • Problem with Variables shared in exe running on Windows 2000

    Anyone know if there are problems with the Variables shared on Windows 2000? I can't get the LabVIEW executables that use shared Variables to work Windows 2000 on a computer with just the runtime engine.  Everything works perfectly on XP on a machine with just the LabVIEW runtime engine installed (using LV 8.5).  Shared variables are supposed to work less than 2000.  I have attached the sample code that is based on one of the examples NOR to the Variables Shared - editor and the Subscriber - with some extra stuff for the diagnosis, I added.  On Windows 2000, you can only run one or the other exe.  It seems that as soon as the other come to the part on the diagram with the shared variable node it crashes.  Shared variables are getting written in the because if you close the editor and then run the exe subscriber it reads the latest values set properly.

    On Windows 2000 I tried with the administrator account and off the ladies of viruses, firewalls.  There may be another Windows 2000 setting that causes this problem with the two exes trying to access shared variables.  I do not have the development environment on Windows 2000 computer that the purpose of this exercise is to see if its worth using shared variables.  Windows 2000 computers remain the same in the Test and measurement world.  A research on Developer Zone does not there is no particular problem with Windows 2000.

    Any suggestion is appreciated.

    Hi André,.

    Thanks for the comments!  Your feedback will help us improve LabVIEW for our customers.  This bug has been reported to R & D (#45493), and they're currently investigating this issue.  For now, the best solution seems to be using a different operating system, as this seems to occur only in Windows 2000.  Thanks for the comments!

  • Problem with 'show tables' syntex and dashes

    I am currently working on an application that requires me to all tables in a database of output.
    The name of the database consists of the domain name (which include a dash "-") and a name I specified when creating.

    So, when I use:
    < name cfquery = "qTables" > display tables < / cfquery >
    < cfdump var = "" #qTables # "/ >"

    I get a result with the table with the title of the column names: TABLES_IN_DOMAIN-NAME_DBNAME.
    When I try to refer to this variable, SEE process only the name before (and not including) the dashboard.
    So the error I get is: "Element TABLES_IN_DOMAIN is undefined in QTABLES.

    Is there a way around this problem?
    Thank you in advance.

    You can reference the query using the notation of the structure


    #qTables ["TABLES_IN_DOMAIN-NAME_DBNAME"] [currentRow] #.

  • Problem with adf tables dynamyc region

    Hello.

    I have a problem when use ADF tables in dynamic regions. Happens if the table is inside the first task flow that is loaded (by default) in the dynamic region, recovers the data perfectly, but if the table is in a second, third and so on. flow, the task does not retrieve the data. This only happens with adf tables and graphs, if I use a form of component, for example, there is no problem.

    Any idea which can happen?

    I use Jdveloper 11.1.1.1.0

    Appreciate any ideas or help with this problem

    In iexplorer 8 gives the following error:

    Band details of page errors

    User agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)
    Date: Wednesday, December 2, 2009 16:17:48 UTC


    Message: 'null' is null or not an object
    Line: 1105
    Character: 2
    Code: 0
    URI::7001/SGLadf-ViewController-context-root/afr/partition/ie/default/opt/collection-11-r1.js http://seisbd101.dgac.cl

    Hello

    Define the scope of the bean managed for the bean that switches between the regions to more far-reaching than demand: for example, set it to viewScope or pageFlowScope. This fixes the problem

    Frank

  • The relaity hard layers while no problem with a table centering

    I'll build a Web site using tables, decided this was the best way to get a finish centered on 1024 and 800 without having to learn how to build a website that changes for the user who viewed.

    But then I hit a problem. I roll over the buttons that activate one layer show/hide, but it does not work. If I set up properly for 1024, he died in a fourth 800 and so. How to play ball with my table settings?

    -Change

    on this subject.


    -change

    on this subject.


    and this-

    on this subject.


    and see if that helps.

    --
    Murray - ICQ 71997575
    Adobe Community Expert
    (If you * MUST * write me, don't don't LAUGH when you do!)
    ==================
    http://www.dreamweavermx-templates.com - template Triage!
    http://www.projectseven.com/go - DW FAQs, tutorials & resources
    http://www.dwfaq.com - DW FAQs, tutorials & resources
    http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
    ==================

    "abdezines" wrote in message
    News:eaoosv$4EE$1@forums. Macromedia.com...
    > I am building a website using tables, decided that it was the easiest way
    > to
    > get a finish centered on 1024 and 800 without having to learn how to build
    > a
    > Web site that changes for the user who viewed.
    >
    > But then I hit a problem. I roll over the buttons that activate a
    > Show/hide layer but it does not work. If I set up properly for 1024,
    > This is
    > off in a fourth 800 and Yes. How to play ball with my table
    > settings?
    >

  • Problems with variable framerate and a specific codec

    Hi all!

    I recently downloaded the trial version of Premiere Pro, to test whether I should spend my editing software. (I used before Vegas)

    I am happy with the results I get, there are only two major questions:

    I record Gameplay, using Dxtory and codec 'PICVideo MJPEG 3 '. My PC is not a beast, but do I have to be more than enough for the tasks I want to do (running a FX9590, 980ti GTX and 16 GB of Ram).

    (1) However, my CPU is not able to maintain a constant framerate (no matter if it 30, 60 or 120, still dips down by 1 or 2 fps every few seconds)

    I also tested with Plays.TV (which is basically a worse version of shadowplay Nvidia). It records to a variable framerate as well.

    When I put the files in first pro, I notice that the sound is out of sync, after 10-15 minutes. It is not much, maybe not even for a second, but makes the useless video file. My solution was to put the videos in a tool called "hand brake" and re - encode with a constant flow. works perfectly fine, but it's literally the same as rencering 30 GB video. It takes forever.

    (2) this isn't really a problem with the first only, but I'll give it a try, maybe I'll find someone here who has experience with this: to simplify: MJPEG files are previewed first rose. No idea why, every codec I've tried so far worked. (PICVideo devs do not respond to me, even if I paid a f * cking much for their software)

    using a codec different would be an option, but I have not found one that offers the same quality/performance/file size - level yet.

    Sorry for my bad englishing, I train hard

    UPDATE: Nevermind, Morgan MJPEG fixed it...

    Body is not designed to change VFR (Variable Frame Rate) so problems... the conversion at a constant rate is the solution

    OR, use a different screenshot software and save to the CFR

    Free Open Source software http://camstudio.org/

    -best quality for use with Lagarith Lossless http://forums.adobe.com/thread/875797

  • Calc problem with fact table measure used in the bridge table model

    Hi all

    I have problems with the calculation of a measure of table done since I used it as part of a calculation in a bridge table relation.

    A table of facts, PROJECT_FACT, I had a column (PROJECT_COST) whose default aggregate is SUM. Whenever PROJECT_COST was used with any dimension, the appropriate aggregation was made at appropriate levels. But, no more. One of the relationships that project_fact is a dimension, called PROJECT.

    PROJECT_FACT contains details of employees, and every day they worked on a project. So for one day, employee, Joe, could have a PROJECT_COST $ 80 to 123 project, the next day, Joe might have $40 PROJECT_COST for the same project.

    Dimension table, PROJECT, contains details of the project.

    A new feature has been added to the software - several customers can now be charged to a PROJECT, where as before, that a single client has been charged.
    This fresh percentage collapse is in a new table - PROJECT_BRIDGE. PROJECT_BRIDGE has the project, CUSTOMER_ID, will BILL_PCT. BILL_PCT always add up to 1.

    Thus, the bridge table might look like...
    CUSTOMER_ID BILL_PCT PROJECT
    123 100.20
    123 200.30
    123 300.50
    456 400 1.00
    678 400 1.00

    Where to project 123, is a breakdown for multiple clients (. 20,.30.50.)

    Let's say in PROJECT_FACT, if you had to sum up all the PROJECT_COST for project = 123, you get $1000.


    Here are the steps I followed:

    -In the physical layer, PROJECT_FACT has a 1:M with PROJECT_BRIDGE and PROJECT_BRIDGE (a 1:M) PROJECT.
    PROJECT_FACT = > PROJECT_BRIDGE < = PROJECT

    -In the logical layer, PROJECT has a 1:M with PROJECT_FACT.
    PROJECT = > PROJECT_FACT

    -Logical fact table source is mapped to the bridge table, PROJECT_BRIDGE, so now he has several tables, it is mapped (PROJECT_FACT & PROJECT_BRIDGE). They are defined for an INTERNAL join.
    -J' created a measure of calculation, MULT_CUST_COST, using physical columns, which calculates the sum of the PROJECT_COST X the amount of the percentage in the bridge table. It looks like: $ (PROJECT_FACT. PROJECT_COST * PROJECT_BRIDGE. BILL_PCT)
    -J' put MULT_CUST_COST in the presentation layer.

    We still want the old PROJECT_COST autour until it happened gradually, it is therefore in the presentation layer as well.


    Well, I had a request with only project, MULT_CUST_COST (the new calculation) and PROJECT_COST (the original). I expect:

    PROJECT_COST MULT_CUST_COST PROJECT
    123. $1000 $1000

    I'm getting this for MULT_CUST_COST, however, for PROJECT_COST, it's triple the value (perhaps because there are quantities of 3 percent?)...

    PROJECT_COST MULT_CUST_COST PROJECT
    123 $1000 (correct) $3000 (incorrect, it's been tripled)

    If I had to watch the SQL, you should:
    SELECT SUM (PROJECT_COST),
    SUM (PROJECT_FACT. PROJECT_COST * PROJECT_BRIDGE. BILL_PCT),
    PROJECT
    Of...
    PROJECT GROUP


    PROJECT_COST used to work properly at a table of bridge of modeling.
    Any ideas on what I got wrong?

    Thank you!

    Hello

    Phew, what a long question!

    If I understand correctly, I think the problem is with your old measure of cost, or rather that combines with you a new one in the same request. If you think about it, your request as explained above will bring back 3 rows from the database, that's why your old measure of cost is multiplied. I think that if you took it out of the query, your bridge table would work properly for the only new measure?

    I would consider the migration of your historical data in the bridge table model so that you have one type of query. For historical data, each would have a single row in the bridge with a 1.0 BILL_PCT.

    Good luck

    Paul
    http://total-bi.com

  • Problem with resizing table InDesign CS5

    I have problems with resizing of tables in InDesign CS5.

    The width can be entered and a decrease, but the right height do move up nor down when you pull in the lower right corner or anywhere else on the base of the columns.

    Does anyone else have this problem?

    Is it a bug or maybe just me not understanding things correctly in the help...?

    Any contribution is appreciated if you knock out. :-)

    Document corruption is sometimes disabled by exporting for Exchange. See remove minor corruption by exporting

  • Problem with dynamic table

    That users write a lot in the text fields, the table to a different page breaks (it seems not nice) and overflows. The users cannot see the rest of the table.

    The problem seems to be the subform below. You have any ideas to prevent this, without much changing the interface?

    See you soon,.

    Edigo

    PS: I could not find the attachment button to download form... It used to be down!

    Please click here for the form

    http://www.Megaupload.com/?d=OKGA03VE

    Edigo,

    Here is the updated file for the problem with the global field.

    https://Acrobat.com/#d=gDwYFDJIa6zSQ9JAtAaXUQ

    See if the column suggessitions works according to your requirement...

    One thing is that if you enter more text in the field, the Table row / will do a page break, if it extends beyond the height of the page.

    So, if you enter a smaller length text in another field, then it appears on the first page but since the line has been "Broken Page", if you click the same field in the second row it also displays the same text. (Once you remove your mouse on this second page of field, the text disappears. But it will appear in the first page all the time. The text in this field was not "Broken Page", this is the reason for this kind of behavior).

    Hope I explained it's better for you...

    Let me know if you need help...

    Thank you

    Srini

Maybe you are looking for

  • iPhone whistling noise problem 7

    Hello. I was thinking of getting the iPhone 7, but lately, the problem of noise resulting (hiss) because I'm not going to take now. Is - this problem stems from what could be reversed? Really annoying situation. We expect an explanation from Apple.

  • Cannot find HP printer after reset printers on Air

    I hope someone here can help or has had the same problem. I recently got a new printer wireless HP Envy 5660.  Everything worked find when installing, it finds the printer on the network, and he added with the scan function.  During the last part of

  • After restoring to factory settings, my backup files have been deleted

    Hello! I have a laptop Toshiba Satellite L500. Last night I restored it to factory settings. After 20 min. a window poped up and started to install the toshiba software. I moved the window next door and I began to move my backup files to my external

  • Could not start sometimes for Satellite A100

    Hello My laptop sometimes unable to start and sound power light and cd/dvd rom light goes orange. Then I have to take batteries and start again to restart and sometimes even problem. After the tires at random, it starts perfectly and does not raise a

  • error code 80070490 Vista.

    I tried to get SP2 since the beginning of this year! System Restore does not work and nor does anything else! All of my updates succeeded EXCEPT: Update for Windows Vista (KB971029) Installation status: failed Error details: Code 80070490 Update type