Artifact Lines in Line Pattern Swatch

Hi,
I am trying to use a basic line pattern swatch as a fill. It all looks fine in Illustrator but when I go and try to save it under "save to web and devices" the fill pattern shows extra lines in the pattern. These lines are darker and run in a different direction. There are not many of them but they definately ruin the pattern fill. This doesn't happen with all the line patterns, usually just the one I want to use (LOL).
Are these "artifacts" caused by the swatch itself? Is there anyway to get rid of them?
TB

Hi,
Thanks for the reply. Here is the image. It is a GIF.

Similar Messages

  • How do you get edge lines out of patterns that you create?

    Brand new at Illustrator, forgive the ignorance.
    I was attempting to experiment with the patterns tutorial, and I cannot seem to get rid of edge lines when creating patterns. Please assist if you can.
    Examples shown:

    This is a result of screen anti-aliasing (turn it off in preferences and the lines go away). It will not effect output.
    You can reduce their annoyance by increasing the size of the pattern swatch.

  • Lines in Illustrator patterns

    Hi! I get fine lines on repeat patterns. This also shows when sending the files an making the textile prints in production! I have searched all forums and can not find a solution! And yes I have a rectangle without fill or stroke placed behind my artwork... Please help!

    Hi!
    I did a test just now sending a file to my colleague (who is on an older version of illustrator). It turns out the setting is not included in the file. How can I get past this problem when sending files to someone else who will make the print?
    Best Regards
    Emilia
    Från: Emilia Claesson
    Skickat: den 8 januari 2015 14:01
    Till: '[email protected]'
    Ämne: SV:  Lines in Illustrator patterns
    Hi!
    Now it did disappear on the screen at least. ☺ Would need to know if my supplier who makes the textile print need to make the same setting in her/his program or if the setting in embedded in the file?
    Best Regards
    Emilia
    Från: Jacob Bugge
    Skickat: den 8 januari 2015 13:36
    Till: Emilia Claesson
    Ämne:  Lines in Illustrator patterns
    Lines in Illustrator patterns
    created by Jacob Bugge<https://forums.adobe.com/people/Jacob+Bugge> in Illustrator - View the full discussion<https://forums.adobe.com/message/7077100#7077100>

  • Unwanted lines appear in pattern

    Hi people,
    Thx for loooking in to my question, the question follows:
    I just started working with patterns, quite simple patterns, but how perfect and how smooth I make the edges still these small lines appear over the pattern.
    They appear on screen and print as wel.
    I still work with adobe Illustrator cs 11 in windows.
    I'm sure one of you guys must have a answer on my simple problem.
    Thx for helping.
    Laurens

    Patterns do show stiching lines in-between the tiles at times, but these lines should not print when printed to a PostScript printer. Non-postscript printer will print these gaps as they simply print the screen representation. In such cases it is important to check if these lines are actual pattern flaws or mere screen drawing issues. One good way to verify is by zooming in a stepwise manner. If the gap lines grow thicker with zoom, there is a flaw in the pattern, else it is a screen draw issue.
    Thanks!
    Neeraj

  • Scanning a line for a pattern ( cat ${0} | while read line )

    I am busy to create a dynamicaly menu from items inside the script itself.
    I will create some self reading/scanning code what builds the menu.
    When script get executed, it will look for itself on disk put it in a catalog and scan every line with an 'if' 'elfi' for '[ $choice -eq X ]; then'.
    Then next non empty line for '# title - description of code' part behind that if or elfi line, put that and the choice no. in $menuItemN var what is used to print the menu.
    with
    # start self scanning code
    cat ${0} | while read line
    # end self scanning code
    # create menu
    # the the chosen code between if's
    if [ $choice -eq 1 ] ; then
    # title - Drink coffee
    elfi [ $choice -eq 2 ] ; then
    # title - Eat pizza
    This line of code
    if [[ "$line" = ?(el)if*([[:space:]])*$choice*([[:space:]])-eq* ]] ; then
    reads the if's and elfi's fine, but also f.e the line itself.
    So I want to narrow down things, but I cant figure out how to use [ in a pattern.
    What do I have to put at the XXXXX
    if [[ "$line" = ?(el)if*([[:space:]])XXXX*$choice*([[:space:]])-eq* ]] ; then
    so that that line is only accepting ( one left square bracket and different number of spaces )
    if [ $choice -eq 1 ] ; then
    or
    elif [ $choice -eq 4 ] ; then
    Basically how do I use the left and right bracket in a pattern?

    After a good diner, but not helping with the dishes , this is for now my final.
    I did create it in a way that I only need to add code in the runLoop function. I don't need to alter var's, code or any thing else outside the runLoop. And it works fine.
    #!/bin/sh
    shopt -s extglob ## enable extended globs +(...), *(...), etc...
    declare -a menuArray
    handle_menu()
    ## print menu
    printf "_____________________________________________________________
    for index in {0..99}
    do
    if [[ -n "${menuArray[$index]}" ]]; then
    if [[ "$index" == "$exitChoice" ]]; then
    printf "
    fi
    printf " %3s. %s
    " "$index" "${menuArray[$index]}"
    fi
    done
    printf "_____________________________________________________________
    ## read user input
    read -p " Please choose an option :" choice
    ## user want to quit?
    if [[ $choice -eq $exitChoice ]] ; then
    printf " Bye bye!
    exit 0
    fi
    ## user did choose a wrong number?
    if [[ ! -n "${menuArray[$choice]}" ]]; then
    printf "
    ## ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    printf " # # # %s is Not an existing option!
    " "$choice"
    printf " # #
    printf " # # Try again ( %s for exit )
    " "${exitChoice}"
    printf " #
    printf " # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    fi
    build_menu()
    ## Build a menu by reading this script
    exitChoice=99 ## exit option number
    exitStr="Exit" ## exit menu text
    loopChoice=999 ## keeps the runloop rolling
    lineno=0
    while read line
    do
    ((lineno++))
    #echo - $line
    if [[ $line = ?(el)if+([[:space:]])[[+([[:space:]])$choice+([[:space:]])-eq+([[:space:]])?([1-9][0-9 ])*([[:space:]])]]+([[:space:]]);+([[:space:]])then* ]] ; then
    ## line should look like 'if [[ $choice -eq 1 ]] ; then' or 'elif [[ $choice -eq 2 ]] ; then # help'
    ## Between the different elements there has to be 1 or more spaces
    ## There could be a comment behind the statement
    #echo -
    #echo - "before :${line}--"
    line="${line%*([[:space:]])#*}" ## remove comments
    line="${line%%+([[:space:]])}" ## remove trailing spaces
    read title_line
    ((lineno++))
    #echo - "before N:${nline}--"
    title_line="${title_line%%+([[:space:]])}" ## remove trailing spaces
    if [[ "$title_line" = #*([[:space:]])[Tt]itle*([[:space:]])-*([[:space:]])+([[:alnum:]])* ]]; then
    ## line should look like '# Tilte - Description'
    ## Between the different element there has to be 1 or more spaces
    ## The 'T' of 'Title' text must be an upper or lowercase letter
    ## get choice number from line
    line="${line#?(el)if+([[:space:]])[[+([[:space:]])$choice+([[:space:]])-eq+([[:space:]])}"
    #echo - "Tear off beginning:${line}--"
    choiceNo="${line%%+([[:space:]])*}"
    #echo - "Tear off end :${choiceNo}--"
    ## compare if choice number already exists and if exists: Bail out wit error notification
    if [[ "${menuArray[$choiceNo]}" == "" ]]; then
    ## get title
    title_line="${title_line##*([[:space:]])[Tt]itle*([[:space:]])-+([[:space:]])}"
    #echo - "Tear off beginning:${title_line}--"
    title_line="${title_line%%+([[:space:]])}"
    #echo - "Tear off end :${title_line}--"
    ## add to menu
    menuArray[$choiceNo]="${title_line}"
    else
    errLine=$((lineno-1))
    printf "
    ## ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    printf " ## # Choice number already exists under name%s
    " "${menuArray[choiceNo]} "
    printf " ## #
    printf " ## # Correct your code ( choice number? ) at line %s
    " "${errLine}"
    printf " # Wil bail out!
    printf " ## ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    exit 1
    fi
    else ## no title in line
    errLine=$lineno
    printf "
    ## ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    printf " ## # Line after 'if' or 'elif' statement has no Title line
    printf " ## #
    printf " ## # Correct your code af line %s
    " "${errLine}"
    printf " # Wil bail out!
    printf " ## ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    exit 1
    fi ## if Title is there
    fi
    done <${0}
    ## add the exit code and title at the end of the menu array
    menuArray[$exitChoice]=${exitStr}
    start()
    build_menu
    choice=$loopChoice
    # Loop while the variable choice is equal 999 ( defaultChoice )
    while [ $choice -eq ${loopChoice} ]; do
    # print menu + read user input
    handle_menu
    runLoop
    choice=$loopChoice # only bail out on exit code ( at least default value 90 )
    done
    runLoop()
    ## this function should contain the choices with their code.
    ## the choice if statement should look like the following way
    ## 'if [[ $choice -eq 1 ]] ; then'
    ## or/and
    ## 'elif [[ $choice -eq 2 ]] ; then # help'
    ## YES, it should use $choice as a variable!!
    ## With in the next line the title, supplied in the following pattern
    ## '# title - Eat pizza'
    ## No need to put extra code in your code to have this running
    ## -------- insert your code here --------------------------------------------
    if [[ $choice -eq 1 ]] ; then
    # title - Drink coffee
    echo Drink beer
    elif [[ $choice -eq 2 ]] ; then # help
    # title - Eat pizza
    echo Eat pizza
    elif [[ $choice -eq 4 ]] ; then
    # title - Go Home
    echo "Go Home!"
    elif [[ $choice -eq 9 ]] ; then
    # title - Get out
    echo "Get out!"
    elif [[ $choice -eq 44 ]] ; then # ln;ln lknbl bs
    # title - Go to bed
    echo "44 Go sleep!"
    ## -------- insert your code in front of this line ----------------------------
    fi ## keep this as last
    # Start point
    start
    exit 0
    Still one question.
    Is there a kind of way to walk through an array and get directly the existing variables with a index number?
    Now I use
    for index in {0..99}
    do
    if [[ -n "${menuArray[$index]}" ]]; then
    if [[ "$index" == "$exitChoice" ]]; then
    printf "
    fi
    printf " %3s. %s
    " "$index" "${menuArray[$index]}"
    fi
    done
    I don't want a loop ( {0..99} ) and a known last index number ( 99 )
    Is there a way to find out the width om the current shell window?
    Also other hints, remarks are welcome.
    P.s if someone want to see the 'debug echo output', find&replace '#echo -' with 'echo -' and the other way arround

  • When I make a pattern swatch, it moves. How can I stop this?

    I understand that pattern swatches sit relevant to where they are made on the artboard. So I thought I could create one over the spot I want to fill with it (and avoid making lots of clipping masks). However, when I create the swatch, the pattern moves, and I can't seem to get it to align.
    Have tried using the ~ key as suggested elsewhere (although on my PC this is on the # key so probably doesn't have the same effect?).
    So the pattern goes from this:
    To this:
    Each time I do it, it moves to another location. Doesn't seem to be any logic to it.
    Would appreciate anyones wise input!

    Whenever I apply the clipping mask, the shape contains no fill. Perhaps that is because it is a set of copy and a logo repeated in a line (this is a design for a lanyard). It's not that I am afraid to use it, I have tried and it doesn't work.
    So if the pattern is relevant to the 0,0 position on the co-ordinate grid, how do you work that out? When you make it, the co-ordinates are relevant to the artboard, not the grid. Maybe I'm just missing something obvious.
    Sorry if I seem stupid. Self taught etc.

  • Pattern Swatch Seams showing in SWF

    Hi Everyone,
    I have here an Illustrator file with a pattern swatch that, when I export a swf, faint seam lines show. (see attached) It's like the lines in a pdf that don't print, but the problem is, the swf is important because it's what the customer sees. How do I get these lines to stop showing up?
    Usually I expand appearance of pattern swatches and pathfinder the pieces together so there are no seams, but this file was a headache to break apart, the lines jog. If I save out as a jpg the lines go away, but the lines also jog. (see attached) If I save out as a .psd the lines still appear.
    What I want is a swf that has no seam lines. Is it possible?
    Cheers,
    Emmy Williford

    Thank you Mike!
    Unfortunately it does the jogging thing that expanding and jpg'ing does when I object>rasterize. Expanding appearance does the least amount of jogging, so I may do that just to swf and keep the pattern swatch file for printing.

  • Read file line by line

    Hi
    Could somebody tell me how to read file line by line ? Namely my input file I want to read look as follow:
    AAA 1, 1
    12 222 12
    AAA 2, 2
    11 122 11
    My output file should look as follow:
    1, 1, 12
    1, 1 222
    1, 1, 12
    2, 2, 11
    2, 2, 122
    2, 2, 11
    I think the lines need to be stored in ArrayList, then I would like those lines to write to csv file, but how on read I can construct such output file? This is my code for reading file
    public ArrayList readFile(String filename)
      try
         BufferedReader in = new BufferedReader(new FileReader(filename));
         ArrayList list = new ArrayList();
         String lineS = null;
         while (in.ready())
          if ((lineS = in.readLine()).startsWith("")){
            String[] line = in.readLine().trim().split("\\s+");
            list.add(Integer.valueOf(line[0]));
            list.add(Integer.valueOf(line[1]));
            list.add(Integer.valueOf(line[2]));
         in.close();
         return list;
         catch (Exception e)
       e.printStackTrace();
    return null;
    Thanks

    The rules for the conversion from input to the desired output are:
    1. For each of the line with string take 2 integers for example 1, 1  from AAA 1, 1
    2. Then repeat 1, 1 for each next number not containing any string, so if the line after AAA, 1, 1 has 12, 222, 12 then the output will look as follow
    1, 1, 12
    1, 1 222
    1, 1, 12
    3. Repeat the process (the pattern is the same 1 line with string 1 line with numbers)
    Actually I am not sure how to perform that logic for such conversion as for now I am only able to list only the numbers but I have a problem to add numbers from the line having string in it.
    STOP!
    You should NOT be writing code if you are 'not sure how to perform that logic'.
    You are getting ahead of yourself.
    There is NOTHING to gain by trying to code a solution before you know what algorothm you need. Big mistake.
    Should I use list or maybe if the patter for lines is the same array will be more sufficient?
    NEITHER ONE!
    Those are 'solutions' used to implelment an algorothm.
    You do NOT yet know what algorithm you need to use so how can you possibly write code to implement the unknown?
    How to perform logic to get the numbers from line having string and for the next lines having only numbers in order to structure it into desired output? 
    THAT is the question your thread subject should have.
    Until you get the answer to it don't write any code,.
    Do NOT try to automate what you can't do manually.
    Write down, on paper or use an editor, the step by step 'logic' you need and walk through that logic from beginning to end until the 'logic' works and produces the correct result.
    You just now have started to do that when you listed those rules above.
    But you left some things out. Expand on that list of 'rules' and provide a little more example data. TPD has given you a good example. Reread what they said.
    Did you notice they start by talking about 'tasks': what each task does and the order the tasks need to be performed.
    That 'task list' has NOTHING to do with Java, C, or any other language: it is identifying the problem/algorithm. Until you have that coding is premature.

  • Crystal report -How to display multiple lines in line chart?

    Hi,
    M struggling to display multiple lines in line chart. All the values m fetching it from database into data table in below format & data type
    Category(String).....year(Int).....graph_values(Int).....table_value(String)
    Test.........................2006.......... -100............................(100)
    Avg..........................2006..........20................................20
    Median......................2006...........5................................5
    Test..........................2007...........500.............................500
    Avg...........................2007............90..............................90
    Median.......................2007............45..............................45
    M using cross tab to display data and chart to plot line. Following fields I used in Cross tab Expert & Chart expert
    Cross tab expert-
    Rows u2013 category
    Columns u2013 year
    Summarized fields u2013 Min of table_value
    In Chart Expert u2013
    On Change of - Year
    Show values - graph values
    In cross tab m able to see the data properly but not in graph.I have three categories. Hence it should plot three lines in line chart but m able to see only one line for test category.
    FYI u2013 using VS 2008 and crystal report assembly version 10.5
    Urgent. Please reply soon.
    Thanks
    ThakurS

    I got the solution.
    In Chart Expert - I should use
    On Change of -- Year, Category
    Show values -- graph values
    Thanks,
    ThakurS

  • Create a Macro to Index a Word Document Line by Line

    Background
    I have collected a bunch of keywords and references to where I can find these words in a textbook.  I've put them into a Word document where each line is one Index beginning with the “Main Entry” followed by a colon and then the “Subentry”.  Note
    that in the "Subentry" I have included my reference in parenthesis (b1-m2).
    Example Original Text:
            Main Entry:Subentry (b1-m2)
    Example Marked for Index:
            Main Entry:Subentry (b1-m2){ XE "Main Entry:Subentry (b1-m2)" \t "" }
    When it was only a page of content it was no big deal to select the entire line and <Ctrl>+<Alt>+<x> then <Enter> down the line.  Now that I have about 500 lines of these word combinations, I need a more automated solution. 
    I have searched for KB articles that explain the various elements I need, though unsuccessfully since I don’t know what I need.  I doubt I am the first person to do this, so if anyone could point me to the right documents I would greatly appreciate
    it.
    As a noob, how difficult of a task is this to automate with a Macro or some other method and should I even attempt it? I have a very short window of time to figure this out.
    Nice to have: In the final index, I don't need the Word page numbering after the term.  My references are in the parenthesis.  I know how to remove it manually in Word, when I mark the index entry: Chose Options, Cross-reference
    and remove the pre-populated text of "see". That adds  \t "" to the index reference. 
    Illustrated as such:
            From: Main Entry:Subentry (b1-m2){ XE "Main Entry:Subentry (b1-m2)" }
            To:     Main Entry:Subentry (b1-m2){ XE "Main Entry:Subentry (b1-m2)" \t "" }
    My Attempt at Recording a Macro
    Having zero experience writing macro’s myself, I tried recorded a simple macro using the manual keystrokes below however the text reflected in the actual index reference does not change.  I also have to manually kick off the macro on every line of text.
    I walked through each of the steps outlined below as I was recording a macro, however when I replay the macro, the index itself contains the exact same text for every line and does not match the original text on the new line.
    I could not get the macro to repeat itself on every line.  I had to keep running it until I was done (technically, when I realized it was repeating the same text within the index reference itself) but I’d like the macro to run from beginning
    to end; line by line and then insert the Index itself at the end on a new page.
    I realize I need some kind of loop to keep the macro going line by line.
    I also need some way to mark the Main Entry within the loop (everything to the left of the colon) and then the Subentry (everything to the right of the colon to the end of the line). 
    Example “Index” Macro
    Sub Index()
    ' Index Macro
        Selection.EndKey Unit:=wdLine, Extend:=wdExtend
        ActiveWindow.ActivePane.View.ShowAll = True
        ActiveDocument.Indexes.MarkEntry Range:=Selection.Range, Entry:= _
            "TV\:The Good Wife (y2014-y2015)", EntryAutoText:= _
            "TV\:The Good Wife (y2014-y2015)", CrossReference:="", _
            CrossReferenceAutoText:="", BookmarkName:="", Bold:=False, Italic:=False
        Selection.MoveRight Unit:=wdCharacter, Count:=1
    End Sub
    Manually Marking Index Entries
    Manually, here are the keystrokes I use to iterate my way through the document.
    Manual Index Marking Keyboard Combinations:
    At the beginning of the first line, press <Shift> + <End>
    This selects the entire rows text
    Then press <Ctrl> + <Shift> + <x>
    This allows me to “Mark Index Entry”
    Then press <Enter>
    This confirms the Index entry
    Then press <Esc>
    This closes the “Mark Index Entry”
    Go to the next line and repeat.
    Replacing anchor
    Once the creation of each index is complete, I need to be able to iterate through the document and find all anchor + colons (IE: \: ) and replace with colon (IE: :). This way, the “Main entry” and “Subentry” are handled properly when the Index is inserted.
    Manual Anchor Replacement Keyboard Combinations:
    At the beginning of the Word document, press <Ctrl> + <h>
    Find what:      \:
    Replace with:   :
    Then <Alt> + <a>
    Press the "Ok" button (or make replace silent somehow)
    Then press <Esc>
    This should close the "Find and Replace" screen
    Inserting Index
    Ideally, I would like the macro to create and insert the newly marked content into an index at the end of the document.
    Manually Inserting Index Keyboard Combinations:
    Press <Ctrl> + <End>
    this takes us to the bottom of the document
    Then press <Alt> + <s>
    this chooses the "References" tab
    Next press <Alt> + <x>
    this chooses "Insert Index"
    Next press <Alt> + <t>
    This should allow you to choose a "Format" option for the index
    Next press <m>
    This should chose "Modern" from the "Formats" options
    Finally, press <Enter>
    End the macro
    Example before Indexing:
              TV:The Good Wife (y2014-y2015)
              TV:Phineas and Ferb (y2011)
              TV:Curb Your Enthusiasm (y2011-y2015)
              Game:Back to the Future (y2012)
              Made for TV Movie:The Magic 7(y2009)
              Main Entry:Subentry (b1-m2)
    Example after Indexing is completed:
    The marked up text/references did not transfer over properly from the Word document I copied my question from.  I had to manually type the text within the {} brackets for illustrative purposes here:
              TV:The Good Wife (y2014-y2015){ XE "TV:The Good Wife (y2014-y2015)" }
              TV:Phineas and Ferb (y2011){ XE "TV:Phineas and Ferb (y2011)" }
              TV:Curb Your Enthusiasm (y2011-y2015){ XE "TV:Curb Your Enthusiasm (y2011-y2015)" }
              Game:Back to the Future (y2012){ XE "Game:Back to the Future (y2012)" }
              Made for TV Movie:The Magic 7(y2009){ XE "Made for TV Movie:The Magic 7(y2009)" }
              Main Entry:Subentry (b1-m2){ XE "Main Entry:Subentry (b1-m2)" }
    Example Index 
    G
        Game
              Back to the Future (y2012) · 2
    M
        Made for TV Movie
              The Magic 7(y2009) · 2
        Main Entry
              Subentry (b1-m2) · 1,
    2
    T
         TV
              Curb Your Enthusiasm (y2011-y2015) · 2
              Phineas and Ferb (y2011) · 2
              The Good Wife (y2014-y2015) · 2
    Chris Schurman

    Once I combined my Excel knowledge and Word knowledge, this became a piece of cake.  Sharing my solution for anyone else who may have the need.  The point of this exercise is to prepare for an open book exam and I need a quick index of my books
    (there are 6 for this class).  Anyway, here is how i solved (though slightly clunky, it works in seconds!)"
    In Excel, I pieced the text together by concatenating the indexing markup and the contents of the pertinent cells as such:
        =CONCATENATE("XE """,A2,":",B2," (b",C2,"-p",D2,")"" \t """"")
    Content from Excel (with results of concantenate statement in last column:
    Heading    Slide Title    Book    Page    Copy this into notepad then into word
    Game    Back to the Future    1    12    XE "Game:Back to the Future (b1-p12)"
    Made for TV Movie    The Magic 7    2    7    XE "Made for TV Movie:The Magic 7 (b2-p7)"
    Main Entry    Subentry    3    48    XE "Main Entry:Subentry (b3-p48)"
    TV    Curb Your Enthusiasm    4    100    XE "TV:Curb Your Enthusiasm (b4-p100)"
    TV    Phineas and Ferb    5    20    XE "TV:Phineas and Ferb (b5-p20)"
    TV    The Good Wife    6    35    XE "TV:The Good Wife (b6-p35)"
    Then I paste special the "Values" of the last column into Word.
    I run the macro below (haven't figured out how to loop yet) a few doxen times an insert the index at the bottom.
        Sub Index()
        ' Index Macro
            Selection.HomeKey Unit:=wdLine
            Selection.EndKey Unit:=wdLine, Extend:=wdExtend
            Selection.MoveLeft Unit:=wdCharacter, Count:=1, Extend:=wdExtend
            Selection.Fields.Add Range:=Selection.Range, Type:=wdFieldEmpty, _
                PreserveFormatting:=False
            Selection.EndKey Unit:=wdLine
            Selection.MoveRight Unit:=wdCharacter, Count:=1
        End Sub
    Bam; instant Index!
    Chris Schurman

  • Is it possible to change the attributes of lines in Line Charts?

    I always think there are no dumb questions but this one actually might qualify because for some reason I'm unable to find a way to change the line color and thickness in Line and Line & Bar Charts. Web Intelligence must be intelligent enough to let me do this, right?
    Thnx,
    David

    Thank you!
    So this is again another example of the Web Intelligence product not achieving it's goal, and to me that is simplifying the creation of reports that can turn data into valuable information on which people can make better, more informed decisions. Shame! And I've noticed that this is the case for far more features of Web Intelligence. Please, SAP BusinessObjects, stop including marketing only related functionalities and build a better reporting tool!
    As to your answer regarding the palette, this is true but is not a generic solution as this goes for all line graphs (and bar, pie charts?). It is not very user friendly as well!
    But thanks for the quick response and confirmation.
    I'll keep the post open a little longer to see if anyone else has comments or similar feelings!
    David

  • Text file: reading char one at a time line by line

    I need to read an external .txt file, one character at a time, line by line, and compare each character in order to do various things. The problem is that when I use the Buffered Reader I have only readLine() method and others to work with, but none that actually read a character at a time, and line by line. The program has to read a character, then move to the next one and read it, and so on. Then move to the next line, and read the first character, and so on. I am working with chars not Strings. Could you please help me with this problem?

    InputStreamReader can read a single char.
    InputStreamReader isr = new InputStreamReader(InputStream in);
    isr.read(); will return 1 character from "in".

  • How to create static line in line bar graph in obiee 11g?

    Hello,
    I have requirement where user wants to see a line in bar graph.
    Now the line is just static line, we dont have data field available to draw the line in graph.
    is there a way to create a static line in chart and show it in Line bar ombo graph??
    Thanks in advance..

    e.g. i created the static line '10' in fx and now using this column as line in line bar report , but its not displaying the line at measure of '10' in chart.
    Drag the column to measures section of graph (Line - Vertical Axis) to change this static value create an edit box prompt and pass the value to the column using Presentation Variable (as said by Fernando)
    Thanks,
    Saichand

  • No control line for line item - error while posting bd to accounting

    Hi all,
    Billing document showing err "no control line for line item" while posting to accounting doc.Sales document is complete no in completion logs.
    Previous errr: g/l missing for line item" in order incompletion after maintaining company code for customer, then refresh the g/l missing for line item is no more logs and showing the error "no control line for line item" while posting bd to accts.
    Please help
    Regards
    anush

    Hello Anush,
    if the company data of the payer was not created when the sales order has been created, then the system could not create the correct records in table VBREVK. Once the company data has been maintained the VBREVK records could be corrected by re-saving the sales, but only if no billing document exists.
    In your case you already created the billing document.
    Please try these step:
    1. reverse billing document
    2. run VA02 add a blank char to PO number, save
    3. create new billing document
    Best regards,
    Ivano.

  • My firefox has decided to load in a line by line format, why?

    My broser started loading in a line by line formay. I need to know what to do about this. This happens on most websites, but not all. Will not allow me on to the facebook site. sample below.
    Access Email using the XFINITY Mobile app »
    Xfinity
    Home
    TVNew
    Connect
    Help
    Account
    Security
    Shop
    Register
    Sign In
    Profile Set-up
    Progress: 100%
    View More Options
    Hi chvbob
    Sign Out
    Welcome
    Complete the XFINITY set up process so you can browse, watch and record your TV shows & movies anytime, anywhere.
    Set Up Xfinity
    Welcome
    Just 0 more steps and you're done:
    You're Done!
    Complete Set-up
    View Profile
    Thank You
    Coming back to complete the set-up is simple. Just click on the arrow to the right of the progress bar to see where you left off, then finish your set-up tasks.
    Comcast.net
    Search:
    enhanced by Google
    Today's Highlights
    October 06, 2011
    10 Unsolved Mysteries of Amanda Knox Case
    10 Unsolved Mysteries of Amanda Knox Case
    Amanda Knox is freed and back in the U.S., but questions about the Italian murder case remain.
    Judge: 'This Case Will Never Be Solved'
    Knox's Tearful Arrival Back in United States
    Family, Friends Celebrate Knox's Return to U.S.
    Woman on Knox's Flight Home Speaks Out
    Reactions to the Amanda Knox Verdict
    New End-of-the-World Prediction
    New End-of-the-World Prediction
    The world didn't end last May, but that doesn't mean we're out of the woods just yet...
    Harold Camping Thinks the World Will End Soon
    Evangeline Lilly Is Sick of Talking About 'Lost'
    Watch the Full Episode of 'Jimmy Kimmel Live'
    Full Episodes of 'Jimmy Kimmel Live'
    Find TV Listings for Your Area
    Real Estate: What Will $200K Buy?
    Real Estate: What Will $200K Buy?
    Will you get a luxury 4-bedroom home or a cramped studio? See what your dollar's worth in these cities:
    Chicago
    Houston
    Denver
    What Does $200K Buy in Other Cities?
    10 Tips to Get the Best Mortgage
    6 Must-Do's Before You Buy
    Listing Red Flags
    Should You Clean the Foreclosure Next Door?
    Jobs Remembered as 'Visionary'
    Apple founder Steve Jobs lost his long battle with pancreatic cancer yesterday. He was 56.
    Tributes Pour In from Across the Globe
    Video
    Apple Fans Mourn Jobs
    Jobs' Life in Pictures
    Jobs Told Us What We Needed Before We Knew
    Digital Titans, Gadget Junkies Mourn Steve Jobs
    Evolution of Apple
    Little-Known Steve Jobs Facts
    Watch the Greatest TV Moments
    TV Guide counts down the top 100 memorable moments in television history.
    View '100 Great TV Moments' Online for Free
    Watch More of '100 Great TV Moments' Online
    Watch 'Fat Albert and the Cosby Kids' Online
    Watch 'Hill Street Blues' Online
    Watch Thousands of TV Shows for Free
    5 Lightning-Fast Porsches
    Do you have a need for speed? Buckle up and check out the fastest Porsches permitted to cruise the streets.
    Fastest Street-Legal Porsches
    5 Super Cars That Shatter 200 MPH
    Beautiful Exotic Cars
    Famous TV Cars
    5 Cars That Stand Out from the Crowd
    Most Stolen Cars
    Future Collectible Cars
    Ways to Save on Groceries
    In just one year, the cost of groceries has increased by 4.2 percent. Learn how to stop your grocery bills from growing.
    5 Tips to Fight Rising Prices
    Secrets of Supermarket Prices
    Make Your Groceries Last Longer
    Clean Up the Cost of Laundry
    The Best Savings Accounts
    Did They Go Under the Knife?
    From Steve Martin to Simon Cowell, these leading men are rumored to have had lifts, Botox and other procedures.
    Did They or Didn't They?
    Celebrity Surgery: Before & After
    Stars Who Insured Their Body Parts
    Watch Full Episodes of 'Nip/Tuck'
    Super-Skinny Celebrities
    Slow PC? Speed It Up
    Improve your computer's speed and performance with a PC tune-up. This special offer is available exclusively to XFINITY customers.
    Learn More
    Tune Up Your PC's Speed and Performance
    Keep Your Computer Safe and Secure
    Get a Free Month of XFINITY Signature Support
    Mexico Vacation Sale
    Check out spectacular specials on flights and all-inclusive hotel stays across Mexico. Two great deals, one unforgettable vacation.
    Flights $119+
    All-Inclusive Hotels $69+
    Disney Resort Vacations: 3 Nights with Air $480+
    Jamaica from $469
    Hawaii from $589
    Tour the UK: 6 Nights, 3 Countries with Air $910+
    Flight Deals: Atlanta $59+
    San Diego $119+
    Highest-Earning Women in Hollywood
    Forbes has released its annual list of the best-paid women in entertainment. Did Oprah Winfrey retain her crown?
    Find Out Now
    Lady Gaga Wears False Teeth
    Richest Star Moms
    Most Powerful Celebrities
    Watch Oprah Winfrey Network Clips & Episodes
    Best-Paid Actresses
    Wealthiest Stars Under 30
    Get Paid to Eat Out
    A new website offers 'insider pricing' of 30% off your bill when you use it to make a reservation.
    How Does It Work?
    Food News, Cooking Shows, More
    America's Best Chain Restaurants
    Guide to Restaurant Tipping
    12 Dinner Date Deal Breakers
    Amanda Knox
    'Jimmy Kimmel'
    $200K Homes
    Steve Jobs
    TV Moments
    Fastest Porsches
    Grocery Savings
    Celeb Surgery
    Tech Help
    Mexico Sale
    Richest Women
    Get Paid to Eat
    Amanda Knox
    Previous
    1 - 1.0336417157275022 of 12
    Next PLAYPAUSE
    Top Videos
    Finance News
    Previous
    1 - 1.0336417157275022 of 16
    Next
    Previous
    Loading...
    'DWTS' Star's Revealing Pics'DWTS' Star's Revealing Pics
    'Bachelor' Beauty's New Man'Bachelor' Beauty's New Man
    Depp's Comment Sparks OutrageDepp's Comment Sparks Outrage
    Camille Grammer Rocks BikiniCamille Grammer Rocks Bikini
    'DWTS' Star's Revealing Pics'DWTS' Star's Revealing Pics
    Next
    Watch XFINITY TV Online
    History Hits
    Classic Comedy
    Fox Toons
    Reality Rewind
    'Pawn Stars'

    You are addressing an audience that is not affiliated with Apple.  We can't help you.

Maybe you are looking for

  • RTC-5161 Error when deploying a MAP

    Hello, I recently upgraded OWB 11.1.0.7 to 11.2.0.3 and within the Design Center, I receive error RTC-5161 when deploying a MAPPING. My process flows and all other objects deploy successfully but the MAPPING pops up the RTC-5161 error Here is how I w

  • Error with RSA Auth Manager 9.1.0.7 User Recon OIM11g R1

    Hi, i'm trying to run the job RSA Auth Manager User Recon but i see this error : oracle.iam.connectors.common.ConnectorException: and in the server log i seee this : [2013-03-06T18:46:37.994-05:00] [oim_server1] [ERROR] [] [OIMCP.RSAM] [tid: OIMQuart

  • Start-up "noise"

    I have recently upgraded my old G4 to a new iMac. I have a "sub-sat speaker system (with it's own volume control) that plugs in the ear phone socket. On my old G4, the start-up sound came out of the sub-sats and volume was controllable by the level o

  • Material ledger accounting entries

    Dear All, i need material ledger related all accounting entries. I am confused with some entries.please do the needful urgent. regards K S Rangarajan

  • How to upgrade from 9.2.0.1 to 9.2.0.3

    i want to use the HTML DB but i need a higher version of the database how can i do so , and is this affect the data and what is the new features in 9.2.0.3 that not exists is 9.2.0.1