Problem with stills - output window

I am new to Premiero Pro.
I have imported a still into my project and the preview window displays this perfectly but when I add to and play the timeline, the still image
in the output window is cropped (edge's of the still dont display)
The image is not a particulary high resolution, 2048 i think
Any one know why this happens please ? and can it be corrected.
Thanks
Chris

Hi All
thanks for your replies. Will try these and let you know
Thanks
Chris

Similar Messages

  • Problem with the Finder window in Chrome

    Hello,
    I have a problem with my finder window in Chrome.
    Since the window isn't a separate window anymore, but stuck to the top of the webpage, my finder window is too big. I can't read the "Cancel" or "Send" (I have no idea what's supposed to be there in English but I assume it's something like "send" and "cancel") buttons. I have provided some images of the problem, even if I make the Chrome window as small as possible, the finder window still is too big for my screen. I can resize the finder window from lest to right, but not up or down, which is extremely irritating for me.
    If anyone can help me how I can solve this problem.
    Thanks!

    I found the solution on another thread...Here it is.
    "I was having the same problem.  I found a way to make it smaller.  First, I opened chrome and clicked the green button on the window to make chrome go into full screen.  Then I tried to save a file to make the finder window open in chrome. When it opened in full screen I could see the bottom of the window so I resized it to make it a little smaller.  Once I did this it remembered the size so now I can access the bottom buttons when I take it out of full screen mode. Hope this helps."
    Worked like a charm!

  • Is there a problem with JFrame and window listeners?

    As the subject implies, i'm having a problem with my JFrame window and the window listeners. I believe i have implemented it properly (i copied it from another class that works). Anyway, none of the events are caught and i'm not sure why. Here's the code
    package gcas.gui.plan;
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.awt.Container;
    import java.awt.event.WindowEvent;
    import java.awt.event.WindowListener;
    import java.util.Hashtable;
    import javax.swing.JDialog;
    import javax.swing.JFrame;
    import gcas.plandata.TaskData;
    import gcas.util.GCASProperties;
    import gcas.gui.planlist.MainPanel;
    * MainFrame extends JPanel and is the main class for the plan details window
    public class MainFrame extends JFrame implements WindowListener
         * the container for this window
        private Container contentPane;
         * a string value containing the name of the plan being viewed
        private String labelText;
         * a string value containing the name of the window (GCAS - plan list)
        private static String title;
         * an instance of JDialog class
        private static MainFrame dialog;
         * hashTable that correlates the task name to its id as found in the
         * plan
        private Hashtable taskNameToId = new Hashtable();
         * an instance of taskSetPane.  This is the current instance of taskSetPane
         * being viewed
        private PlanTaskSet currentPane;
         * instance of TaskData class.  Each instance will hold information on
         * an individual task
        private TaskData taskData;
         * hashTable containing instances of the taskSetPane class
        private Hashtable taskSetPanes = new Hashtable();
         * an instance of the OuterPanel class
        OuterPanel mainPanel;
         * an instance of the ButtonPanel class
        ButtonPanel buttonsPanel;
         * an instance of the LeftPanel class
        LeftPanel leftPanel;
         * an instance of the the GCASProperties class
        GCASProperties gcasProps;
        private static MainFrame thisPlanMain = null;
        private MainPanel planListMain;
         * constructor for MainFrame
         * @param frame the parent frame calling this class
         * @param locationComp the location of the component that initiated the opening of the dialog
         * @param labelText the name of the plan that is being viewed
         * @param title title of window
        private MainFrame(JFrame frame, Component locationComp, String labelText,
                String title)
            super(title);
            gcasProps = GCASProperties.getInstance();
            mainPanel = new OuterPanel(labelText, currentPane,
                    taskNameToId, taskSetPanes);
            leftPanel = mainPanel.getLeftPanel();
            System.out.println("LABLE: " + labelText);
            leftPanel.setMainPanelContents();
            buttonsPanel = new ButtonPanel(labelText, taskSetPanes,
                    taskNameToId, leftPanel);
            contentPane = getContentPane();
            contentPane.add(mainPanel, BorderLayout.CENTER);
            contentPane.add(buttonsPanel, BorderLayout.PAGE_END);
            this.addWindowListener(this);
            this.labelText = labelText;
            pack();
            setLocationRelativeTo(locationComp);
            this.setVisible(true);
            planListMain = MainPanel.getInstance();
            planListMain.setVisible(false);
        public static MainFrame getInstance(JFrame frame, Component locationComp, String labelText,
                String title)
            if (thisPlanMain == null)
                thisPlanMain = new MainFrame(frame, locationComp, labelText,
                        title);
            return thisPlanMain;
        public static MainFrame getDialogObject()
        {   //from the location this is called (ButtonPanel), this will never
            //be null
            return thisPlanMain;
        public static void setABMDDialogNull()
            thisPlanMain = null;
         * returns an instance of MainFrame
         * @return MainFrame instance
        public static MainFrame getDialog()
            return dialog;
         * setter for MainFrame
         * @param aDialog a MainFrame instance
        public static void setDialog(MainFrame aDialog)
            dialog = aDialog;
         * window opened event
         * @param windowEvent the window event passed to this method
        public void windowOpened(WindowEvent windowEvent)
         * The window event when a window is closing
         * @param windowEvent the window event passed to this method
        public void windowClosing(WindowEvent windowEvent)
            gcasProps.storeProperties("PlanList");
            MainPanel abmd = MainPanel.getInstance();
    //        planMain = this.getDialogObject();
    //        if(planMain != null)
    //            planMain.setVisible(false);
    //            abmd.setVisible(true);
    //            planMain.setABMDDialogNull();
            if(this.getDialogObject()!= null)
                abmd.setVisible(true);
                setVisible(false);
                setABMDDialogNull(); 
         * Invoked when the Window is set to be the active Window
         * @param windowEvent the window event passed to this method
        public void windowActivated(WindowEvent windowEvent)
         * Invoked when a window has been closed as the result of calling dispose on the window
         * @param windowEvent the window event passed to this method
        public void windowClosed(WindowEvent windowEvent)
         * Invoked when a Window is no longer the active Window
         * @param windowEvent the window event passed to this method
        public void windowDeactivated(WindowEvent windowEvent)
            System.out.println("HI");
         * Invoked when a window is changed from a minimized to a normal state
         * @param windowEvent the window event passed to this method
        public  void windowDeiconified(WindowEvent windowEvent)
            //we could have code here that changed the way alerts are done
           System.out.println("Invoked when a window is changed from a minimized to a normal state.");
         * Invoked when a window is changed from a normal to a minimized state
         * @param windowEvent the window event passed to this method
        public  void windowIconified(WindowEvent windowEvent)
            //we could have code here that changed the way alerts are done
    //        System.out.println("Invoked when a window is changed from a normal to a minimized state.");
    }anyone know whats wrong?

    It turned out that my ide was running the old jar and not updating it, so no matter what code i added, it wasn't being seen. Everything should be fine now.

  • Problem with shares on Windows 2003R2 server from a Windows 8.1 PC

    I'm having problem with shares on Windows 2003R2 server from a Windows 8.1 PC.  It times out when I try to copy a file from my PC to the server and I get an error message saying "There is a problem accessing network drive W:\. Make sure you are
    connected to the network and try again."
    I have no problem copying files from the server to the PC.
    Any ideas?

    Hi,
    How about your problem now? Have you test other machine also installed Windows 8.1? Did they have this problem?
    To diagnose this problem, firstly, please check Windows 2003R2 firewall settings, also can disable firewall temporarilly for test.
    Secondly, try to use Network Monitor to capture network communication package for test.
    Network Monitor:
    http://www.microsoft.com/en-us/download/details.aspx?id=4865
    Roger Lu
    TechNet Community Support

  • Problem with Excel output format

    Hi Guys,
    I am creating a report in XML Publisher (not standalone). I am facing some problems could anyone please help me to figure out the issues.
    Is it possible to have all three output format (PDF, HTML & EXCEL) exact (same aligned) only by creating a single RTF Template? I am facing the problem with Excel output format the output format of excel is taking excels cell formatting.
    Example Numeric fields --> Right Aligned, text fields --> Left Aligned
    One more issue with excel is -ve(negative) values are getting displayed in red and in brackets like ($13) (with red color).
    Our client want excel output on priority.
    Is there any limitation for excel output format of reports?
    It is very urgent for us please help.
    Any help would be highly appreciated.
    Thanks,
    Pragati
    Edited by: user11237443 on Aug 27, 2009 1:22 AM

    Hi Mahi,
    Thanks for your response. But i could not understand how can we write wrapper program could you please give some light on this or provide some link it would be helpful for me:-)
    I have read that blog for excel limitations but i have more question?
    1) What about the negative values?
    if any field is displaying negative amount then excel not displaying right value for that:(
    2)How can we align header or data?
    Do XMLP with EBS provide any solution for formatting in excel?
    3) If for the alignment of numeric value we concatenate them with any special character then how can we perform calculation that field?
    Here are so many formatting issues do we need to write any code in xml for that?
    Please help.
    Many Thanks,
    Pragati

  • Problem with touchpad and Windows 8.1. Acer Aspire E5-511

    I bought an Acer Aspire E5-511, but I have problem with touchpad and Windows 8.1.The touchpad (Synaptics) is not working with Windows 8.1 x64, but it works fine with Windows 7 x64 and Windows 8 x64.When I install Windows 8.1 and have to choose” language to install” I can’t choose anything with the touchpad. I should plug in my mouse to continue. I doesn’t work even when it’s fully installed and with latest driver (available only for win 8.1 x64) from Acer’s website. I tried with an older driver, but had no success. I updated BIOS, but it doesn’t work again. In hardware IDS in device manager it shows HID\… not ACPI\… (like win 7/8). Fn+F7 doesn’t help.When I try to install Windows7/8 the touchpad is working properly at the beginning (I can choose ”language to install”, “Time and currency format”… and the touchpad works after install even without driver).

    SOLUTION So guys after deep research and troubleshooting I found that you need to keep notice of a few things at time of installation: Installation Mode: UEFI (only)- LEGACY would create touchpad issues. after installation of windows just follow the driver installation hierarchy 1.Intel NB_Chipset_M Baytrail-M 2.Intel I/O Driver then rest of the crap. Note:After doing all this make sure your touchpad is active >> Fn+F7 Just wished if this solution came from an acer executive , the world would have been a better place , but anyways this is what community is for. Enjoy everyone

  • Windows 8.1 Problem with games from windows store.

    I've got a problem with games from windows store. The installation is going well without any problems, however when I try to open it it's loading and then it turns off. The same problem happens when I try to use Games for Windows. I've use a sfc scan and
    it shows some errors but unfortunately it cannot fix them. Should I share the CBS log or find the solution somewhere else? I hope you help, best regards.

    Hi,
    According to my experience, the problem like store game app open failed probably caused by hardware driver. such as Audio and Graphic driver. So, first of all, please try to reinstall these two driver to fix this problem for test.
    In addition, for SFC scan failed problem, it can be caused by many reasons, I would suggest you use another command to fix your system for test.
    Dism /Online /Cleanup-Image /ScanHealth
    Also you can test SFC command in Windows 8.1 safe mode.
    Thirdly, if problem persists, please check Event Viewer, generally speaking, it would record the app open failed events.
    Roger Lu
    TechNet Community Support

  • Problem with RTPExport output video files

    Hi, I have a problem with RTPExport output video files. One side streams H263/RTP(AVTransmit2.java) and other write this steam to a file by RTPExport.java. When network conditions are ideal, output video file has same fps and same number of frames like original file. Problem occures, when theres packet lost in network, then output file has different fps,and also has less frames like original video(because it didnt write missing frames to file, and thats why it get shorter). Pls how can I achieve output file that will have the same fps like original one? How to write to file an identical copy of what I can see while receiveing video with AVReceive2.java? Its there a way to modifi rtpexport or avreceiver to do this? Thanks a lot!

    Trubka wrote:
    When network conditions are ideal, output video file has same fps and same number of frames like original file. Problem occures, when theres packet lost in network, then output file has different fps,and also has less frames like original video(because it didnt write missing frames to file, and thats why it get shorter). Okay, first off, the second file is smaller on purpose. RTP intentionally drops packets that are old/out of order in order to make sure real-time video stays as close to real time as it can. This is by design, so there's really nothing that can be done about it.
    How to write to file an identical copy of what I can see while receiveing video with AVReceive2.java? Technically speaking, what you're getting in the RTPExport is exactly what you got on the receiving end. Any frames that are dropped during transmission will not be seen by the receiver, nor saved by the receiver.
    Pls how can I achieve output file that will have the same fps like original one? I'm not 100% sure that you can, but, you can give the following idea a try. I make no guarentees that it'll work, but it should work for you...
    [http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/RTPConnector.html]
    That example is an example of a "custom transport layer" for RTP connections. Essentially, it's some code that's handed the RTP packets on the transmission end, and it's expected to deliver those RTP packets on the other end. And it doesn't care about how they get from A to B, only that they do.
    If you were to replace the UDP socket in that example with a TCP socket, you would be guarenteed not to drop packets due to network reasons. Every RTP packet you were handed by the transmitter, you would then hand to the receiver. There is no guarentee that none of the packets would be cast away as "old" by the RTP protocol itself, but there's also no guarentee any of them would be. It's a crap-shoot at best, but it's certainly worth a try.

  • Problems with still frames blurring in Final Cut Express....

    I have had problems with still frames blurring. I've discovered it's related to the green line above the time line on the sequence bar. I can't find the name of the bar but it's red if you need rendering. There are green lines and when the scrubber hits the line the frame goes blurry.
    I'm guessing it's related to another previous attempt at adding motion to the still. My question, I think, is how to eliminate the green lines to the regular blue?
    jb

    If there are any colored bars above your video other than the normal grey/light blue then you need to render the sequence out by hitting Option-R.

  • Problems with Flash output using Safari

    Hi All,
    does anyone know the solution to getting the flash output to work with safari?  The project plays properly on Firefox and Chrome.  On safari, my custom menus come up just the same as on the DVD version of the project, but the flash videos do not play - just a grey screen.  Interestingly, the duration of the clips is set correctly in the player, it just doesn't start the video. The flash files play correctly when loaded directly into Adobe flash player, so I am assuming there is a compatibility issue with the generated XML files or index.html.  The code inside the index.html seems very old and refereences macromedia.com and a windows .CAB file.  I have shortened the file names and eliminated any offending characters (all are in the form "Chapter_1").
    Anyway, this is stopping me delivering a project on USB stick for a client - seems to be a common issue when searching the web, but no solutions.  Any assistance or ideas would be greatly appreciated.
    I have the full CC (2014), but still have Encore CS6 installed for DVD production.
    Regards,
    Mark

    I read the thread you mentioned and all others relating to this issue - seems to be a number of people having the same issue over the last 3 years, but none have posted a successful conclusion.  I did see the post about strange characters in file names causing issues in the XML - I did also look at this and change all my content file names to innocuous "Chapter_X" & etc.  The paths to the "Sources" directory are all relative and the project works correctly on Chrome and Firefox.  Just safari is not working.  Agree, it could be permissions, but I have checked all security settings and the Abobe Flash player (with is called up by the script to display the videos in the browser) is specifically permitted to "Allow Always" in the security settings.  I can't help thinking there is a problem with the generated XML that safari is not behaving correctly - it wouldnt be the first time that Apple doest things using their interpretation of a standard. 
    However, after all that, the generated code from Encore doesn't result in a working local project that I can send to a client and expect to work.

  • Is Verizon going to acknowlege the problems with FIOS and Windows Vista

    For months now, I have been reading the numerous problems Fios internet customers are having with Fios internet/Actiontech Router and Windows Vista and there has been no acknowledgement by Verizon of this current major issue.
    I have also experienced the exact same issue for months now since I switched to Verizon FIOS internet. Previously I had Comcast HSI using my Windows Vista laptop.  I had their service for over a year and I NEVER has a problem with the Windows Vista globe icon disappearing and loosing internet connection. The Globe always stayed on and never went away and I never lost connection when I had Comcast
    I had Verizon FIOS installed last September with my Windows Vista computer and my wireless internet connection started to drop from day 1 and it has been a daily occurrence for over 5 months now.  It has gotten so bad, I have had to hardwire my laptop to to be able to use the internet uninterrupted.
    This is what daily scenario is:
    When I turn on my laptop(with Windows Vista, I can initially get full internet access(with the globe on and it says "Local and internet). After about 10 minutes or less, the globe switches to "local only" and I can still get  internet access.  After another 5 or so minutes, a large X covers the globe and I lose internet connection entirely. The actiontech router wireless signal is no longer listed as one of the wireless networks.  The only way for me to regain internet access is either to restart my laptop or reboot the actiontech router.
    Numeorus posts here, over by DSL forums(Broadband Reports),Microsoft's website and a few othere websites detail this issue.
    I am extremely shocked and surprised that Verizon has not tried to fix this issue by working with both the makers of the Actiontech Router as well as Microsoft to find out what the problem is and how to fix it.
    I would just like to reiterate I strongly believe this is primarily a FIOS internet issue since I previously had Comcast HSI for over a year with the same Windows Vista laptop and I NEVER had that problem. Also,  I can connect to my neighbors wireless connection(she uses Comcast HSI) and when I do, the globe stay on all the time on my computer and the internet does not lose connection.
    I know that there are a couple of Verizon employees here. Please tell the higher ups who handle FIOS internet that this is a major issue that needs to be resolved as soon as possible.
    P.S: Please don't tell me to go by my own router because then, I will have to deal with the issues of setting it up to work with Fios TV and the related VOD, widgets, remote DVR compatability issues to deal with. I don't think I can deal with the additional headaches. 

    FIOS is short for fiber optics.  fiber optics is different technology than DSL.   
    With that said, if you search the Microsoft databases for vista issues with fiber optics, (CURRENTLY THERE IS ONLY ONE PROVIDER OF FIBER TO THE HOUSE, that being Verizon, so yes you can also search Vista issues with verizon and\or fios) and you will find that Microsoft already acknowledges this issue with their software.  AND they offer you a fix.
    cjacobs001

  • Problems with Ipod and Windows Media Player PLEASE HELP

    Ok i am not sure if this is the correct forum or not but i am having a problem. I have a Windows computer (Yes a windows computer please dont everyone yell at me) and i have a new ipod 30 gig video. Ok well when i put itunes on it changes all my music on my computer gets changed to AAC format and i cannot play music in windows media player. Ok well that is not my big issue. I make videos for church using windows movie maker and i cannot import music because nothing windows can recognize Itunes format which is AAC. well is there anyway so i can use itunes and still use WIndows Media Player and Windows Movie Maker... Any info will be greatly appreciated. THANKS ALL

    I believe Quicktime Pro (which is available for Windoze) is capable of opening any WMP files and then you just export it as iPod format. That is how I get video onto the iPod. The Music and Videos all can be placed onto your iPod through iTunes.
    So, if you are creating videos in your program, and want them on your iPod, then that is how you can do it.
    Videos on your iPod have nothing to do with the formatting of your music. But, as the earlier post stated, change your prefs in iTunes to import as MP3. But, your videos HAVE to be in MP4 or M4V format to work on the iPod.
    Good luck... and I'm a j3susfreak too

  • Problem with bootcamp and windows xp disc

    Hi! I've been using mac for about 3-4 years now and I am fairly acquainted with my Macbook pro.
    My problems surfaced 2 days ago when a friend of mine opened it up and changed the harddrive to this: http://www.overclockersclub.com/reviews/seagate_momentus_500gb/
    My friend then did a clean install of OS X Snowleopard (not with the OS X-disc that came with my MBP) and all seemed to work fine.
    But the problem is that my MBP don't seem to recognize or can't read Windows-installation DVD's. I insert the disc, the MBP reads the disc 2-3 times and then just spits it out. I have tried this with two diffrent Windows XP SP2 discs and one Windows 7 home disc with the same result.
    Sometimes though (completely random) it seems to recognize the Windows disc and I can start the Windows installation via bootcamp, but halfway through the installation the disc still ejects.
    The funny thing is that I ONLY have this problem with Windows-discs. OS X-discs, media-DVD's and unwritten CD's is no problem at all.
    And I have repeatedly "repaired" and "reinstalled" OS X with both the snow leopard-disc and the OS X-discs that came with my MBP but I still get the same result. I have also tried SMC-resetting and doing a "safe start" but it still doesn't work.
    So... Halp? :3

    Boot Camp forum.
    https://discussions.apple.com/community/windows_software/boot_camp

  • Crash problem with Photoshop and Windows 7...

    Hello guys, this is my first post so thanks for reading. I have a problem when I try to open a new document or one that already exists. A pop up window appears and tells me this:
    It's in spanish and says: Adobe Photoshop CS4 is not working, Windows can find a solution to this problem, etc. under this message you can check the detail (I translated this to english):
    Problem Event Name:     APPCRASH
    Application Name:     Photoshop.exe
    Application Version:     11.0.2.0
    Application Timestamp: 4bf2d4f6
    Fault Module Name:     nvoglv32.DLL
    Fault Module Version:  8.17.12.5896
    Fault Module Timestamp: 4c37909c
    Exception Code:     c0000005
    Exception Offset: 000a85db
    OS Version:     6.1.7600.2.0.0.256.1
    Locale ID:     11274
    Additional Information 1: 0a9e
    Additional Information 2:     0a9e372d3b4ad19135b953a78882e789
    Additional Information 3:     0a9e
    Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
    I read in the forums that it's a problem with my grafic card driver and that I should update it. I just did, but the problem is still there. I use Adobe Master Collection CS4 a long time ago (under Windows XP plataform). Last week I upgraded to Windows 7 and issues began. Does anybody know what I should do? Thank you very much!

    I did that too Chris but when I uncheck OpenGL drawing my video card is not shown and the crash dialog appears anyway. It's really dissapointing... Thanks for you help, I'll try to contact NVidia technical support.

  • FCP Problem with Firewire output to external monitor and speaker ???Help

    i have a g5 powermac. the problem is when using Final cut pro 4hd. when i output my work through firewire to my external monitor and speaker i have a problem with the audio signal. Theres feedback/noise/hiss from the speakers. The firewire connects to DSR-11 vtr deck which feeds my monitor and speakers. it only happens when in FCP is set to A/V firewire output. does not happen if Video output is not set to firewire.
    I Diagnosis is that it is not my dsr-11 deck or firewire i've ruled those out. The problem is either FCP software or Hardware problem with my G5
    Does anyone have a similar problem. please respone, i will try to answer any respones,
    Thanks
    powermac g5     powermac

    CaptM
    From the firewire that feeds the dsr-11. on the output, i use s-video cable to my monitor (sony pvm-14l) and High Quality rca cables thet feed the audio to the Roland Speakers.
    I've changed all wires and still have audio problem. I,ve changed my Dsr-11 deck to my camcorder and still have the problem.
    If any of u guys use FCP The problem happens When I select view> external Monitor > and select firewire for Audio/ and video. I have never changed my editing habits, something just went wrong with the signal, I think its a Hardware problem with the firewire connection. I'm Going to have to bring this to a Apple Service Center In my local area one day.

Maybe you are looking for