Re: weird dashed line....

Hello, Im getting a weird vertical flashing dashed line through my exported videos? Any help would be greatly appreciated!

Ok. just for some background: I shoot everything HDV 1440 & export 720x480/letterbox as our current Nexus sys is SD only. HD down converted to SD, is better than SD.
So, below are the settings per Leightronix/Nexus:
Format: MPEG2
output: 720x480 29.97 Quality 5.0, Lower
VBR, 2 Pass, Min 6.00, Target 8.00, Max 10.00 Mbps
MPEG, 224 kbps, 48khz, 16bit, Stereo

Similar Messages

  • Dash lines causing weird PDF

    Hi, I have this FREEHAND MX file which uses the font DAX
    (converted to paths). There is a dashed line in the layout.
    After exporting the file as MACINTOSH EPS, I have distilled
    it on ADOBE DISTILLER 6.0.
    In the PDF file all the "I" and "L" letters became dashed.
    Most weird of all, if I use different patterns of dash for that
    line, the "I" and "L" letters immitate it.
    The same MACINTOSH EPS can be rasterized in PHOTOSHOP. In
    that case, with normal results.
    I can send JPEGs illustrating the effect, if anyone wants it.
    Thank you for any ideas.

    Albird wrote:
    > The same MACINTOSH EPS that generates the weird PDF
    could be imported to
    > ILLUSTRATOR CS2 and saved as PDF without any problems,
    so I think that's my
    > solution for now.
    I looked at your files. That has to be one of the strangest
    thing I've ever
    seen in FH. The same thing happens here when printing to
    Postscript file and
    Distilling. It looks like a striped fill rather than a dashed
    stroke is
    being applied, but as you say, it picks up the size of the
    dashes in the
    stroke.
    I'm glad the AI CS2 route works for you. I had saved the FH
    file back to
    FH9, opened that in Illustrator 10 and saved as PDF. The same
    striped
    letters were present in the PDF!
    A few things corrected the error -- making each line of
    lettering into a
    composite path, or changing the dashed stroke to a solid
    stroke, or changing
    the fill of the lettering to a different color, or distorting
    the shape of
    the letters.
    Because the letters affected are perfect rectangles which, in
    the font
    creation software, may have been drawn with a rectangle tool,
    they may have
    some kind code attached that conflicts with FH's Postscript
    code for dashes.
    Does this happen every time you use this font?
    Have you seen this happen with any other font?
    It would be interesting to contact the font designer and let
    him know what's
    happening.
    Judy Arndt

  • Dashed line / dotted line coupon effect? FCPX

    Seeing if anyone has any tips or tricks on how to create a dashed line type of effect around an object in a video, making it look like a coupon or like it was cut out of paper?
    The line doesn't necessarily progress around the object in the video -- it can be a static layer. Though, if anyone DOES have tips on animating the lines, that could be cool, too!
    Thanks in advance.

    Familiar with Motion?
    Draw a short horizontal line. Select the Anchor point tool and drag the center to the right end of the line you drew. Replicate the line. Change the Arrangement to Outline.  In the Cell Controls section, check the Align Angle option.
    You will now have a dashed outline rectangle. You can publish the Size parameter and change the size of the rectangle with the Width and Height parameters from Size. You can increase the number of line segments with the Points parameter and you can animate the outline with the Offset parameter (but there's a catch.)
    When animating the offset, you will have line segments extend "outside" the base rectangle shape briefly (since they are aligned to the side they are attached to, then snap to another side when the anchor point changes over from one side to the next.)
    To get around that, you need to create another rectangle that is 100 by 100 and link the Scale X and Scale Y parameters (separately) to the Width and Height of the Replicator (in the Link behavior, set the Scale to 10 for both.) Drag the rectangle onto the Replicator in the Layers List and hold until you get the popup menu -- select Add Mask to Object. [PS -- you should center the Replicator AND the rectangle before adding the rectangle as a mask!] [You can create a square rectangle then select the Shape > Geometry tab and type in the exact points: (-50, 50); (50, 50); (50, -50); (-50, -50) to create the exact size you need.]
    If the mask is perfectly aligned, you can now animate the dashed line and it won't look weird. You can change the width and height of the replicator and the mask will change in perfect synchronization.
    You can also make the dashes longer or shorter by manipulating the Scale X parameter in the Cell Controls of the Replicator. If you made the original line white, you can colorize from the Cell Controls as well.
    After that, you'll need to figure out if you want a solid color background; a drop zone or effect source/title background; what kind of text you want inside the dashed outline (or you can manually place a Basic Title in FCPX if you like); etc...
    Hope this helps...  If  you need further help with this, let me know.

  • Disappeared dashed lines options

    very often when I want to adjust the spacing for the dashed lines in Indesign cs6, the options disappear in the stroke flyout panel.
    Strangely, it remains disappeared for the specified file forever. The workaround that I do for this is that I open a new file, make the dashed lines as desired, (yeah, the options come in a new file), then copy paste it. What exactly is causing this weird behaviour?

    arjun2 wrote:
    Here's my screenshot with everything selected. I have yet to trash my preferences. currently learning to backup my shortcuts . Does this problem occur in the latest version of indesign which is CC?
    I'm always beware of new versions, often they are heavier and take longer time to process, e.g. photoshop cs6 i found slower than cs5
    You haven't select the Dashed Line at the bottom of the Type options.
    You have 2 different stroke weights selected, that's why weight shows as nothing.
    Bold part: That's just not true for everyone, in fact I find each version of all the Adobe suites to run perfectly fine - there may be something you need to change on your system to get the programs to work better. But I never notice any difference from version to version regarding longer times to process.

  • How to change draw dashed line with arrowhead (not straight)?

    Hi friends,
    The following code sinept draws an arrowed line from a given point to the other point. I want to know how it can changed to be dashed line as well? I would appreciate it if anybody help me for doing such changes.
    Thanks in advance,
    Reza_mp
    import javax.swing.*;
    import java.awt.*;
    import java.util.ArrayList;
    public class ArrowExample extends JFrame
        enum ArrowHead {
            HEIGHT(10), WIDTH(10);
            int n;
            ArrowHead(int n) {this.n = n;}
            public int value() {return n;}
        java.util.List<Arrow> arrows;
        BasicStroke stroke;
        private class Arrow {
            Point start;
            Point end;
            Polygon arrowHead;
            public Arrow(Point start, Point end) {
                this.start = start;
                this.end = end;
                double direction = Math.atan2(end.y - start.y, end.x - start.x);
                System.out.println(direction * 180/Math.PI);
                arrowHead = new Polygon();
                arrowHead.addPoint(0, 0);
                Point p1 = rotate(ArrowHead.WIDTH.value()/2, ArrowHead.HEIGHT.value(), direction);
                arrowHead.addPoint(p1.x, p1.y);
                Point p2 = rotate(-ArrowHead.WIDTH.value()/2, ArrowHead.HEIGHT.value(), direction);
                arrowHead.addPoint(p2.x, p2.y);
                arrowHead.addPoint(0, 0);
                arrowHead.translate(end.x, end.y);
            public Point rotate(int x, int y, double dir) {
                Point p = new Point();
                double r = Math.sqrt(x*x + y*y);
                double theta = Math.atan2(y, x);
                p.setLocation(Math.round(r*Math.cos(theta + dir + Math.PI/2)),
                              Math.round(r*Math.sin(theta + dir + Math.PI/2)));
                return p;
            public void draw(Graphics2D g) {
                g.drawLine(start.x, start.y, end.x, end.y);
                g.drawPolygon(arrowHead);
                g.fillPolygon(arrowHead);
        public ArrowExample() {
            super("Arrows");
            setDefaultCloseOperation(EXIT_ON_CLOSE);
            JPanel p = new JPanel() {
                protected void paintComponent(Graphics g) {
                    super.paintComponent(g);
                    Graphics2D g2d = (Graphics2D)g;
                    Stroke oldStroke = g2d.getStroke();
                    Color oldColor = g2d.getColor();
                    g2d.setStroke(stroke);
                    g2d.setColor(Color.black);
                    for (Arrow a : arrows)
                        a.draw(g2d);
                    g2d.setStroke(oldStroke);
                    g2d.setColor(oldColor);
            p.setBackground(Color.white);
            add(p, BorderLayout.CENTER);
            stroke = new BasicStroke(3);
            arrows = new ArrayList<Arrow>();
            arrows.add(new Arrow(new Point(10,10), new Point(100,100)));
            arrows.add(new Arrow(new Point(300,10), new Point(300,100)));
            arrows.add(new Arrow(new Point(450,450), new Point(400,100)));
            pack();
            setSize(500, 500);
        public static void main(String[] args) {
            setDefaultLookAndFeelDecorated(true);
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    new ArrowExample().setVisible(true);
    }

    Change the draw method as follows:
            public void draw(Graphics2D g) {
                Stroke s = g.getStroke();
                g.setStroke( new BasicStroke( 3.0f, BasicStroke.CAP_BUTT,
                   BasicStroke.JOIN_MITER, 1.0f, new float[] { 10.0f, 10.0f }, 0.0f ) );
                g.drawLine(start.x, start.y, end.x, end.y);
                g.setStroke( s );
                g.drawPolygon(arrowHead);
                g.fillPolygon(arrowHead);
            }

  • Problem with dashed line spacing when printing to pdf

    Hi all,
    this may be a problem with my pdf program (I use bluebeam), but maybe someone will have an idea how to fix it whether in indesign or bluebeam.
    so I made a dashed line using the stroke command in indesign. I need to have the spacing set to 3pt dash and 2pt space. I also need to keep the lineweight to 0.5...this all works fine and appears correctly in indesign when I preview
    the problem is that some of the dashed lines, but not all of them, change size and spacing in the pdf when I view it. it seems to change when I zoom in and out as well. I thought maybe this was just some odd feature with bluebeam and it would still print to the correct size, but it does not, it prints the lines as different sizes. does anyone have an idea why this happens and how to fix? ive viewed and printed from adobe reader and it seems to be okay there but this file will be accessed by multiple other people and they may not be opening and printing in adobe reader..
    thanks guys

    When you export a PDF you will notice that you are exporting to Adobe PDF. Using any reader beyond Acrobat Pro or Reader is a crapshoot.
    For issues with Bluebeam I suggest you contact the developer.

  • Drawing dashed line or dotted line in a flex line chart

    Friends,
    I want to draw a line chart which should be either dotted or dashed.
    since there is no component like dashed line chart, can anyone help me in creating one.
    i think if i extend the line series component, then i can draw that.
    but am stuck there. pls help people.
    Regards,
    Anoop

    Try looking [url http://www.macdevcenter.com/pub/a/mac/2002/03/22/vertical_text.html]here.
    : jay

  • Illustrator CS2 adds mysterious white dashed line thru my linked Photoshop file

    Im using Windows XP, Illustrator & Photoshop CS2, Acrobat 7.0 Professional.
    I have an illustrator file with a linked PSD file that has this mysterious thin white dashed line going through the entire image & I have no idea what it's from or how to repair it.
    My trouble shooting thus far includes:
    - In illustrator - I hide all the layers to see if there was an odd graphic on another layer that was causing the line, nothing. I tried to select the dashed line, not possible. I've created a PDF of the file, and the dashed line is in the PDF too (to verify it wasn't just Illustrator). Oddly in both Acrobat & Illustrator when I zoom in & zoom out, the dashes maintain their on-screen viewing proportions (like the dash spaces recalculate to the same tiny thin dashed line no matter what zoom Im at)
    - In Photoshop - I zoomed in until I couldn't zoom no more and there is not the slightest dashed line in the graphic.
    Lastly, I have this exact linked setup repeated throughout several different files (basically its the same ad but laid out to different dimensions for each)... and none of the others have this mysterious white dashed line.
    here's a screen capture from Acrobat... zoomed into 6400%
    argh - can someone help? Thanks!
    kristin

    Hi guys (and sorry for the tremendous delayed response).
    No the line doesn't print on my local b/w laser printer. However I have seen the lines print in 1 newspaper publications... (this is out of 50 different publications)
    Yes, the image is rotated slightly in illustrator, and I always flatten prior to making the PDF (cuz of the transparency/drop shadow).
    It's really making me nervous that ALL our ads have these lines appearing during onscreen viewing... Im making a new batch of ads for our campaign & there are more lines than before!
    Any tips theories remedies my friends?

  • Dashed lines in Flash CS3

    Hi all, Is there a way to make the end caps of an imported
    dashed line (say from Illustrator or Canvas) straight? They seem to
    always come out round.
    I have tried making them straight lines instead of dashed
    both before and after importing them to Flash but the end caps
    still come out rounded. Flash does not let me change the end caps
    of dashed lines at all. So even if I set it correctly when it's
    still a straight line, as soon as I turn it into a dashed line, it
    turns round and I can't change it.
    Very frustrating.
    Thanks for your help,
    Aryeh

    Seems like an oversight from Adobe to me. Submit a bug report
    at the following address, and maybe they will add that
    functionality.
    http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • Draw a continuous dashed line

    I suspect the answer is simpler than I expect, but it has been eluding me none the less, so I've been wondering how to draw a continuous dashed line, as per the title. I'm cleaning up a photo I made a while back and would to create a flowing line and set it to be dashed as you can do in Adobe Illustrator, where you could draw a line and edit the line type to be dashed, or dotted, or a bunch of snowflakes or what have you.
    I can hear you asking, "why not just use Illustrator?". Well, I do not have it. I used Illustrator and Photoshop CS6 in an art class senior year of high school, but it has been a little while so I'm trying to re-learn the ropes a little bit.

    I was able to use Filter - Other - Minimum with a particular set of parameters, followed by a Median filter to smooth the results, to get something not unlike what you showed, but given that I derived the parameters empirically from your very limited image, at exactly the size given, I wouldn't be surprised if the characteristics of this sequence of operations are way off from what you want.
    In any case, if you'd like to see this "proof of concept" action to understand what I did, here it is:
    http://Noel.ProDigitalSoftware.com/ForumPosts/BlackFindingAction.zip
    Keep in mind this will be VERY sensitive to the thresholds and sizes chosen for the various steps, and is crafted to work at an image with just the resolution you showed above.
    -Noel

  • How do I create a dashed line growing longer?

    Hi all,
    I want to create a dashed line that grows longer. I made two keyframes (at frame 1 and frame 15) with dashed lines of different lengths. Motion or Classic Tween just makes the small line move to the right and then turn into the long line immediately at frame 15.
    Shape Tween gets me the closest (actually shows a line growing), however, it turns into a solid line in the intermediate steps.
    My next idea is to create a mask that slowly reveals more of the line. Is that the best solution?
    Thanks!

    yes, use a tweened mask.  that's the easiest solution.

  • How to create a dashed line for cell border

    Hi,
    Is anyone know How to apply the style for cell border to get the dotted line in WinRT 
    In WPF i will get the dotted line for cell border using this way.
    <DrawingBrush Viewport="0,0,20,20" ViewportUnits="Absolute" TileMode="Tile">
    <DrawingBrush.Drawing>
    <DrawingGroup>
    <GeometryDrawing Brush="Black">
    <GeometryDrawing.Geometry>
    <GeometryGroup>
    <RectangleGeometry Rect="0,0,50,50" />
    <RectangleGeometry Rect="50,50,50,50" />
    </GeometryGroup>
    </GeometryDrawing.Geometry>
    </GeometryDrawing>
    </DrawingGroup>
    </DrawingBrush.Drawing>
    </DrawingBrush>
    Thanks in Advance,

    check this thread: 
    http://stackoverflow.com/questions/14673643/windows-store-apps-how-to-draw-a-dashed-line
    Fouad Roumieh

  • Can not draw a solid line after drawing a dashed line

    I have been using a Graphics2D object in order to paint onto a buffered image and then transition that to a panel for viewing. The way the program works requires me to create the dashed line first through BasicStroke. After doing this I have tried to reset the setStroke with multiple new pens including BasicStroke(), BasicStroke(1.0f), and BasicStroke(1.0f, BasicStroke.CAP_BUTT, BasicStroke.JOIN_BEVEL, 0.0f, new float[] {1,0}, 0.0f).
    Any ideas as to why I am still incapiable of drawing a solid line?

    Any ideas as to why I am still incapiable of drawing
    a solid line?Without seeing any code, I could guess, but my guess and a quarter won�t even buy you a newspaper around here now a days.
    Seriously though, you need to create a short, self contained, compilable example. Look here for an explanation on how to create this:
    http://www.physci.org/codes/sscce/

  • Dashed line "Dash" & "Gap" options

    Hey all, looking for a CS3 tip here.
    I use a lot of dashed strokes, and I've found that when I enter values in the Dash and Gap boxes, I later can't delete the values entirely. I can delete whatever I entered, but Illustrator won't leave the box blank - it now fills the box with 0 point.
    For example, I create a path, turn on Dashed Line, then enter 2 point Dash, 1 point Gap, and accidentally Tab to the third box. Once the focus has been put on that third box, it won't remain blank, the best I can have is 0 point. So now continuing the example, my stroke is 2 point dash, 1 point gap, 0 point dash (slightly visible on screen, invisible in print), 1 point gap, and repeat. The net effect is that it looks like a 2 point dash followed by a 2 point gap.
    Any way to reset the box to contain NO information? It's bugging me because once I've created one of these "bad" dashed strokes, I either have to fudge my values to make it look right, or quit illustrator and start over because the bad values are persistent any time I turn on the dashed line checkbox until Illustrator is quit.

    I'm deleting everything in the box, and just to be sure, I've tried clicking in the box and hitting command-a to select all, then hitting delete. But whether I do it that way or drop the cursor in at the end tap delete repeatedly, it still auto-fills "0 pt" when I leave the box.
    As to the second point, I always try emptying the boxes from right back to the left. I get the effect you describe if I empty the first box - they all reset to blank and the "dashed line" checkbox changes to unchecked. But the moment I try to put a dashed line on a path again, it refills with the previous setting, including the 0 pt entries on the right most boxes that I would hope to stay blank.
    I take it your installation doesn't replicate the behavior I'm experiencing? I will be upgrading to Leopard just as soon as I have a slump - I can just wait to see if a clean installation of Illustrator takes care of it.
    Thanks.

  • Dashed line showing up on placed psd in indesign

    Please help! I created flyer in indesign and placed some PSD graphics into the indesign file.  However when those files are placed on top of a "dotted" line—after printed a white "dashed" line appears.  (the line does not appear in digital file at all—only in print file, so I had to post a crappy scan, but I think it gets the point across). 
    Any insight to this issue?
    Much Thanks!
    Desiree

    Okay, another (probably bad) suggestion: Make a new 'rich black' swatch and change all your problem objects to use the new swatch.
    This screenshot is using a mix of C=20 M=10 Y=10 K=100 that I threw together for a sample. The left block is the 'rich black' and the right is 100% K only. InDesign displayed both as the same color, but when exported to PDF, the difference was visible (from which the screenshot was captured).
    Other mixes I've found referenced elsewhere are:
    C=80 M=80 Y=70 K=90
    C=35 M=45 Y=35 K=100
    C=45 M=35 Y=35 K=100
    If you were using an outside vendor, I'd suggest getting in contact with them to find out what their preferred blend is. Otherwise, since you seem ot be doing things in-house, you can make a test page with a variety of mixes to determine which one produces the level of black that you want from your Konica.
    If you are using a Mac, you may be able to locate an applescript code on the forums which will allow you to globally change all objects using the [Black] swatch with another swatch in your list.
    YMMV
    -mt
    And Peter responded while I was messing around. Lots of combinations.
    Aaannnd.. perhaps I should have read the remainder of the posts instead of jumping into this... ^_~
    Hope it all helps get this resolved for you, anyway!
    Message was edited by: MT.Freelance

Maybe you are looking for

  • Adobe digital editions (help needed asap)

    I keep getting an error message saying adobe digital editions 2.0 has stopped working, How do i fix

  • ERM Role generation gives error

    Hi, All the fields are checked and the configuration is meeting the document guidelines for ERM. I am getting error while trying to generate the role from ERM and the message is " Cannot generate role Z:TB_TS_TEST1234567890987_S001  provide valid & 1

  • Creating FCE files for Adobe Premier

    I have miniDV videotapes of some corporate presentations that I need to provide in a format to a client so they can use it on their intranet. In providing DVD's burned on my Panasonic consumer deck, they have not been able to get the media off the DV

  • BlackBerry Desktop will not install

    When tring to install BlackBerry Desktop I get ( Error 1719 Windows Installer service could not be accassed. Contact your support personnel to verify that it is properly registered and enabled. I am running Windows XP Professional x64 Edition. I got

  • Help on library software

    Greetings friends, Answer my questions completely , you get 5 dukes!!!!! and most of all a big Thank you. I am making a library software, and it contains a search engine that scans the details of books and other library documents. I need to scan the