Number of lines text caption

We use it for simulation of system, the type of the user through each slide simulating a system ok?

I have therefore some text captions that act as text entries in the simulation, so I have:

Adobe Bug.jpg

In my view, is quite simple to understand, thank you!

What you control, is the number of characters is presented by the variable. Just look at the properties when you insert the variable.

Which is not to solve the problem?

See you soon... Rick

Tags: Adobe Captivate

Similar Questions

  • How to control the number of lines of text below the image in the slideshow module?

    Lightroom 3.3

    How to control the number of lines of text below the image in the slideshow module?  I have an image with 36 words in the caption field which exports like two lines GOOD.!  I have another image with 57 words in the field of legend who runs the page and shows only a VERY BAD line.  With 57 words I can't do the single-line text box small enough to keep the text does not spread out of the page.

    Ideas?

    On the Mac platform and I expect similar under Windows, just hit enter or return key will not help. Instead, you will have to hit the keys Ctrl + Enter or Ctrl + return. This forces a new line. Windows may use a different modifier key. The screenshot below shows that it is possible. Unfortunately, you need to add the text via the caption or Description field in the library module.

  • Basic conditional script based on the number of lines in a text layer?

    Just received help here to write a conditional script by using the font size of a text layer. Thank you all for this.

    The next hurdle is a conditional script using the number of lines in a text layer in the differential. Far as I can tell it not the layer details which specify the number of lines. Just '\r' for a return in the idTxt descriptor. Nothing seems to stand for a soft return as far as I can tell. I'll probably have to be able to count the lines with soft and hard returns.

    Any thoughts?

    I was playing around with this a bit and here is a small script to determine the number of rows. This is based on the self in the head, that I calculated to environ.108 times the size of the font.

    #target photoshop
    app.preferences.rulerUnits = Units.POINTS;
    var doc = activeDocument
    var tL = doc.activeLayer
    var h = tL.bounds[3]-tL.bounds[1]
    var per = ((h/5)-(tL.textItem.size))/tL.textItem.size
    var num = h/(tL.textItem.size *1.108)
    
    alert(Math.round( num))
    
  • How to find the number of lines in the content of the text?

    Hi all

    I have a multi line text element. I want to know the number of lines in a text element? How can I do?

    Note that all lines end with the SHIFT + ENTER.

    Example,

    It is a

    sample.

    After the line there is a there is (SHIFT + ENTER).

    Thanks for any help.

    Whenever the user enters the shift-enter, Photoshop inserts a control [EOT] (end of text) (\x03 or \u0003) character in the string.

    Also, in order to divide the text according to multiple separators in a single call, it is necessary to use a regular expression instead of a string.

    Try replacing:

    var theArray = theText.split("\r");
    

    with:

    var theArray = theText.split(/[\u0003\r]/);
    

    BTW, you can improve performance by explicitly asking the textKey for the current object of the layer property.

    Try using:

       ref.putProperty( charIDToTypeID("Prpr"), stringIDToTypeID("textKey") );
       ref.putEnumerated( charIDToTypeID("Lyr "), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") );
    

    Instead of:

       ref.putEnumerated( charIDToTypeID("Lyr "), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") );
    

    HTH...

  • Script to determine the number of lines of text in a paragraph?

    I'm revisiting a problem I posted here last summer, thanks to all those who have offered help, but I could not sort it out.

    http://forums.Adobe.com/thread/455526?TSTART=0

    What I'm after is a 'search' function to insert in a FindChangeByList.

    Jongware suggested the following - but when inserted in my list, I can't seem to do anything - it does not take a Javascript error.

    app.findTextPreferences = NothingEnum.nothing;
    app.findTextPreferences.appliedParagraphStyle = "Callout_3";
    foundItems = app.activeDocument.findText();
    for (var i=foundItems.length-1; i>=0; i--)
    {
      if (foundItems[i].paragraphs[0].lines == 2)
        foundItems[i].paragraphs[0].appliedParagraphStyle = "Callout_2";
      if (foundItems[i].paragraphs[0].lines == 1)
        foundItems[i].paragraphs[0].appliedParagraphStyle = "Callout_1";
    }

    I regularly get a 'word' document on which I run a "FindChangeByList" that cleans and formats the text with a number of GREP/text searches.

    One of the lines of research converts a particluar to the text string to a paragraph style "Callout_3" (the most common legends).

    This style applies to paragraph NET, above and below the line, to create a block/strip of color that says text is reveresed.

    The problem I have, is that the style (due to the rules of paragraph), works well if the paragraph has x 3 lines of text.

    I have updated styles in place for any eventuality - Callout_1 (for the single line of text), Callout_2 (for x 2 lines of text) etc.

    I'm looking for is a script that can count the number of lines in the paragraph (once the "Callout_3" style has been applied) and then change the style accordingly the number of lines in each paragraph/legend.

    Any other thoughts?

    Steve

    -your script can be incorporated into a FindChangeByList .txt file?

    No, he needs to access real paragraph finds it to count the number of line of this paragraph. FindChangeByList Find/change regular strings together, and you can not search for a certain number of lines.

    -what it takes to go to the 'findStyle ('Callout_1');"reference within a"group of paragraph style"called"legends "?

    ... Nothing. Because the style can be within a group, I wrote this little function. The findStyle performs a loop on * all * paragraph styles in the document, the root and in each group and returns the first style with the name that you provide in the function call (tested!).

    So if there is a 'Callout_1' style anywhere, it should find it... Are you sure you put the name at the top of the script? I've seen in a post later that it is actually called "Callout_1line".

  • Can I limit the number of lines of text entered into a TextArea?

    Hello

    I use Flex Builder 2 to create an application that allows users to enter text in different TextAreas and eventually create a PDF file with their different text. My only problem is that I can't limit the number of lines of text used in each text box. I can limit characters by using maxChar, but this does not take into account a user entering multiple presses "return" - this does not affect the character limit, but can result in the final PDF layout (spitting the text on page 2).

    Is there a way to keep track and limit the number of lines of text in a text box (in Flex 2)?

    (Ideally I won't disable the ability for users to use the 'back' button to create several paragraphs)

    Any help would be appreciated.

    Thank you

    Ben.

    Hello

    Try this code.

    import

     

    flash.events.KeyboardEvent;

    Import flash.events.TextEvent;

    Import mx.controls.TextArea;

    public class LimitedLinesTextArea extends TextArea {}

    private var numLinesAllowed:int = 0;

    private var moreCharsAllowed:Boolean = true;

    public function LimitedLinesTextArea():void

    {

    this.addEventListener (flash.events.TextEvent.TEXT_INPUT, textInputHandler);

    }

    override protected function keyDownHandler(event:KeyboardEvent):void

    {

    if (this. textField.numLines > numLinesAllowed)

    moreCharsAllowed =

    fake;

    on the other

    moreCharsAllowed =

    true;

    Super.keyDownHandler (event);

    }

    private function textInputHandler(event:TextEvent):void

    {

    If

    (! moreCharsAllowed)

    Event.preventDefault ();

    }

    public function the value numberofLines(value:int):void

    {

    numLinesAllowed = value;

    }

    }

  • Move and organize files based on the number of lines

    Hello

    I have a directory containing files nearly 1,500, some of which are composed of 12 lines, some of which are composed of 4 lines, which are all .phy (PHYLIP) files, which can be viewed in Notepad/wordpad as text files.

    I need to execute a script which will determine the number of lines in each file and move them to the corresponding folder. The file size will not work for sorting, I've tried.

    that is, all files with 4 lines in one folder, all the files with 12 lines in another folder, any files left (so I can be sure that everything has been inspected) in the main directory.

    Can anyone help?

    Thank you

    This issue is beyond the scope of this site and must be placed on Technet or MSDN

    http://social.technet.Microsoft.com/forums/en-us/home

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

  • Number of lines of an important application

    Hello

    Database: Oracle 12 c

    I have a requirement where a request comes for a large set of data, and I want to be able to see if the dataset is larger than 'x', basically throws an exception.  The problem is a request may come to 1 million rows of data, and I want to return an error if the dataset is larger than 100 k lines in the most effective way possible.  Here is what I tried:

    With the help of xmlsequence:

    v_sql_stmt: = ' SELECT * from large_table';

    v_Cursor: = DBMS_SQL. OPEN_CURSOR;

    DBMS_SQL. PARSE (v_Cursor, v_sql_stmt, DBMS_SQL. NATIVE);

    v_refcur: = DBMS_SQL. TO_REFCURSOR (v_Cursor);

    SELECT count (*) in the table v_count (xmlsequence (v_refcur));

    It made me a specific number of lines, but the performance was horrible.

    With the help of County:

    v_Cursor: = DBMS_SQL. OPEN_CURSOR;

    DBMS_SQL. PARSE (v_Cursor, v_sql_stmt, DBMS_SQL. NATIVE);

    v_count_sql_stmt: = ' SELECT count (*) from (' | v_sql_stmt |) ')' ;


    It worked too, however, when you use a lot of variable binding in the v_sql_stmt, I found myself with a bunch of complex 'if' statements when you counties.


    With the help of bulkCollect in a table:


    v_sql_stmt: = ' SELECT * from large_table';

    v_Cursor: = DBMS_SQL. OPEN_CURSOR;

    DBMS_SQL. PARSE (v_Cursor, v_sql_stmt, DBMS_SQL. NATIVE);

    v_refcur: = DBMS_SQL. TO_REFCURSOR (v_Cursor);

    Get the v_refcur COLLECT in BULK IN v_typ_array;

    v_count : = dbms_sql.last_row_count;


    It worked too, but again, I'm not sure effectiveness.   There must be something that I am missing that seems like it should be done easily.  Y at - it any recommendations on how to meet the requirement?


    Thank you.

    Because we want the client to know the request was unsuccessful.  Returning data is a sign of success.
    

    So return 100 k and let them know there is more lines, but they are limited to 100 k.

    I guess I could say "WHERE ROWNUM<= 1000001'="" ,="" and="" somehow="" check="" if="" the="" resultset="" contained="" 1000001="" rows,="" then="" throw="" an="">

    No - you can't "verify the result set.

    But then, I always try to get a count at this point.

    And now we're going in circles - I added the text capitalized to what I said before:

    Oracle doesn't know how many rows a query will return to what it executes the query AND RETURNS THE RESULT.

    Think about it:

    1. you have a 30-gallon trash bag

    2. the bag may contain some 'unknown' number of tennis balls

    3. you want to give to a friend ALL the balls in the bag, but ONLY if the bag within 30 bullets in it.

    4. If the bag has balls 30 or more you won't give the friend NO ball

    The ONLY way to know if there are less than 30 bullets in the bag is to count the balls.

    I can't really get any more simpler than this.

    You can either:

    A. repeat the work TWICE

    or

    B. just to give them the first 100 k lines.

    Please select A or b.

  • BI Publisher - how to display the number of lines displayed at the bottom of the table on each page

    Hello

    We are the conversion reports Actuate BEEP and not able to understand how to view "Accum.Total = < n >" at the bottom of each page. In the attached report to operate it, "Accum.Total = < n >" must be displayed at the bottom of each page where < n > is the number of lines displayed on the current page and previous page.

    For example, if there are 10 rows in the result set, if the 1st page displays 4 rows, 2nd page displays 3 rows and 3rd page is 3 lines and then Accum.Total = 4 on page 1, Accum.Total = 7 on page 2 and Accum.Total = 10 on page 3.

    Note that we use the property table "allow the lines to break Pages = False" as we do not want a specific line can be split across pages.

    I enclose a sample of report actuate, rtf, BEEP and XML report for testing file.

    Approach used so far-

    1 > I tried to put the counter in the footer, but it seems that only the fields that come directly from the IC can be used on the header/footer. No matter what form text field or variables defined in the report.

    2 > I used approach given in the link below. Using this approach, I am able to view a coded value hard at the bottom of every page (just below the table) but his does not work for the variable (in my case the counter c1).

    https://blogs.oracle.com/xmlpublisher/entry/continued

    3 > on Google, I found a few articles on the page break conditionally as display only certain numbers on a page or the page by section break but in our case, its dynamics and its number of lines to display on a page is driven by data, so I could not think of a certain condition to use in "Condition." ": If" for use as a page break.

    Thank you

    Richa

    Watch see the-Report

    http://docs.Oracle.com/CD/E28280_01/bi.1111/e22254/create_rtf_tmpl.htm#do_bf_cf

    Download the https://blogs.oracle.com/xmlpublisher/entry/continued sample

    Add

    <>

    name = "contd_footer".

    format = "99G999G999" / >

    After the field "Footer."

    If need to use a footer to display the meter then and sous-modèle with code above and call it in footer

  • Is TextArea - possible to get the number of lines?

    I was wondering if there is a way to know how many lines of text one textarea. And also, if it would be possible to watch a number of lines changes. I'm developing a component that displays a single line in a first time and then starts to develop according to the needs, as the number of written lines increases.
    Let me know if it is not sufficiently clear.

    Thanks in advance.

    Hello
    Maybe what I am going to offer you is not the answer to your question. : P, but I have the same requirement, and I got the following. :)

    I wrapped in TextArea with a StackPane, and before you add the text box in the StackPane, I added a label whose wrapText is true and related property prefWidth and text with TextArea, as below.

    this.label =new Label();
    this.label.setWrapText(true);
    this.label.prefWidthProperty().bind(this.textArea.widthProperty());
    this.label.textProperty().bind(this.textArea.textProperty());
    

    That's all! It worked for me ;)

    Here's the complete code for this new custom ;) control

    ScrollFreeTextArea textArea= new ScrollFreeTextArea();
    

    And the complete class:

    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.geometry.Insets;
    import javafx.geometry.Pos;
    import javafx.scene.GroupBuilder;
    import javafx.scene.control.Label;
    import javafx.scene.control.TextArea;
    import javafx.scene.layout.StackPane;
    import javafx.scene.layout.StackPaneBuilder;
    
    public class ScrollFreeTextArea extends StackPane{
    
         private Label label;
         private StackPane lblContainer ;
         private TextArea textArea;
    
         private Character NEW_LINE_CHAR = new Character((char)10);
         private final double NEW_LINE_HEIGHT = 18D;
         private final double TOP_PADDING = 3D;
         private final double BOTTOM_PADDING = 6D;
    
         public ScrollFreeTextArea(){
              super();
              configure();
         }
    
         public ScrollFreeTextArea(String text){
              super();
              configure();
              textArea.setText(text);
         }
    
         private void configure(){
              setAlignment(Pos.TOP_LEFT);
    
              this.textArea =new TextArea();
              this.textArea.setWrapText(true);
              this.textArea.getStyleClass().add("scroll-free-text-area");
    
              this.label =new Label();
              this.label.setWrapText(true);
              this.label.prefWidthProperty().bind(this.textArea.widthProperty());
              this.label.textProperty().bind(this.textArea.textProperty());
    
              this.lblContainer = StackPaneBuilder.create()
                                                        .alignment(Pos.TOP_LEFT)
                                                        .padding(new Insets(4,7,7,7))
                                                        .children(label)
                                                        .build();
              // Binding the container width to the TextArea width.
              lblContainer.maxWidthProperty().bind(textArea.widthProperty());
    
              textArea.textProperty().addListener(new ChangeListener() {
                   @Override
                   public void changed(ObservableValue paramObservableValue,     String paramT1, String value) {
                        layoutForNewLine(textArea.getText());
                   }
              });
    
              label.heightProperty().addListener(new ChangeListener() {
                   @Override
                   public void changed(ObservableValue paramObservableValue,     Number paramT1, Number paramT2) {
                        layoutForNewLine(textArea.getText());
                   }
              });
    
              getChildren().addAll(GroupBuilder.create().children(lblContainer).build(),textArea);
         }
    
         private void layoutForNewLine(String text){
              if(text!=null && text.length()>0 &&
                             ((Character)text.charAt(text.length()-1)).equals(NEW_LINE_CHAR)){
                   textArea.setPrefHeight(label.getHeight() + NEW_LINE_HEIGHT + TOP_PADDING + BOTTOM_PADDING);
                   textArea.setMinHeight(label.getHeight() + NEW_LINE_HEIGHT + TOP_PADDING + BOTTOM_PADDING);
              }else{
                   textArea.setPrefHeight(label.getHeight() + TOP_PADDING + BOTTOM_PADDING);
                   textArea.setMinHeight(label.getHeight() + TOP_PADDING + BOTTOM_PADDING);
              }
         }
    
    }
    

    I hope that you have the basic thing I'm doing here. I hope this can help you.

    Happy coding :)

    Kind regards
    SAI Pradeep Dandem.

  • [CP6] Custom text captions - no stroke or a cutting upper-left

    Hello

    I'm relatively new to Captivate.

    We try to create a set of legends of text on the brand. I have read the documentation on creating a set of 5 BMP files for the various scenarios of text caption.

    I have troed creating BMP files in Photoshop and Illustrator. However, when I import into Captivate, the line disappears or I get a cut in the upper left corner.

    Examples:

    Cutting

    cutout.gif

    No line

    nostroke.gif

    In no instance of stroke, I can see where the race expected to be, but it is simply displayed as white.

    Any help on this would be appreciated.

    Thank you!

    Your image must have a border for transparency. In this image, the rose will be transparent, and you'll have a gray border around a filling of orange.

    Try to use a color that is close to your border color. If they prevaricate, you will have a better chance of clean edges. I used just rose to illustrate what is going to be transparent, which is what color is represented in the upper-left pixel. In the example you it was gray, then all the gray has been made transparent.

  • Error - ORA-01422: exact fetch returns more than number of lines

    Hello

    I get the error when running script below. Please help me.

    /****************** ERROR ******************/

    Error report:
    ORA-01422: exact fetch returns more than number of lines
    ORA-06512: at line 71
    01422 00000 - "exact fetch returns more than number of lines."
    * Cause: Exact extraction specified number is less than the returned rows.
    * Action: Rewrite the query or change the number of rows requested



    /****************** SCRIPT ******************/

    DECLARE

    l_xml XMLTYPE: = XMLTYPE ("< LoggingInformation >
    < commandeEmplacement >
    < name > ServiceCall1 < / name >
    < StartTime > 2010-01-18T 11: 11:41.570664 - 00:00 < / StartTime >
    < EndTime > 2010-01-18T 11: 11:43.8987741 - 00:00 < / EndTime >
    < ElapsedTime > 00:00:02.3281101 < / ElapsedTime >
    < status > completed < / status >
    < ExceptionMessage > error here... < / ExceptionMessage >
    < ExceptionStackTrace > Stack Trace here... < / ExceptionStackTrace >
    < ServiceLoggingEntries >
    < item >
    < foo > 1 < / foo >
    < / ServiceInformation >
    < item >
    < foo > 2 < / foo >
    < / ServiceInformation >
    < / ServiceLoggingEntries >
    < InformationLoggingEntries >
    < ProcessInformation >
    < bar > 1 < / >
    < / ProcessInformation >
    < ProcessInformation >
    < bar > 2 < / >
    < / ProcessInformation >
    < / InformationLoggingEntries >

    < / commandeEmplacement >
    < commandeEmplacement >
    < name > ServiceCall2 < / name >
    < StartTime > 2010-01-18T 11: 11:41.570664 - 00:00 < / StartTime >
    < EndTime > 2010-01-18T 11: 11:43.8987741 - 00:00 < / EndTime >
    < ElapsedTime > 00:00:02.3281101 < / ElapsedTime >
    < status > completed < / status >
    < ExceptionMessage > error here... < / ExceptionMessage >
    < ExceptionStackTrace > Stack Trace here... < / ExceptionStackTrace >
    < ServiceLoggingEntries >
    < item >
    < foo > 3 < / foo >
    < / ServiceInformation >
    < item >
    < foo > 4 < / foo >
    < / ServiceInformation >
    < / ServiceLoggingEntries >
    < InformationLoggingEntries >
    < ProcessInformation >
    < bar > 3 < / >
    < / ProcessInformation >
    < ProcessInformation >
    < bar > < / > 4
    < / ProcessInformation >
    < / InformationLoggingEntries >
    < / commandeEmplacement >

    < commandeEmplacement >
    < name > ServiceCall3 < / name >
    < StartTime > 2010-01-18T 11: 11:41.570664 - 00:00 < / StartTime >
    < EndTime > 2010-01-18T 11: 11:43.8987741 - 00:00 < / EndTime >
    < ElapsedTime > 00:00:02.3281101 < / ElapsedTime >
    status of <>failed < / status >
    < ExceptionMessage > error here... < / ExceptionMessage >
    < ExceptionStackTrace > Stack Trace here... < / ExceptionStackTrace >
    < / commandeEmplacement >
    (< / LoggingInformation > ');

    v_txt VARCHAR2 (2000);

    BEGIN

    SELECT XMLTYPE. Extract (value (TT),'/ CommandInformation/Name/Text () '). GETSTRINGVAL()
    IN v_txt
    TABLE (XMLSEQUENCE (l_xml. Extract('/LoggingInformation/CommandInformation'))) tt;

    DBMS_OUTPUT. Put_line (v_txt);

    END;

    Select...

    means only 1 row can be returned.

    Your select returns more than one line.
    Change v_txt in a collection, define a cursor and the extraction of it or change the statement, i.e. it returns a single line.

    ---------
    Sybrand Bakker
    Senior Oracle DBA

  • Creating the text caption and selecting organize for rear...

    Hello

    I placed some text captions that I'm organizing at the front, but all I get is the option menu to align...

    Anyone experienced this?

    See you soon

    Sabine

    Not a great solution, but have found a way around, simply move the particular object upwards or downwards on the time line toured ;-)

    Really strange though! (IMO)

    See you soon

    Sabine

  • SmartView: OLAP _error (1020011): Maximum number of lines [65000] exceeded

    My client is unable to load lines in Smartview AdHoc, they receive the following error message

    OLAP _error (1020011): Maximum number of lines [65000] exceeded

    Excel version: 2007
    SmartView release: 11.1.1.3
    APS 11.1.1.3
    Essbase 11.1.1.3

    Essbase.Properties file was below the parameter / value:
    service.olap.dataQuery.grid.maxRows = 1000000

    Essbase.cfg file was below the parameter / value:
    SSPROCROWLIMIT 500000

    In the service Console Regional vendor of servers-> right click the server-> settings-> properties-> tab-> maximum number of text box lines - 65000

    Please suggest what to increase to solve this problem?

    Thanks in advance.

    ~ KK

    The number in the Regional service console must match the value in the service.olap.dataQuery.grid.maxRows parameter. Probably you have edited the file essbase.properties evil.

    At this point, I would like to change the setting in environmental assessments to the desired limit or 0 for unlimited and then restart APS.

  • Button to display invisible text captions

    Hi all!

    I'm sure there is a simple answer to my question, but since I have been looking and try things for a few days I thought going up the white flag and ask for help. I am a new user of Captivate 5.5 and advanced options, but I think I have a basic gist - just enough to get me in trouble.  So what I'm trying to accomplish:

    I have four text captions on a slide I want to allow the user to make visible by clicking a button. Most likely a transparent button placed on an image, but for now is not serious what the button looks like, just that it works. I put the button that success, it assigns a 1 to a variable named v_click (from lilybiri blog ROCKS!) and she has 5 attempts so that when the last attempt, it passes to the next slide. I wrote my screen1.JPG first two advances of actions to check the v_click variable and depends on what this number is, see the corresponding text caption. When I saw the project, the button does nothing and my legends remain invisible. I'm sure I'm missing a step somewhere but I can't seem to get my reflection process on the right track. Ideas or points in the right direction would be greatly appreciated!

    screen2.png

    Becky

    I am so sorry and once again on the tablet. You must show 4 text captions, every click must show in the sequence TC1, TC2, TC3, TC4. And to track clicks that we use the user created var v_click. The two actions are done in a single decision. When all the captions are visible and the user again clicks, a button should appear. But not sure sicelle last action is out or with the appearance of the last TC4. Decisions are executed in the order:

    Decision 1

    IF v_click is greater than 4

    THEN see the BtNext

    Decision 2

    IF v_click is equal to 4

    THEN see the TC4

    Expression v_click = v_click + 1

    Decision 3

    IF v_click is equal to 3

Maybe you are looking for

  • New update today. Now my firefox crashes whenever I use it. Help!

    Updated my firefox and now it crashes a few minutes each time I try to use it. Been using Chrome today and it works great, but my favorites are on firefox, so I would it works again. Help please!

  • Vertical scroll bar in the control table

    I use CVI 2012 and using a table control in the editor of the IUR. I started with a table containing 27 rows and 5 columns. The Panel container was large enough to display all the rows and columns, so without scroll bars have been necessary. Then I a

  • Postmaster delivery error

    When I send emails, I get the message indicating the delivery failed?

  • I have a laptop HP in which win7 was pre installed.

    HII, I have a HP Elitebook 8460p mobile in which win7-64 bit was pre installed, I tried to upgrade to win 10 (I get a notification on the bottom right to upgrade, but it always fails) So, I download win 10 on the site through the media creation tool,

  • Cannot access my C drive whn saving quicken files

    Windows 7 Home Premium operating system. Initially, I couldn't access the C drive because I got the message that I need administrator privileges.  I found the answer to fix this problem, but when I try to save my quicken, data files for the quicken d