How to Stop Flickering Straight Line in CS4

Hi all,
For some reason CS4 cause all my straight lines to flicker. For example, if I have a video of a form with lots of straight lines on it, the rendered video of the form flickers like crazy?? I've tried to use the Anti-Flicker Filter but it made it worse?
Please!

More information is good
Read Bill Hunt on a file type as WRAPPER http://forums.adobe.com/thread/440037?tstart=0
What is a CODEC... a Primer http://forums.adobe.com/thread/546811?tstart=0
What CODEC is INSIDE that file? http://forums.adobe.com/thread/440037?tstart=0
For PC http://www.headbands.com/gspot/ or http://mediainfo.sourceforge.net/en
For Mac http://mediainfo.massanti.com/

Similar Messages

  • How to draw only straight line instead of angled one??

    Dear friends,
    I saw a very good code posted by guru here(I think is camickr),
    But I tried to change it and I hope to draw only straight line instead of angled one, can you help how to do it??
    Thanks so much.
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class DrawingArea extends JPanel
         Vector angledLines;
         Point startPoint = null;
         Point endPoint = null;
         Graphics g;
         public DrawingArea()
              angledLines = new Vector();
              setPreferredSize(new Dimension(500,500));
              MyMouseListener ml = new MyMouseListener();
              addMouseListener(ml);
              addMouseMotionListener(ml);
              setBackground(Color.white);
         public void paintComponent(Graphics g)
              // automatically called when repaint
              super.paintComponent(g);
              g.setColor(Color.black);
              AngledLine line;
              if (startPoint != null && endPoint != null)
                   // draw the current dragged line
                   g.drawLine(startPoint.x, startPoint.y, endPoint.x,endPoint.y);
              for (Enumeration e = angledLines.elements(); e.hasMoreElements();)
                   // draw all the angled lines
                   line = (AngledLine)e.nextElement();
                   g.drawPolyline(line.xPoints, line.yPoints, line.n);
         class MyMouseListener extends MouseInputAdapter
              public void mousePressed(MouseEvent e)
                   if (SwingUtilities.isLeftMouseButton(e))
                        startPoint = e.getPoint();
              public void mouseReleased(MouseEvent e)
                   if (SwingUtilities.isLeftMouseButton(e))
                        if (startPoint != null)
                             AngledLine line = new AngledLine(startPoint, e.getPoint(), true);
                             angledLines.add(line);
                             startPoint = null;
                             repaint();
              public void mouseDragged(MouseEvent e)
                   if (SwingUtilities.isLeftMouseButton(e))
                        if (startPoint != null)
                             endPoint = e.getPoint();
                             repaint();
              public void mouseClicked( MouseEvent e )
                   if (g == null)
                        g = getGraphics();
                   g.drawRect(10,10,20,20);
         class AngledLine
              // inner class for angled lines
              public int[] xPoints, yPoints;
              public int n = 3;
              public AngledLine(Point startPoint, Point endPoint, boolean left)
                   xPoints = new int[n];
                   yPoints = new int[n];
                   xPoints[0] = startPoint.x;
                   xPoints[2] = endPoint.x;
                   yPoints[0] = startPoint.y;
                   yPoints[2] = endPoint.y;
                   if (left)
                        xPoints[1] = startPoint.x;
                        yPoints[1] = endPoint.y;
                   else
                        xPoints[1] = endPoint.x;
                        yPoints[1] = startPoint.y;
         public static void main(String[] args)
              JFrame frame = new JFrame("Test angled lines");
              frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
              DrawingArea d = new DrawingArea();
              frame.getContentPane().add( d );
              frame.pack();
              frame.setVisible(true);
    }

    Change the AngledLine class to store two points instead of 3 points (I would rename the class to be StraightLine). The code is much simpler because you just store the starting and ending points and you don't need to calculate the middle point.

  • How do  put a straight line over an "o" such as in Roti Grille?

    How do I get a straight line over a letter "o" such as in Roti Grille?
    Thanks

    PeterBreis0807 wrote:
    Unless there is something else out there that I am unaware of, Roti grill is an Indian cooking method.
    Why the accent is needed I don't know, I was unaware it used one.
    One more time you read wrongly
    The OP wrote "*Roti Grille*" not "*Roti Grill*"
    In French rôti requires the accent and grillé requires its accent too !
    Yvan KOENIG (VALLAURIS, France) jeudi 28 janvier 2010 22:31:33

  • How to make a straight line of points in a curve in CS6

    In PSCS5 and earlier, I used to be able to make a straight line of points in a curve by placing 9 points on the straight line curve.  I did this by drawing a small straight line at the bottom of the curve using the pencil tool and then clicking the curve point icon.
    I can't seem to do this with CS6.  Any thoughts?
    Thanks,
    Matthew Kraus

    Did you not ask a similar question a while ago?
    http://forums.adobe.com/message/4524084#4524084

  • How to stop executing a piece of code after displaying the error message?

    Hi All
    I'm new to ADF, I am doing validation in java class. Like when i click the button, the control goes to a particular method, where i have written the below statements
    public void fetchValues(ActionEvent actionEvent){
    String firstName = getFirstName() == null ? "" : getFirstName();
    String secondName = getSecondName() == null ? "" : getSecondName();
    if(firstName.equals("") && secondName.equals(""){
    FacesContext context = FacesContext.getCurrentInstance();
    FacesMessage msg = new FacesMessage(FacesMessage.SEVERITY_ERROR, null, "Please enter the values");
    context.addMessage(null, msg);
    System.out.println("Exited"); // Even if validation fails, this line is being executed. Could anyone tell me how to stop executing this line if validation fails ?
    Regards
    Venkat

    Just add a return; at the point you want to stop execution.
    public void fetchValues(ActionEvent actionEvent){
    String firstName = getFirstName() == null ? "" : getFirstName();
    String secondName = getSecondName() == null ? "" : getSecondName();
    if(firstName.equals("") && secondName.equals(""){
    FacesContext context = FacesContext.getCurrentInstance();
    FacesMessage msg = new FacesMessage(FacesMessage.SEVERITY_ERROR, null, "Please enter the values");
    context.addMessage(null, msg);
    return;
    // UNREACHABLE System.out.println("Exited"); // Even if validation fails, this line is being executed. Could anyone tell me how to stop executing this line if validation fails ?
    }Timo

  • Drawing Lines Photoshop CS4 using JavaScript

    I am new to javascript and have read a manuel on the basics of javascript in regards to photoshop. I was just wondering how to draw a straight line using javascript. Thanks.

    You could start by looking at the sample scripts that ship with photoshop to see a coding sample of stroking a selection. Then look at the doc on making selection and paths etc.
    // Copyright 2002-2007.  Adobe Systems, Incorporated.  All rights reserved.
    // Create a stroke around the current selection.
    // Set the stroke color and width of the new stroke.
    // enable double clicking from the Macintosh Finder or the Windows Explorer
    #target photoshop
    // in case we double clicked the file
    app.bringToFront();
    // debug level: 0-2 (0:disable, 1:break on error, 2:break at beginning)
    // $.level = 0;
    // debugger; // launch debugger on next line
    if (app.documents.length > 0)
        if (app.activeDocument.activeLayer.isBackgroundLayer == false)
            var strtRulerUnits = app.preferences.rulerUnits;
            app.preferences.rulerUnits = Units.PIXELS;
            var selRef = app.activeDocument.selection;
            var offset = 10;
            var selBounds = Array(Array(offset, offset), Array(app.activeDocument.width - offset, offset), Array(app.activeDocument.width - offset, app.activeDocument.height - offset), Array(offset, app.activeDocument.height - 10));
            selRef.select(selBounds);
            selRef.selectBorder(5);
            var strokeColor = new SolidColor();
            strokeColor.cmyk.cyan = 20;
            strokeColor.cmyk.magenta = 90;
            strokeColor.cmyk.yellow = 50;
            strokeColor.cmyk.black = 50;
            app.displayDialogs = DialogModes.NO;
            selRef.stroke(strokeColor, 2, StrokeLocation.OUTSIDE, ColorBlendMode.VIVIDLIGHT, 75, true);
            app.preferences.rulerUnits = strtRulerUnits;
            selRef = null;
            strokeColor = null;
            selBounds = null;
        else
            alert("Operation cannot be performed on background layer");
    else
        alert("Create a document with an active selection before running this script!");

  • When I record an audio track, there is a waveform. When I stop recording, the waveform disappears and becomes a straight line. It also disappears from the track edit window. But the sound is there. How can I stop the waveform from disappearing?

    When I record an audio track using Logic Pro X, there is a visible waveform which appears as I record. When I stop recording, the waveform disappears and becomes a straight line. It also disappears from the track edit window. But the sound is still there. How can I stop the waveform from disappearing? And can I do something to view it after it has disappeared? Anyone know the anser?

    In Logic:
    Preferences/Audio Set Recording Delay to 0 <zero>
    This should always be set to zero unless a specific set of circumstances exist and you're audio drivers do not report position correctly.
    On occasion, usually when importing a Logic 9 project, Logic-X randomly changes this to a negative/positive number.  It's actually a bug in Logic, as it should always display the waveform.

  • How do I make a pic in final cut Pro stop  flickering?

    how do I make a pic in final cut Pro stop  flickering?

    Question: how do I make a pic in final cut Pro stop  flickering?
    Answer: It depends on what is causing the flickering.  It could be due to the pixel dimensions being too large for the Sequence settings in FCP.  It could be due to thin horizontal lines in the image.  It could be due to areas of the image in high contrast with each other.   Or it could be due to a combination of several factors.
    If the image is too large, reduce the pixel dimensions to a more reasonable size.
    If it's due to thin horizontal lines, deinterlace the image, or slightly blur the lines in Photoshop.
    If it's due to areas of high contrrast, reduce the contrast of those areas in Photoshop.
    In FCP you can also try applying the Flicker filter to the image in the Timeline and/or a Gaussian blur filter with a setting of around 0.2 or 0.3
    -DH

  • N Mail, when using "reply all" why does Mail automatically include my email address in the cc line? Whey would I want to include my email address in an email I am sending.  Anybody have any idea how to stop this?

    In Mail, when using "reply all" why does Mail automatically include my email address in the cc line? Whey would I want to include my email address in an email I am sending.? Anybody have any idea how to stop Mail from including my email address in the cc line when using "reply all"?

    Automatically cc myself is not checked.  I did find out that if you have multiple email address that all of them need to be associated with "My Contact" tab.  Thanks

  • How can i get Radio buttons  and parameters  in a Single Straight Line

    Hi Experts,
    How can i get Radio buttons  and parameters  in a Single Straight Line...
    Example:
       r1 r2 p1 p2.....
    Cheers,
    Priya
    Points granted.

    Write the following code for the selection screen:
    DECLARATION OF PARAMETERS.
    SELECTION-SCREEN: BEGIN OF BLOCK select WITH FRAME TITLE text-001,
                      BEGIN OF LINE.
                      SELECTION-SCREEN COMMENT 1(10) FOR FIELD p_detail.
                      PARAMETERS p_detail RADIOBUTTON GROUP r1 DEFAULT 'X'.
                      SELECTION-SCREEN COMMENT 25(10)  FOR FIELD p_summry.
                      PARAMETERS p_summry RADIOBUTTON GROUP r1.
    SELECTION-SCREEN: END OF LINE,
                      END OF BLOCK select.
    this will solve your poblem surly. reward the points if you find helpful
    Regards,
    Siddarth

  • How to make a macron in Pages '09? (a straight line over a letter)

    Does anyone know how to do a macron (you know a letter with a straight line indicating a long vowel) over a letter in Pages? I am using Hoeffler font, and I can't figure it out. I could really use some help.
    Thanks
    Maggi

    +Menu > Edit > Special Characters > Punctuation+
    Or for as you type:
    +Apple > Menu > Systems Preferences > International > Input Menu > U.S. Extended Keyboard or Maori+
    then close the panel.
    In Finder on the upper menubar, click on the +American flag icon > select "U.S. Extended" or "Maori"+
    Then to get the macron type first the "dead keys" +option with a" then the character you want the macron over.
    The macron may or may not actually be in Hoeffler, but OSX should find it from a font that does have it, which may give you an odd character in the middle of your text depending how closely they match.
    Some links for you:
    http://tlt.its.psu.edu/suggestions/international/accents/codemac.html#osx
    http://www.tomrobinson.co.nz/work/macronsosx.html
    http://www.personal.psu.edu/staff/e/j/ejp10/psu/gotunicode/macron.html

  • How Do I Draw An Angled Straight Line?

    Hello,
    I'm restoring an old B&W photo of my Grandmother walking in Atlanta in around 1932. I'm trying to make the power lines of the trolley cars as realistic as possible. Consequently, I'd like to be able to draw these power lines better than they appear in the photo - I've cloned them in and tried to enhance them from the way they are originally, but they are not as straight and authentic as I would like them to be.
    Of course, I know how to draw a straight perpendicular or horizontal line, but is there also a way to draw them when they are at an angle?
    Where are you, Buko and Lundberg02 - Hope you guys are doing ok.
    Thanks for any help you can muster up.
    Burtron

    Scott,
    I just did it! And to think that I went all that time trying to draw those lines as steady as I could - Wow, I thought that surely Adobe would have a way. I just waited too long to get around to asking.
    What a difference this will make!
    Also, in this same old photo is a building that was torn down long ago, I'm sure, but it's after working with it a while, and using the contrast to bring out the images on this building, I began to realize that the building had more and more images - I mean all over it - It's amazing - I don't think that anyone these days would go to all the trouble that this guy did - whoever he is - That's my next challenge - I need to find out who this architect was. I've done all kinds of searches on google, but to no avail. Going to contact the state archives.
    Do you have any suggestions?
    Thanks Again,
    Burtron

  • How to draw a straight  dotted line on Bar chart at 70%?

    Hi
    Could you please let me know how to draw a straight dotted line on BAR CHART at 70%?
    Thank you

    Hi,
    This may vary depending on what version of crystal you are using.
    Right click on the graph & go to 'chart options' & choose 'Grids'
    In the grids pane go to the grids tab.  From there check the 'draw custom line at' and specify where you want to draw the custom line.
    Once the line is drawn highlight the line, right click and go to 'chart options' & 'selected item'.
    select what format you want the line to look like (choose the dashed one).
    good luck!

  • When send email with emoticons to a pc user, emoticons show as an empty box. Also, email content has a symbol on every line. How to stop this from happening?

    When send email with emoticons to a pc user, emoticons show as an empty box. Also, email content has a > symbol on every line. How to stop this from happening?

    Dear Mr. Toad (my all-time favorite ride at Disneyland ;-) ..
    Thanks so much for your detailed reply.. my netbook is in the bedroom, turned off.. I (so far) only use it in the evening, in the bedroom.. I've saved your response, and will try your suggestions, and let you know if they solve the problem I described. I really appreciate you taking the time to post such a detailed reply..
    I can't answer your Thunderbird "configuration" questions, because I'm in the living room, using the crap Vista laptop, on which I plan to install Thunderbird, and then take Windoze Mail out in the street and drive over it a few times.. I'll get back to you one way or the other, and let you know if your instructions solved the problem, or not..
    I don't understand why Thunderbird "out of the box", so to speak, simply doesn't forward HTML emails with embedded graphics, (like Outlook Excess, and Winblows Mail do).. without having to go through those steps. I personally HATE HTML email, but over the years, it's become more and more prevelant.. so it's a problem I must fix..
    Thanks again..
    Harv..

  • Can a Lightroom adjustment brush draw a straight line by clicking the start and stop points?

    Can a Lightroom adjustment brush draw a straight line by clicking the start and stop points?

    studioMac wrote:
    I'm trying to selectively adust areas of an image in Lighroom. eg: a window frame in an architectural photo, and so being able to make straight lines with the adjustment brush would be very useful.
    I agree it would be useful. It's something that's been asked for. The best thing is to keep requesting at the Lightroom feature request forum

Maybe you are looking for

  • Is there any hope for a Nano 6th gen that went through the washing machine?

    Is there any hope for a Nano 6th Gen that went through the washing machine?  All of the devices contents are showing up in iTunes when connected but the device itself is not working.

  • How to install SharePoint server 2013 in windows server 2012 R2

    Hi, I have SharePoint server 2013, and I want to install it on windows server 2012 R2 version. Can you guide me on how to install it?, or you if you got the download link of the full product of the latest release of SharePoint 2013 with sp1, please g

  • Classic PCA reports in New GL environment.

    Hi, We have now implemented New GL.  Also applied EHP3 .  In EHP3 enviornment, there is a facility by which we can convert classic PCA reports (report tree : KE5A) into new GL, that is, practically changing the tables from GLPCT to FAGLFLEXT.  This h

  • Loading images with properties in Forms6

    Hello ! I would like to use Mmix32.ocx with Forms6 to have properties and methods of loaded images ! But I don't know how , cause I imported Ole library interfaces MMix control without results ! I need an exemple ! thanks !

  • Please help me turn it on

    Hi, first time, and it may be the easiest question ever, I hope. When I power on my ibook, it goes to a screen with a circle and line thro it. I had a mac guru update and install and things haven't been good since. Anyways, He did give me a secret co