Script will not apply the paragraph style

Hello

I'm new to scripting in InDesign (CS3), and I'm trying to understand why the scipt below does not apply a style in the following text file? :

< ASCII-WIN >

< ParaStyle: Heading 1 > who are we? < ParaStyle >:

For ease of reading, I have shortend the text file to just two lines.

The script that I use to open and to format the text file is:

Create a new document.

myDocument var = app.documents.add ();

Set the units of measure and the origin of the rule.

myDocument.viewPreferences.horizontalMeasurementUnits = MeasurementUnits.points;

myDocument.viewPreferences.verticalMeasurementUnits = MeasurementUnits.points;

myDocument.viewPreferences.rulerOrigin = RulerOrigin.pageOrigin;

Get a reference to the first master spread.

var myMasterSpread = myDocument.masterSpreads.item (0);

Get a reference to preferences on the margins of the first page in the Master spread.

var myMarginPreferences = myMasterSpread.pages.item (0) .marginPreferences;

Now set up the page margins and columns.

myMarginPreferences.left = 4;

myMarginPreferences.top = 70;

myMarginPreferences.right = 70;

myMarginPreferences.bottom = 78;

myMarginPreferences.columnCount = 2;

myMarginPreferences.columnGutter = 14;

The margins of page and columns for the right-hand page.

var myMarginPreferences = myMasterSpread.pages.item (1) .marginPreferences;

myMarginPreferences.left = 48;

myMarginPreferences.top = 70;

myMarginPreferences.right = 70;

myMarginPreferences.bottom = 78;

myMarginPreferences.columnCount = 3;

myMarginPreferences.columnGutter = 14;

Adding Master Page items

var myMasterSpread = myDocument.masterSpreads.item (0);

var myLeftPage = myMasterSpread.pages.item (0);

var myRightPage = myMasterSpread.pages.item (1);

var myLeftFooter = myLeftPage.textFrames.add ();

myLeftFooter.geometricBounds = [70, 742, 728, 528];

myLeftFooter.textFramePreferences.firstBaselineOffset = FirstBaseline.leadingOffset;

myLeftFooter.contents = SpecialCharacters.autoPageNumber;

myLeftFooter.parentStory.characters.item (0) .pointSize = 11;

myLeftFooter.parentStory.characters.item (0) .leading = 14;

var myRightFooter = myRightPage.textFrames.add ();

myRightFooter.geometricBounds = [48, 742, 728, 542];

myRightFooter.textFramePreferences.firstBaselineOffset = FirstBaseline.leadingOffset;

myRightFooter.contents = SpecialCharacters.autoPageNumber;

myRightFooter.parentStory.characters.item (0) .pointSize = 11;

myRightFooter.parentStory.characters.item (0) .leading = 14;

myRightFooter.parentStory.characters.item (0) .justification = Justification.rightAlign;

Adding master text frames

var myLeftPage = myMasterSpread.pages.item (0);

var myRightPage = myMasterSpread.pages.item (1);

var myLeftTextFrame = myLeftPage.textFrames.add ();

myLeftTextFrame.geometricBounds = [70, 70, 714, 528];

myLeftTextFrame.textFramePreferences.firstBaselineOffset = FirstBaseline.leadingOffset;

myLeftTextFrame.textFramePreferences.textColumnCount = 3;

myLeftTextFrame.textFramePreferences.textColumnGutter = 14;

Add a label to make the image easier to find later.

myLeftTextFrame.label = "BodyTextFrame";

var myRightTextFrame = myRightPage.textFrames.add ();

myRightTextFrame.geometricBounds = [70, 48, 714, 542];

myRightTextFrame.textFramePreferences.firstBaselineOffset = FirstBaseline.leadingOffset;

myRightTextFrame.textFramePreferences.textColumnCount = 3;

myRightTextFrame.textFramePreferences.textColumnGutter = 14;

Add a label to make the image easier to find later.

myRightTextFrame.label = "BodyTextFrame";

Link the two frames using the nextTextFrame property.

myLeftTextFrame.nextTextFrame = myRightTextFrame;

The substitution of Master Page points and adds text

var myTextFrame = myDocument.masterSpreads.item (0).pages.item (1).textFrames.item (0) .override (myDocument.pag es.item (0));

Add text by setting the contents of the insertion of a string.

In JavaScript, "\r" is a return character.

.silence myTextFrame.insertionPoints.item (0) = "dok\r";

Adding and applying a paragraph Style

var myParagraphStyle = myDocument.paragraphStyles.item ("title 1");

try {}

var myName = myParagraphStyle.name;

}

{} catch (MonErreur)

//The style of paragraph don't have not exist, so create it.

myParagraphStyle = myDocument.paragraphStyles.add ({name: 'Title 1'});

}

We need to create a color. Check if the color already exists.

myColor var = myDocument.colors.item ("Green");

try {}

myName = myColor.name;

}

{} catch (MonErreur)

//The color have not exist, so create it.

myColor = myDocument.colors.add ({name: 'Green', model: ColorModel.process, colorValue:[100,0,100,0]});})

}

Now set the formatting of the paragraph style.

myParagraphStyle.appliedFont = "Arial";

myParagraphStyle.fontStyle = "Bold";

myParagraphStyle.pointSize = 24;

myParagraphStyle.spaceAfter = 24;

myParagraphStyle.spaceBefore = 24;

myParagraphStyle.fillColor = myDocument.colors.item ("Green");

Apply the style to the paragraph.

myDocument.pages.item (0).textFrames.item (0).paragraphs.item (0) .applyParagraphStyle (myParag raphStyle, true);

You can also use:

myDocument.pages.item (0).textFrames.item (0).paragraphs.item (0) .appliedParagraphStyle = //myParagraphStyle;

Import a text file

Display a standard dialog box open the file to select a text file.

var monFichierTexte is File.openDialog ("choose a text file");.

If you selected a text file, and if you didn't press Cancel,

Place the file of text on the first insertion point after the title.

If ((monFichierTexte! = "") & & (monFichierTexte!) (= null)) {}

myTextFrame.insertionPoints.item(-1).place (myTextFile);

}

Place a graphic

Display a standard dialog box open the file to select a graphic file.

var myGraphicFile is File.openDialog ("choose a graphic file");.

If you have selected a graphics file, and if you didn't press Cancel,

Place the graphic file on the page.

If ((myGraphicFile! = "") & & (myGraphicFile!) (= null)) {}

var myGraphic = myDocument.pages.item (0) .place (myGraphicFile);

//Since you can place multiple graphics at once, the place method

//returns a table. For the graph you have placed, get the first

//item in the table (beginning of JavaScript arrays with element 0).

myGraphic = myGraphic [0];

//Create a style object to apply to the graphic image.

var myObjectStyle = myDocument.objectStyles.item("GraphicFrame");

try {

var myName = myObjectStyle.name;

}

catch (MonErreur) {}

//The an object style have not exist, so create it.

myObjectStyle = myDocument.objectStyles.add({name:"GraphicFrame"});)

}

myObjectStyle.enableStroke = true;

myObjectStyle.strokeWeight = 3;

myObjectStyle.strokeType = myDocument.strokeStyles.item("Solid");

myObjectStyle.strokeColor = myDocument.colors.item("Green");

//The frame containing the graphic is the parent of the graphic.

myFrame var = myGraphic.parent;

myFrame.applyObjectStyle (myObjectStyle, true);

//Resize the frame to a specific size.

myFrame.geometricBounds = [0,0,600,600];

//Fit the graph in the image proportionally.

myFrame.fit (FitOptions.proportionally);

/ / Next, mount the frame to the resized image.

myFrame.fit (FitOptions.frameToContent);

var myBounds = myFrame.geometricBounds;

var myGraphicWidth = myBounds [3] - myBounds [1];

//Move the graphic frame.

var myPageWidth = myDocument.documentPreferences.pageWidth;

var myTopMargin = myDocument.pages.item (0).marginPreferences.top;

myFrame.move ([myPageWidth-myGraphicWidth, myTopMargin]);

//Apply a wrap to the graphic frame.

myFrame.textWrapPreferences.textWrapType = TextWrapTypes.boundingBoxTextWrap;

myFrame.textWrapPreferences.textWrapOffset = [12, 24, 12, 24].

}

I hope someone can point me in the right direction.
Thanks in advance.
Ron

Hey, Ron.

The problem has nothing to do with your script. You can see if you attempt to place the file from indesign tagged text by hand.

Your instinct for divide and conquer for debugging is a good - have a short text file to work with is very useful - of course this is also true for the script.

During the validation of the scripts on the forum, please do not use the syntax insert > feature Java which lies behind the > arrow in the toolbar. Otherwise, cut and paste your script are difficult requiring manual corrections.

Anyway, your problem is that each paragraph can have only a single paragraph style, and it's the last one that you define.

So in your IDTT file, you set the heading 1 paragraph style, enter the content of the paragraph and then set the style of paragraph votes to zero.

If you have included a line break before setting the style of paragraph votes to zero, you must set the None style for the following paragraph. But since you have not, it resets just the style to the current paragraph.

In short: success back before .

Tags: InDesign

Similar Questions

  • retention of the words italic when you apply the paragraph style

    When you place text in InDesign, I want to apply a paragraph style, but keep some (foreign) words in italics without having to search for each word and apply the italic character style. Texts are long and not originated by myself.

    The most recommended book for beginners here on the forum is Visual QuickStart of Sandee Cohen for InDesign. The 'bible' in my opinion, for very advanced users is Real World InDesign.

  • Automatic table row apply the paragraph style

    Hello

    I am new to scripting in Indesign. I would like to write a script to apply a paragraph on a line style in a table like this:

    1 search for the string 'XX' in a table

    2. when the 'XX' string is found, apply a paragraph style named "ParA" to the line that contains the string "XX".

    3. apply a cell style named "CellA" to the cell that contains the sting "XX".

    4. apply the style of paragraph called 'Service' to the string "XX".

    5 search for the string "XX" to the end of the table

    Can someone help me?

    Hi Syd,

    For the selected table, use the below a.

    var doc = app.activeDocument,
        _tables = app.selection[0],
        i, j, k, l, a =0, _rows,_cells, rowlen; 
    
    _rows = _tables.rows;
    for(k =0;k<_rows.length;k++)
    {
        _cells = _rows[k].cells;
        for(l =0;l<_cells.length;l++)
        {
            if(_cells[l].contents == "xx")
            {
                rowlen = _cells[l].parent.cells.length;
                a = 0;
                while(rowlen--)
                {
                      _cells[l].parent.cells[a].paragraphs.everyItem().appliedParagraphStyle = doc.paragraphStyles.item("ParA");
                      a++;
                    }
                _cells[l].paragraphs.everyItem().appliedParagraphStyle = doc.paragraphStyles.item("ParB");
                _cells[l].appliedCellStyle = doc.cellStyles.item("CellA");
                }
            }
        }
    

    Kind regards

    Cognet

  • Apply the paragraph style to a glyph and not the glyph displayed?

    I have a large Word document I have to mark up with different paragraph styles. Fortunately the data contains different glyphs for specific text strings, and so I might have the styles of paragraph kick in when he meets the glyph. But ultimately, I need to remove the glyphs when I go to print, and therefore the style will be deleted also.

    I wonder if it is possible to change the glyph to some kind og hidden state. I could mess with the x position of the text string, but I'm not not to keen on this solution. Someone has an idea?

    You must use 'GREP', not 'text', in the Find/Replace window!

  • How to apply the paragraph style to all paragraphs

    Hi people,

    Simple question. New to JS script here (but so far love it).

    I am trying to apply a paragraph (myTextStyle) style to all paragraphs in a story.

    Right now, I set it up as follows:

    tabletDocument.pages.item (0).textFrames.item ("story").paragraphs.item (0) .applyParagraphSty (myTextStyle, true);

    Obviously, it's just the first paragraph - item (0)-, but no changes to the code it throws.

    Can I implement something to it or a beach (first to last), so it will apply to all of them?

    Thanks in advance!

    N

    Just set the property .appliedParagraphStyle on the whole story.

  • ID CC 2015 crashes as soon as I (try to) apply the paragraph style to the text.

    I work on a Mac Pro (mid-2009), OS X 10.10.4, 16 GB of RAM

    Original hard drive is 1 TB (where applications are installed), second drive (designated as working drive, and where all the work files are housed) is 2 TB.

    Currently subscribe to Adobe CC 2015, using InDesign with last update

    I have been working for several days on a long paper (paper) and have developed 12 paragraph styles, using two fonts - Garamond first Pro and Helvetica Neue LT and the document has facing pages.

    Yesterday, my client (the author) has asked all text flow on the odd pages, for illustrations on all pages, so I did all the text boxes thread directly downward of pages on the right (odd pages).

    The first three chapters were style before I changed the threading of text box. Now, when I open the document and begin to apply styles to paragraph for the rest of the text (nine more chapters, which automatically adopted the style of main text as soon as I stuck in the newly-threaded text boxes), ID crashes when I highlighted a section of text and click a paragraph style.

    I checked the permissions and preferences. The only thing I can think is from the document from scratch.

    Any other suggestions?

    Thread the text boxes only on odd pages cause the problem, since it does not have facing pages?

    Thank you.

    There could be corruption in the document.

    Save the document with IDML and reopen the IDML in InDesign.

  • Apply the paragraph style instead of runned text simply by clicking on the text box

    I'm changing the style of the text entity. Is there another way to change it to select all the text, and then set the style?

    Capture.JPG

    IT is threaded text block (not a box!) you have to select all the blocks of text at a time in the thread (which is impossible if they are on different spreads) or you must select all of the text to apply a style.

    If the text block is not passed, you can select and apply the text.

    I do not see a problem to select all the text. Use the text tool, click in the text and the cmd/ctrl + A and apply the style. Not a problem, not a lot of work.

    A box is something like BleedBox, CropBox or something like that. Objects in InDesign are still frames or paths.

  • Lightroom will not apply the changes to all my pictures until the preview icon is visible in the active window in grid mode

    Hello

    I have about 4000 photos taken with my GoPro I would use a Time lapse video.

    I decided to correct the colors first, so I imported it in LightRoom. I have made changes to the first image, selected images (ctrl + a) and click on the sync button.

    Now, the weird thing is that I made to the first image doesn't apply to the rest of the images if I display of the thumbnail in the library grid mode view.

    For example, I will scroll to a random part of the grid of images and preview images show the original image. After a few seconds, the previews will be all up to date with changes made to the first image.

    Even tried exporting as tab video slide show to see if the changes have been made to all photos, but that reflects not only the icons - no dice. Any input would be much appreciated!

    Thank you!

    I think it is a bug specific to slide show > video Export.  I tested with 5800 1000 x 750 in double JPEG format, change the exposure of the first to be very dark and synchronization so that change to all others.  When I exported all 5800 photos in a folder, they all had the exhibition has changed; Ditto when I did slide show > export as PDF.  But when I did slide show > export video, I observed the same symptoms that you have done: only those photos that I had actually seen thumbnails in library obtained grid view the correct exposure setting in the video.

    I recommend that report you this bug in the official Adobe feedback forum, where Adobe has asked that all the deferred bugs: Active recently in Photoshop on Photoshop Lightroom family.  Don't forget to include a detailed step by step recipe to reproduce the bug.  Adobe tends to not pay attention to the reports for which they are unable to reproduce the symptoms quickly.

  • 10.0.1 to 10.1 will not apply the update

    When you try to apply the update (AdbeRdrUpd1010_MUI.msp) return file issued 6/14 I get:

    The upgrade patch cannot be installed by the Windows Installer service because the program to be upgraded is may be missing, or the upgrade patch may update a different version of the program.  Verify that the program to be upgraded exists on your computer and that you have the correct upgrade patch.

    Any suggestions?

    Tried it on an XP SP3 machine and also a box of Windows 7 x 64.  Same error on both systems.

    Update download Adobe Update Instructions:

    Installation instructions

    This is a cumulative update that can be applied to Adobe Reader MUI version 10.0 and directly on top of 10.0.1 if it is already installed. To determine which version of Adobe Reader, you have currently installed, choose Help > about Adobe Reader.

    If you have version 10.0 or 10.0.1 installed, download and install this update rollup.

    Post edited by: lawson23

    You do have the MUI of Adobe Reader installed version?

  • Why my script will not resize the font to size 13?

    I have JavaScript code that is supposed to change the font size for all text boxes. I want the police to size 13. The range of size text boxes to size 10.49 4.76. Right now, the script changes of size 12 or 14 (or something that is not 13).

    var myDocument = app.activeDocument;  
      
      
    var tfs = myDocument.textFrames;  
    var n = tfs.length;  
      
      
    for ( i = 0 ; i < n ; i++ ) {  
              tfs[i].textRange.characterAttributes.textFont = app.textFonts.getByName("BebasNeue");   
              tfs[i].textRange.characterAttributes.size = 13; //nothing happens during this stage unless I change 13 to 14  
    }  
    
    

    Thanks in advance for any help.

    Weird indeed! In addition, how you import XML files into your pie charts? Is there a chart by document or multiple ones?

    Well, you can try set their font and it takes another font and only 13 and then return Bebas?

  • Insert a blank space in the paragraph style?

    Is it possible to integrate a white space inserted (en character) in a paragraph style?

    I created a paragraph to chapter headings style. Chapter and number are centered horizontally on the page with a thick end line (key) on each side - a little like that, except that I use the dashboard to create the line in this example:

    -------------------------------------  Chapter 2  ------------------------------------

    Inserted white spaces before and after 'Chapter 2'.  However, when I try to apply the paragraph style to another title, the spaces are not there.

    (Line thin thickness was created as text underscore and the offset is vertically centered with the text.  It would make a difference if I created the thick end line in the form of a graph?)

    Oh and I also tried to create an object style, but it does not recognize spaces, either.  I know that something will work, but little by little learning has not met yet the solution.

    Thank you.

    Do it like this:

    1 make the high line a paragraph above net. Assign the 'Column' width (full) and set its vertical offset in right position.

    2. Add a paragraph below NET. Together, this upright even shifted, but makes a little (or a lot) more thick. Set its color [Book]. Set the width of 'Text', not 'column '. Then set the negative value of the width approx. white space you want on the left and right - something like 'mm-2' the left indent and right.

    3. you're done!

  • Is it possible to change the paragraph style (none)?

    Whenever I make a bulleted list or a numbered list, I get a syle of fonts that we don't use in our project.  I tried to change this style, but it is grayed out.  All other styles allow editing.  How can I change this default style (none)?  I did a search in the file help and on the forum but have not seen any results.  It's too simple or others are ok with this style.

    Thank you

    The choice is to apply other styles like I did, or simply to set your LI style, which is the way of pure HTML. The reason why I do that you cannot map the tag LI for printed documents. I have just started the list, select the style that I want and that's all. It is an extra step.

    What is behind this change is that people complained that the code should be clean and now it is the case, people are aware there is a down side.

    When no style is applied, as zero, the police will be what is defined by the browser. Try changing the default font in your browser for some obscure fonts and generates output. What you'll see is this obscure font. Now see the same output to another browser with a different default font.

    You may not modify any as Willam explained. None means that no style is applied so that applies the default value of the browser. You will see may not be in Arial, the next person may see as something else. Modify a CSS sets styles you include in this CSS. You apply the paragraph styles or you don't, as in no style is applied that in none.

    Clearer now?

    See www.grainge.org for creating tips and RoboHelp

    @petergrainge

  • How to create custom underscore and make a style that will not change the style of text when it is applied?

    Hi, I just want to know how can I create custom underscore and make a style, so that when I apply it to the text it right to point out that the article selected

    As long as no other character style is applied, you can create and apply a character style that is completely empty except for underscores. That will add an underline without affecting the text in any other way. If a different character style is already you must either add an underscore to this style definition (which will add an underline to all text formatted with this style) or make a copy of the style and add the underline, and then apply the new style.

  • Help with a script that detects the content in a cell and apply the cell style to line

    Hello


    I am trying to add an article to my table formatting script that is a cell with the word 'Budget' (but this can be written as ' Budget:' or ' Budget: (E) "- but without the speech marks) and apply the cell Style - SponsorCells - to all the cells of the whole line. I currently have on what it will, but it does not work:


    function checkWhichTable()
    {
    // ensure the user made a selection
    if (app.selection.length != 1)
    return null;
    var currentTable = app.selection[0];
    if (currentTable.hasOwnProperty("baseline"))
    {
    currentTable = app.selection[0].parent;
    }
    while (currentTable instanceof Cell || currentTable instanceof Row || currentTable instanceof Column)
    currentTable = currentTable.parent;
    if (!(currentTable instanceof Table))
    {
    // No table selected
    return null;
    }
    return currentTable;
    }
    app.doScript(checkUserSelection, ScriptLanguage.JAVASCRIPT, undefined, UndoModes.ENTIRE_SCRIPT, "Process Table");
    
    
    function checkUserSelection ()
    {
    var a_table = checkWhichTable();
    if (a_table == null)
    {
    if (confirm("No table selected. Do you want to process *all* tables?") == false)
    return;
    allTables = app.activeDocument.stories.everyItem().tables.everyItem().getElements();
    for (aTable=0; aTable<allTables.length; aTable++)
    {
    processTable (allTables[aTable]);
    }
    } else
    {
    processTable (a_table);
    }
    }
    function processTable(table)
    {
    // do something here!
    
    
    //Set 1st Row Height
    table.rows[0].height = "30mm";
    
    
    //Find Text in Cell and apply Cell Style to Row 
    var  
      myCellText=['Budget', 'Budget:', 'Budget: (E)'];  
     var myRegEx = new RegExp("^("+myCellText.join("|")+")$");
      for (i=0; i<table.cells.length; i++)
      {
        if (table.cells[i].texts[0].contents.match(myRegEx))
          table.cell[i].appliedCellStyle = "SponsorCells";
      }
    
    
    //end - do something here!
    }  
    


    I can get the script to apply the cell style to "SponsorCells" for each cell that contain the word 'Budget' etc, but I need cell ever on this line to have the cell style applied. I tried to re-write line 56 which applies the style to a cell, but I can't seem to make it work. Any help would be great.


    Separate on this issue, I would like to have a line of code similar to the 46 line, which sets the 1st height of lines, but I would like to say "If a cell has 'A cell Style' and then applies the value height 10 mm". If someone could result as a help of bonuses, things would be great double.


    Thanks in advance!

    But that could be painfully slow. To speed things up, follow these steps:

    var cells = table.cells.everyItem().getElements();
    for (var i=0; i
    

    It is faster, because it creates an array of cells with a call to table.cells, which is several times faster than calling table.cells. And before assigning to line 12mm height is useful to check if it is already 12 mm. checking things in InDesign and do things only when it is necessary is much more effective than simply doing things even if they are not necessary.

  • Apply the character style to the part of the paragraph

    I am inserting text in a block of text with the following code:

    story.insertionPoints [-1] .silence += pgfStr;

    story.insertionPoints [-1] .silence += "\t";

    story.insertionPoints [-1] .silence += refStr;

    story.insertionPoints [-1] .silence += "\r";

    I want to apply the character style to all of the text in refStr (only the part of this paragraph). I know how the syling paragraph applies to the entire paragraph, but not a character style. I should be grateful if you would help. Thank you!

    Hello

    Dan - BTP says:

    ... the size in points and attack can be different on each page...

    You are able to find a rule of these differences?

    ...

    What do depends on what type of rule could be defined

    ...

    The size of reference point that is 1.5 PT lower than the point size of the paragraph, whatever.

    Close to the end of the script, you can code for example:

         //     Your target is "reference" which is a text inbetween tabulator and end of story (or other criteria).
         //     So you could define:
    app.findGrepPreferences = null;      // just for clear it
    app.findGrepPreferences.findWhat = "(?<=\\t).+\\s\\Z";     //     to catch text following tab in last para of story
         //     and after:
    mFound = app.activeDocument.findGrep();
         //     so all desired text objects are in an array "mFound".
         //     you could iterate (backward) through it:
    len = mFound.length;
    while (len-->0)      //     ">0" in case of nothing found
         mFound[len].pointSize -= 1.5;
    
         //     whatever that is - is 1.5 smaller
    

    Jarek

Maybe you are looking for

  • Boot Camp "no boot device."

    My bootcamp partition does not appear in start mode of drive, when starting all holding the key down option . Although it appears in disk utility and boot disk. When by selecting it from the startup disk, it starts and I get the "error no boot device

  • iTunes... Please help

    Hi I realize that this could its crazy but I tried everything read and I'm not the wisest.  Since the latest updates to my iPhone and iPad iTunes has disappeared!   I don't have iTunes Store and there is a new icon that Said just music.  All my music

  • Cannot resize the window to size full screen

    I just got my new mac mini, and I can't resize the windows as I want.  I place my browser at the top window and use the arrow down to resize height screen entirely, but it goes only to where would be the dock. BUT I moved the dock to the right. How c

  • ENVY dv7-7390el: problem with installation of a 2nd disk (SSD)

    Hello everyone. I want to put a 2nd hard drive in my laptop (dv7-7390el ENVY). It's a Samsung SSD (model: 850 PRO - 512 GB of RAM). However, even if I did first initialization with USB cable because it is new, when I link the new component using its

  • This driver is myEpson 520/525 series printer on?

    I'm trying to set up my printer to my laptop wireless now and TI: s asking a driver and I can't seem to find