Question  fitting a picture to screen in an overlay of videotrack

I've been making a video and can't get one layer to size properly.
When in Photoshop element premier it looks like it fits properly
with the other layer.  Then when I upload it to You Tube the still photo I layered over the video  doesn't fit the screen properly.
The videos however fit properly.  The image size is 720x480 with a pixel depth of 32 and an aspect ratio of 1.1833.
The project capture setting is at HDV.
If anyone has a clue what I'm doing wrong I'd appreciate any info you could send my way!

Hi, dancing4ever. Premiere Elements has its own forum and the video gurus hang out there:
http://forums.adobe.com/community/premiere_elements
I'd try posting this in that forum. Good luck!

Similar Messages

  • I cant fit my picture to my lock screen after i updated to iso7

    i cant fit my picture to my lock screen after i updated to iso7 and im actually really annoyed. I heard its just a glitch but is there anyway to fix it?

    http://bit.ly/1rFn3jO
    Cheers,
    GB

  • I have here an iPod touch Model number a1288 but the last number to me also looks like a 3. But that isn't my point. I'm here asking this question,. I broke my screen today and I was wondering if it mattered or not if i put on a ipod touch 2nd or 3rd then

    I have here an iPod touch Model number a1288 but the last number to me also looks like a 3. But that isn't my point. I'm here asking this question,. I broke my screen today and I was wondering if it mattered or not if i put on a ipod touch 2nd or 3rd then LCD and Screen. I really don't want to buy a new iPod and i've had this for a long time and its still working fine for me. Ijust need something that will play my music at work. Please someone helpp.

    You can check your model here: iPod Touch - Wikipedia, the free encyclopedia
    and search this place for parts that would fit.

  • Hello, mac mini will not boot. I get a file symbol with a question mark, then a white screen, Hello, mac mini will not boot. I get a file symbol with a question mark, then a white screen

    Hello, My mac mini will not boot. When I turn it on, I get the chime, then the white screen, then the apple symbol, then a file symbol with a question mark, then the white screen and then it stays like that.
    Is this a bad hard drive?

    Sounds like it.  Try booting from your OSX restore DVDs - startup and hold down "C".  This will take AGES! Then run Disk Utility from the menu. 
    The flashing ? means your system is corrupt, dead, not there, on a dying HD, etc...

  • Picture in screen painter

    Hi,
    How to insert a picture in screen painter.?
    Thanks,
    Suresh

    Hi
    first Upload the image in SMW0 in binary format and give name as 'Zimage_LOGO'.
    Below find the code to display  Image in module pool program
    Data : CL_CONTAINER   TYPE REF TO CL_GUI_CUSTOM_CONTAINER,
             CL_PICTURE     TYPE REF TO CL_GUI_PICTURE,
             WA_HTML        LIKE W3HTML,
            WA_MIME        LIKE W3MIME,
            WA_PARAM       LIKE W3PARAM,
            WA_QUERY       LIKE W3QUERY,
            LV_URL(256)    TYPE C,
            PIC_SIZE TYPE I,
            LV_text(28)  TYPE C VALUE 'Image Display Example'.
    In PBO event   write below code
    IF CL_PICTURE IS INITIAL.
    Create controls
        CREATE OBJECT CL_CONTAINER
          EXPORTING
            CONTAINER_NAME = 'CL_CONTAINER'.
        CREATE OBJECT CL_PICTURE
          EXPORTING
            PARENT = CL_CONTAINER.
        CALL METHOD CL_PICTURE->SET_DISPLAY_MODE
          EXPORTING
            DISPLAY_MODE = CL_GUI_PICTURE=>DISPLAY_MODE_FIT_CENTER.
        WA_QUERY-NAME = '_OBJECT_ID'.
        WA_QUERY-VALUE = 'Zimage_LOGO'.
        APPEND WA_QUERY TO IT_QUERY.
        APPEND WA_HTML TO IT_HTML.
        APPEND WA_MIME TO IT_MIME.
        CALL FUNCTION 'WWW_GET_MIME_OBJECT'
          TABLES
            QUERY_STRING        = IT_QUERY
            HTML                = IT_HTML
            MIME                = IT_MIME
          CHANGING
            RETURN_CODE         = WA_PARAM-RET_CODE
            CONTENT_TYPE        = WA_PARAM-CONT_TYPE
            CONTENT_LENGTH      = WA_PARAM-CONT_LEN
          EXCEPTIONS
            OBJECT_NOT_FOUND    = 1
            PARAMETER_NOT_FOUND = 2
            OTHERS              = 3.
        IF SY-SUBRC <> 0.
          MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                  WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ELSE.
          PIC_SIZE = WA_PARAM-CONT_LEN.
          CALL FUNCTION 'DP_CREATE_URL'
            EXPORTING
              TYPE                       = 'image'
              SUBTYPE                    = 'X-UNKNOWN'
             SIZE                       =  PIC_SIZE
       DATE                       =
       TIME                       =
       DESCRIPTION                =
             LIFETIME                   = 'T'
       CACHEABLE                  =
       SEND_DATA_AS_STRING        =
       FIELDS_FROM_APP            =
            TABLES
              DATA                       = IT_MIME
       FIELDS                     =
       PROPERTIES                 =
       COLUMNS_TO_STRETCH         =
            CHANGING
              URL                        =  LV_URL
    EXCEPTIONS
       DP_INVALID_PARAMETER       = 1
       DP_ERROR_PUT_TABLE         = 2
       DP_ERROR_GENERAL           = 3
       OTHERS                     = 4
          IF SY-SUBRC <> 0.
            MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ELSE.
            CALL METHOD CL_PICTURE->LOAD_PICTURE_FROM_URL
              EXPORTING
                URL = LV_URL.
          ENDIF.
        ENDIF.
    Hope it shall be useful
    Regards
    Santosh

  • How do I fit a picture within a frame layer?

    How do I fit a picture within a frame layer?

    If your images are an aspect that does not fit easily into
    a standard video frame, you might need to scale up
    (or preferably down) and reposition your images to fit.
    What are your image dimensions?
    What are your Sequence settings?
    What is the intended destination for your finished video?
    Premiere Pro / Motion: position, scale, and rotate a clip
    http://help.adobe.com/en_US/premierepro/cs/using/WSC7A162B6-6EF1-49e1-8622-8127366710BB.ht ml
    How do I choose the right sequence settings?
    http://www.video2brain.com/en/lessons/how-do-i-choose-the-right-sequence-settings
    Also, make sure you're running the most current update (CS6.0.5).
    Within Premiere:  Help > Updates...

  • To catch click event on a picture on screen

    How to catch the click event on a picture on screen? Please answer with code.
    regards
    agn

    Try this code....
    REPORT  zaby_pic.
    CLASS cl_picture_click DEFENITION.
    PUBLIC SECTION.
    METHODS: picture_yclick FOR EVENT picture_click of cl_gui_picture IMPORTING mouse_pos_x mouse_pos_y.
    ENDCLASS.
    CLASS cl_picture_click IMPLEMENTATION.
    METHOD: picture_yclick.
    Perform onclick. "write the action of click in this form.
    ENDMETHOD.
    ENDCLASS.
    DATA: obj_cl_picture_class TYPE REF TO cl_picture_click.
    DATA: it_event_picture TYPE TABLE OF cntl_simple_event,
          wa_event_picture TYPE cntl_simple_event.
    MODULE status_001_output.
    wa_event_picture-eventid = cl_gui_picture=>eventid_picture_click.
    wa_event_picture-appl_event = 'X'.
    APPEND wa_event_picture to it_event_picture.
    CALL METHOD h_picture->set_registered_events
    Exporting
        events = it_evet_picture
    Exceptions
        cntl_error                = 1
        cntl_system_error         = 2
        illegal_event_combination = 3
        OTHERS                    = 4.
    CREATE OBJECT obj_cl_picture_click.
    SET HANDLER obj_cl_picture_click->picture_yclick FOR h_picture. "h_picture is the object of class cl_gui_picture.
    ENDMODULE
    ...................Hope this code will help you. Thanks.

  • I installed the window 7 os in to my mac book pro. after that the partition is not supported and then the folder with question mark flashing on my screen. plaese helf me what to do next to resume the mac os x?

    i installed the window 7 ultimate OS in to my mac book pro. after that the partition is not supported and then the folder with question mark flashing on my screen. plaese helf me what to do next to resume mac mac os x?

    Assuming that you tried to install Win 7 in bootcamp.
    Power on the machine and press and hold the "option" key when you hear the bong sound.
    Select the Macintosh HD icon and press "return" or just click on the icon.
    Once booted into OS X go to System Preferences and select the Startup Disk icon and configure startup to use the Macintosh HD.

  • My macbook boots up get a screen picture then screen goes blank, when boots up I get the sound then a screen then screen goes black is this a battery problem or something else?

    my macbook boots up, I get a screen picture then screen goes blank...I get the start up sound, then a picture, then the screen goes blank but computer is still on..does anyone know what the problem is...do I need a new battery or am i just screwed.

    Hello nosaint1961,
    It sounds like you are unable to successfully boot your computer to your desktop. I would use the troubleshooting from the following article to help troubleshoot what is happening named:
    Troubleshooting: My computer won't turn on
    http://support.apple.com/kb/ts1367
    If your computer won't turn on, try each of these steps:
    Verify you have a good connection from your Mac to the wall outlet by confirming the power cord and adapter if present are securely connected and plugged in. To check if the wall outlet is working, plug in a lamp or other electrical device.
    If the wall outlet is working and you continue to have no power try another power cord or adapter if available. If it works you may need a replacement cord or adapter.
    Note: See Apple Portables: Troubleshooting MagSafe adapters for further troubleshooting with MagSafe adapters.
    Disconnect all accessories that are plugged in to the computer, such as a printer, hub, or other mobile device.
    If your Mac supports user-installable memory, solid state drive, or hard drive, and you recently installed any of these, make sure they are installed correctly and are compatible with your computer. If possible, reinstall the original memory or drive into the computer to find out if the behavior persists afterwards.
    MacBook Pro: How to remove or install memory
    MacBook: How to remove or install memory
    Mac Pro: How to remove or install memory
    Mac mini: How to remove or install memory
    iMac (27-inch, Late 2012): Installing or replacing memory
    iMac: How to remove or install memory
    Reset the SMC.
    If you are still unable to start up your computer after trying each of these steps, visit an Apple Store or Apple Authorized Service Provider (AASP) for further diagnosis. If you plan to visit an Apple Retail Store, make a reservation at the Genius Bar using http://www.apple.com/retail/geniusbar/ (available in some countries only).Note: Diagnostic fees may apply for issues not covered under warranty or the AppleCare Protection Plan (APP).
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • All of sudden my iphone 4s any picture I take outside I cannot forward via email or text and I can only see it, in the camera roll. When I try to open the picture full screen it is blank. Anyone have any ideas to fix it?

    all of sudden my iphone 4s any picture I take outside I cannot forward via email or text and I can only see it, in the camera roll. When I try to open the picture full screen it is blank. Anyone have any ideas to fix it?

    Close out of the camera app, double tap the home button and completely close out of the app.
    Then do a reset, no data loss.  Hold down the home/sleep button together until you see the apple logo and then release, then wait for the phone to boot back up.
    Then check your camera roll again.

  • Electric went out, now there's a question mark blinking on my screen...

    Electric went out, now there's a question mark blinking on my screen...

    Try restarting your Mac while holding down the Option key.
    Hopefully you'll see the Startup Manager window where you can select the statup disk and click Restart.

  • MacBook question mark flashing on my screen

    Helpppppp
    Ican't suitch on my Mac!!! There is a question mark flashing on my screen!!!! What to do???

    I responded to you here >  Flashing question mark: Apple Support Communities

  • HT1414 omg phone frozen during sync, will not turn back on and itunes wants me to restore but unsure if all my precious photos etc have been saved and if so where they are?? I cannot turn phone back on its frozen with itunes icon picture on screen!! help

    omg phone frozen during sync, will not turn back on and itunes wants me to restore but unsure if all my precious photos etc have been saved and if so where they are?? I cannot turn phone back on its frozen with itunes icon picture on screen!! help

    Once the Device is asking to be Restored with iTunes... it is too late to save anything...
    To minimise loss... Connect to iTunes on the computer you Usually Sync with and Restore from the most recent Backup...
    http://support.apple.com/kb/HT1414
    Restore from Backup
    http://support.apple.com/kb/ht1766

  • Camera taking random pictures of screen

    New touch user. The camera is randomly taking pictures of screens of applications that I am in. Had less than week, any ideas to correct?

    If you press the home and power button at the same time, quickly, then it takes a screen shot. This is a feature.

  • HOW TO MAKE PICTURE ON SCREEN VERTICAL

    The w2207 can be used horzonaly or verticaly.  I am setting up 2 screens on one computer, Dell OPTIPLEX GX620,  (windows 7 / 64-bit).  One horizontaly one vertical. I have 2 issues: First issue: Windows7 does not recognise screen 2 on control panel.  Screen 2 duplicates Screen 1.  I have a poweredsplitter to divide up the audio/video for additional screens.  Screen 1 and Screen 2 are connected to outputs. A thirdoutput is connected to a tv/monitor.  All screens have the same picture at the same time.  My guess is I would need toconnect Screen 2 by another means so the Windows7 will recognize it??  Maybe use DVI or HDMI don't know, asking? Second issue, I can mechanically rotate the screen from horizontal to vertical, but the text/picture stays horizontal.My View Sonic changes to match the screen position like a cell phone. The HP does not! NOTE:The View Sonic is 15 yrs. old.  Need to know how to match text/picture to screen position. DVO33308 

    Before doing anything, backup your current iWeb Domain file — usually located here:
    Unless someone else chips in with an alternative, I think you'll have to start a new Blog page and copy & paste.
    But bear in mind that problems with iWeb's blog are a recurring theme on these forums: Lost all blog entries or all comments or unable to publish, etc. For a success story using a non-iWeb blog hosted on WordPress, see this old thread:
    _To blog or not to blog_

Maybe you are looking for

  • Upload file PL\SQL

    Hi, I'm writing a web application using PL\SQL procedure. I've got one problem, how can I upload file in the database blob field? I've found some articles (like this: http://www.acs.ilstu.edu/docs/oracle9ias/web.902/a90855/feature.htm ) that present

  • How to display an image and add axis labels

    Hey everyone, I just had a really quick question on a program I created. It uses the vision module to open a file in a new display window, and I would like to add axis to the image simlilar to the picture below (With both the x and y axis labels as p

  • Problems publishing to iweb

    I just want to thank everyone who post on here as your advice really does help. I had problems publishing to iweb and the following suggestions made by you all helped me overcome the difficulties I was having. I am posting this so that others who may

  • No records in Initialization of   0FIAR_O03

    Hi All We are loading the data from 0FI_AR_4 to 0FIAR_O03 , When i am doing initialization the no.. of record is coming is Zero , I checked in RSA3  but there is a data If i Do full load the Data is loading to BIW record are coming. Plz help me

  • Unable to place background image in masthead

    Hi All, I intend to add a backgroud image to masthead in Portal. For that I have made changes in the .par file. The changes are as follows In the images folder of my project I have placed the mylogo.gif file and <TD class="prtlHeaderNotch" id="header