How to make a split screen picture?

How do I make a split screen picture from 2 different pictures?

Are you using Photoshop or Photoshop Elements?
This question would be better posted in the Photoshop forum.
Try http://forums.adobe.com/community/photoshop/general

Similar Messages

  • I was making a movie on iMovie, and was trying to use the green screen to make a split screen. I pressed on the green screen button, but the second clip didn't play next to the first, and only the audio played.

    I was making a movie on iMovie, and was trying to use the green screen to make a split screen. I pressed on the green screen button, but the second clip didn't play next to the first, and only the audio played. I tried again with some different clips and some worked and some didn't. This hasn't happened before. What should I do? (I am using iMovie '09)

    No guarantess but try smc and pram resets,

  • How do I make a Split-Screen, Restaurant Digital Sign?

    I want to design a restaurant digital menu sign, divided in four sections. 3 are static one is animation and fly in pictures. How do I do this? Domino's pizza has the same type of sign. What program do I design the static frames in? How do I set the screen size to fill the entire monitor? Once I get to this point do I go to flash Catalst and import the static screens? And then bring in the pictures and animation into the forth screen? For now I just want to play it on a stand-alone system inside the restaurant. Thanks

    yes, you can do this in Catalyst. The images can be created in any image program (Illustrator, Fireworks, Photoshop), and brought into Catalyst. I would recommend you read my blog post about resizing vs. scaling (http://chrisgriffith.wordpress.com/2011/06/22/understanding-resizing-and-scaling-in-flash- catalyst/)
    You can probably prototype this quite easily in Catalyst, but I would recommend looking at Adobe Edge as a better solution for the long term.
    Chris

  • How do i make a split screen os 10.9.2

    I would really like to use a split screen.  How do I do it?  Macbook pro running OS 10.9.2

    Hi muelled,
    I apologize, I'm a bit unclear on exactly what configuration you are describing. If you are talking about using multiple desktop "spaces" in 10.9 Mavericks, you may find this article helpful:
    OS X Mavericks: Work in multiple spaces
    http://support.apple.com/kb/PH14155
    If you are talking about actually using multiple displays in Mavericks, or even multiple Spaces with multiple displays, then this article may be more useful:
    OS X: Using multiple displays in Mavericks
    http://support.apple.com/kb/HT5891
    Regards,
    - Brenden

  • How to make a selection screen two fields obligatory

    Dear friends...
       I wish to know how i make two fields obligatory in the selection screen
    like
       select-options  Po_Num for  ekpo-ebeln obligatory.
       select-options  Po_Date for  ekko-aedat.
       select-options  Material for  mara-matnr.
    in the above example i am looking for po_num and po_date both obligatory but if i dont enter data in the po_num, po_dat becomes obligatory and po_dat has no data entererd po_num is obligatory. i wish to know how i achieve single field act as a obligatory in absence of another field. please help in this regards..
    thanking you,,,
    regards.
    Naim

    REPORT  ZMM_COMP_POS  no standard page heading line-size 225
    tables:  ekko, ekpo, mara.
    data: begin of i_ekko occurs 0,
          ebeln like ekko-ebeln,
          ebelp like ekpo-ebelp,
          matnr like mara-matnr,
          aedat like ekko-aedat,
          waers like ekko-waers,
          ernam like ekko-ernam,
          end of i_ekko.
    data: begin of i_ekpo occurs 0,
          ebeln like ekpo-ebeln,
          ebelp like ekpo-ebelp,
          matnr like mara-matnr,
          aedat like ekpo-aedat,
          waers like ekko-waers,
          menge like ekpo-menge,
          meins like ekpo-meins,
          ernam like ekko-ernam,
          lgort like ekpo-lgort,
          netwr like ekpo-netwr,
          recd(16) type p decimals 3,
          rec_val(16) type p decimals 3,
          end of i_ekpo.
    data: lines type i.
    data :itab_output like i_ekpo occurs 0 with header line.
    data: itab_output3 like standard table of itab_output .
    data  data.
    data  total like sy-dbcnt.
    data  recd(16) type p decimals 3.
    data  rec_val(16) type p decimals 3.
    data : it like i_ekpo occurs 0 with header line.
    selection-screen begin of block b1 with frame title text-010.
    select-options Po_Num for ekpo-ebeln .
    select-options Po_Date for ekko-aedat.
    select-options Material for mara-matnr.
    selection-screen end of block b1.
    at selection-screen.
    if po_num[] is initial
      and po_date[] is initial.
    message e001(00) with 'Make at least one entry'.
    endif.
    start-of-selection.
    if  PO_NUM is initial and
         Po_Date is initial or
         Material is initial.
             select ebeln ebelp matnr
                    menge meins netwr
                    aedat
                    from ekpo
                    into corresponding fields of table i_ekpo
                    where ebeln in Po_Num.
    endif.
            loop at i_ekpo.
                  select ebeln aedat waers ernam
                         from ekko
                         into corresponding fields of table i_ekko
                         where ebeln in Po_Num.
                  if sy-subrc = 0 .
                     i_ekpo-aedat = i_ekko-aedat.
                     i_ekpo-waers = i_ekko-waers.
                     i_ekpo-ebeln = i_ekko-ebeln.
                     i_ekpo-ernam = i_ekko-ernam.
                     modify i_ekpo transporting ebeln aedat waers
                                                ernam
                                                where ebeln = i_ekko-ebeln.
                     clear i_ekko.
                   endif.
               endloop.
               describe table i_ekpo lines lines.
               if lines le 0.
                  message e017(zk).
               endif.
          select ebeln ebelp matnr
                 menge meins netwr
                 werks
                 from ekpo
                 into corresponding fields of table i_ekpo
                 for all entries in i_ekko
                 where ebeln = i_ekko-ebeln .
          sort i_ekpo by ebeln ebelp.
          sort i_ekko by ebeln.
          loop at i_ekko.
            read table i_ekpo with key ebeln = i_ekko-ebeln.
            if sy-subrc = 0.
                     i_ekpo-aedat = i_ekko-aedat.
                     i_ekpo-waers = i_ekko-waers.
                     i_ekpo-ebeln = i_ekko-ebeln.
                     i_ekpo-ernam = i_ekko-ernam.
               modify i_ekpo transporting ebeln aedat waers
                                          ernam
                                          where ebeln = i_ekko-ebeln.
           endif.
        endloop.
      describe table i_ekpo lines lines.
      if lines le 0.
        message e017(zk).
      endif.
      loop at i_ekpo.
       write:/1 sy-vline,
           (5) i_ekpo-ebeln left-justified ,sy-vline,
           (10) i_ekpo-ebelp left-justified ,sy-vline,
           (15) i_ekpo-aedat left-justified ,sy-vline,
           (18) i_ekpo-ernam left-justified ,sy-vline,
           (23) i_ekpo-matnr left-justified , sy-vline,
           (27) i_ekpo-menge UNIT i_ekpo-meins left-justified , sy-vline,
           (29) i_ekpo-meins left-justified , sy-vline,
           (31) i_ekpo-netwr CURRENCY 'INR' left-justified ,sy-vline,
           (33) i_ekpo-waers left-justified ,sy-vline.
    endloop.
       write:/(743) sy-uline.
    top-of-page.
        write:/30  'ESSAR CONSTRUCTIONS LTD.' color 6 inverse.
        write:80 'DATE :' color 6 inverse, sy-datum  color 6 inverse.
        new-line no-scrolling.
        write:/30 'PO Details.' color 7 inverse.
         write: /(743) sy-uline.
      format color col_heading on.
         write:/1 sy-vline.
         write: (5) 'PO no.',sy-vline,
               (10) 'Item no.',sy-vline,
               (15) 'PO Date' color 1,sy-vline,
               (18) 'PO Created By.',sy-vline,
               (23) 'Material No.', sy-vline,
               (27) 'PO Quantity', sy-vline,
               (29) 'PO Unit', sy-vline,
               (31) 'PO Value',sy-vline,
               (33) 'Currency' , sy-vline.
        write:/(743) sy-uline.
        format reset.

  • How to make it full screen

    Hello
    I have made a slide show and I will be showing it threw a projector and I do not know how to make the slide show full screen.
    So how do i make the show be full screen?
    Thanks
    Greg Wyatt

    hey there Greg & welcome to Discussions.
    connect the projector to the Mac using the appropriate adaptor & cable, open System Prefs. > Displays > Detect Displays > Gather Windows. set rez for the projector & turn off Mirror. that's how you play your slideshow "through" the projector.
    good luck.

  • How to make background fit screen

    how to make background fit screen

    go to settings
    go to desktop & screen saver
    there you have a dropdownbox with all the options

  • How to make The Java Screen Recorder similar to this one?

    Can u talk about this how can make this code with java?
    http://www.devharbor.com/java/300-Screen-Recorder.html
    The author of this application says this maked by Java Swing.
    My Question is:
    What is Java Swing?
    It's easy to make this app?
    What API/Component needed for export video to MP4 Format like this application?
    How can make a similar application for education purpose with Java.
    Thanks

    808154 wrote:
    :) Thank you for answering my question,
    but impossible in nothing bro, Yea, that's what Aleksey Vayner claimed and he didn't do so well.
    I need to know about swing and start to work with java to develop this software and if I need some help I ask here.Clearly yes. You also need to make simple programs and practice for a long time before you're gonna be able to write a screen recorder with MP4 output.
    I try to develop this before 3-4 years ;)I guess 3-4 years is a realistic goal, if you really concentrate on learning Java.

  • Using my Iphone5, i would like to make a full screen picture show on the screen when someone is calling me.  How do I go about that?

    how do I do this?

    With the current version of iOS on an iPhone there is no way to have a full screen contact picture. You can make a suggestion to Apple at http://www.apple.com/feedback/

  • How do you make a split-screen effect in Premiere Pro?

    Is Adobe Premiere Pro the easiest way to put together footage of someone presenting to a group and somehow splitting the viewscreen to show both the presenter as recorded and their powerpoint slides in the other side of screen in synch with the video recording?

    FAQ: How do I learn Premiere Pro?
    http://forums.adobe.com/thread/878529?tstart=0
    Getting Started with Premiere Pro CS6
    http://www.video2brain.com/en/getting-started-with-premiere-pro
    Adobe Premiere Pro Help and tutorials
    http://helpx.adobe.com/premiere-pro/topics.html
    The definitive tutorial list in message #3 courtesy John T Smith:
    http://forums.adobe.com/message/2276578

  • PE7: Split screen/picture in picture jerkiness problem?

    I'm using Premiere Elements 7, creating a video that displays multiple videos at once. I tried:
    Splitting the screen into four boxes of same size (top left, top right, bottom left, bottom right), each filled with its own video
    Having one main video with 3 picture-in-picture windows overlaid on top of the main
    I followed this instruction: http://www.heron-productions.com/4-splitscreen.html
    In both cases, after I rendered work area, I see the video on Track 1 and sometimes Track 2 become very jerky, like skipping backwards and forwards by themselves. Exactly the same issue also when I export into final video. The only way I could solve this issue reliably is by decreasing the number of simultaneous videos/windows to two.
    I have also tried this on another machine that has Premiere Pro CS4, resulting exactly the same issue. Very confusing since at least Premiere Pro should be able to do this just fine.
    Is this a bug? Or am I doing something wrong? FWIW, all my sources are AVCHD files from a Canon HF100, and the project is a 1080 30i.

    Thanks for the reply! Yeah, I figured I should've posted at the root forum, instead of in the Tips & Tricks. I'll probably try to repost this there. Anyway...
    I don't think this is a hardware issue. It's not about trying to preview in realtime (although the bug shows up there too, after rendering work area). I can wait as long as I need if that's what it takes. But this problem is in the final render result. Yes, I do have an i7 setup for this: Core i7 920, 6GB DDR3 1600, ATI 4830 512MB, and disk load spread out among: 1x 1TB 32mb cache, 1x 750GB 32mb cache, 3x 500GB 16mb cache. They're not in RAID setup, but again, I can live with the current rendering time, which is more CPU-bottlenecked than disk-bottlenecked.
    This bug also exists in Premiere Pro CS4 when I tried it on another machine with that app (I myself don't have CS4).
    I rendered a short, lower resolution video to show how this bug looks like.
    http://cid-48ae90fe02b84e66.skydrive.live.com/self.aspx/Videos/PremiereBug.wmv
    Notice the main video in the background. It becomes jerky from time to time when there are more than one PiPs. Take a look around 0:20 where it becomes even worse after the 3rd PiP shows up.

  • How to make a big screen PLAY button for FLV which will fade away after the movie starts?

    I wanted to make play button. Kind of this huge one in the middle of the screen as users used to see on YouTube.
    Here is the code for it which seems to work:
    play_btn.addEventListener(MouseEvent.CLICK, onClick_Play);
          function onClick_Play(event:MouseEvent) :void {
      SWF_flv2.play();
    The problem is it doesn't dissapear once the video plays. How shoudl it be done, the whole video has to go to another frame with no play_btn on it or there is a code which can make it fade away?

    The FLVPlayback component can be set to use any number of controls for the video playback. You should use those for playback control once the video has started. If you do want to create all of your own custom controls, here's an Adobe tutorial on the FLVPlayback control structure: http://help.adobe.com/en_US/as3/components/WS5b3ccc516d4fbf351e63e3d118a9c65b32-7f00.html
    And here is a third party tutorial on creating your own controls: http://www.lemlinh.com/as3-video-player-tutorials-roundup/

  • HOW TO MAKE A RADAR SCREEN SIMULATOR ?

    I HAVE BUILT A ROTATING NEEDLE ON A SCREEN USING A WHILE LOOP AND I NEED TO CREARE SOME RANDOM OBJECTS FLYING THROUGH THAT SCREEN TO FORM A RADAR SCREEN SIMULATOR
    Attachments:
    RadarSimulation.vi ‏33 KB

    Sacha had it right with moving a picture control. I don't think you need to make your radar control transparent though.
    Here's a version of your code with a couple of planes (read from JPEG files) flying across it. You may need to change the path constant on the diagram depending on where you copy these files.
    Attachments:
    plane1.jpg ‏1 KB
    plane2.jpg ‏1 KB
    RadarSimulation.vi ‏82 KB

  • How to make a video and picture loop

    I am trying to make a loop of video footage and pictures for my personal training studio to play in the foyer constantly. How do I do this. I am using itunes from my desk top to the apple tv. I cant figure out how to get photos and videos on my itunes library. THen how do you organize them and make it loop? Thanks to anyone who can help.

    If you want to make a video loop you would need to use iMove, or some other video editing app for that.  Then add that video to iTunes under movies.

  • How Do I Change The Screen Picture Displayed During Logon

    Just got my new iMac (10.6.2), I do not like the screen displayed on initial startup while displaying the logon options. On my MacBook Pro (10.4.11) It is a simple blue with swirls. Is there anyway to change this to another desktop screen option?

    Thanks! Your directions worked perfectly. While looking through the desktop pictures I came across the cool photo of the Snow Leopard Prowling and went with that. Very high cool factor now on startup.
    The following are the steps and messages I received:
    Copied the selected photo to another file.
    Renamed it DefaultDesktop.jpg as directed.
    Dragged it into Macintosh HD/System/Library/CoreServices file.
    I received a message saying that I couldn't make changes to the CoreServices file with the option to Authenticate, selected Authenticate and typed in my admin password.
    Received a message stating that I was replacing DefaultDesktop.jpg with an older version, selected continue and now I have a much more pleasing picture on startup.

Maybe you are looking for

  • "On My Mac" saved mail gone since upgrading to Mountain Lion

    I upgraded my iMac from Snow Leopard to Mountain Lion this past week. Mail worked fine for a few days and then my Mail Rules and my "On My Mac" saved mail (DECADES worth of mail!!!) disappeared. I have both a Time Machine backup of my Snow Leopard fr

  • BI Accelerator used in combination with SAP Business Objects Explorer

    Hi , If you use SAP Netweaver BWA and SAP Business Objects Explorer Blade, do you only get the full benefit with using SAP BO Explorer, or will the same queries ran in BEx 7 Anaylser also benefit from the in memory OLAP processing? I'm guessing that

  • Purchase Requisition Field mandatory in External Service processing order

    Dear Team,                 I am running one scenario, wherein i am creating an Corrective maintenance order and i am using control key for external Service processing and entering the services and its rate and releasing the order. Now While Releasing

  • External Ref. in Manual Assignment in Single Positions

    Hi, We create future position in product type 70D. 70D is mapping under Manual Assignment in Single Positions. Many open contracts create same date and same price but only contract no. is diff. At the time of we create close deal system show date wis

  • RE: reinstall muse

    Jesus Christ! What a cunting piece of **** this program is! I won't even get into the issues, but suffice to say, Muse is simply crawling with bugs. Now I can't even reinstall the goddam thing! Unlike Photoshop etc. that has an uninstall feature in C