How do I create specific movie fiolders

Hello,
How do you create sub folders for movies on my Ipod or through Itunes? I have many types of films from Sci Fi to action to horror and would like to organise them..into these catogaries instead of having them in one MOVIE folder....
Any help would be appreciated!!
Thanks
Dazling

The construction of the middle image is most apparent, even in its small size, so let's begin with that one.
The key element to creating this effect is the creation of the mask consisting of equal width, equally spaced stripes. Here is how to make that mask quickly and accurately:
1. After creating the two image layers, choose the top layer and click on the mask symbol at the bottom of the Layers panel.
2. Choose View > Show > Grid. To see the mask Option click on it. The area will be white with the grid showing.
3. Use the Rectangular Marquee tool to select the first stripe width.  Edit > Fill > Black to create the first stripe.
4. Then Hold down Cmd+Opt+Shift and choose Edit > Free Transform. Be sure to release the mouse before releasing the keyboard keys.
5. With the marching ants still showing, hold down the Shift key for alignment and drag the stripe to the right. Do not use the center mark in the selection when dragging. Drag it to a grid line the same distance as the width of the first stripe.  Then Enter. You have done the difficult part.
6. With the marching ants still showing, hold down Cmd+Opt+Shift and strike the T key repeatedly. Each time you do, another duplicate will appear, following the spacing you designated.
7. Select > Deselect to remove the marching ants.
To see the completed work, click on the eyes in the layers panel.

Similar Messages

  • How do I create and move photos to a new folder on the iphone4?

    How do I create and move photos to a new folder on the iphone4?

    The way I do it is through iTunes.  First you have to have to import or already have the photos in your computer where you have iTunes and sync your phone.  When you have your phone connected and iTunes open click on the iphone under "devices" in the left sidebar list - then over to the right select Photos then Sync Photos and probably best to check selected folders unless you want them all, then choose the photo folders you want.  You have to have your photos in folders for multiple folders to be created in your phone, the names will be the same as the folders in your computer.  Alternately you can sync from one of your photo programs if they are listed as options and they will go to the phone in the structure you have your photos in in that program. 
    Hope this helps... There may be other ways and other third-party programs for doing this but I haven't looked...

  • How do i create a movie with six different movie panes within as in example

    i'd like to be able to create a movie that looks like this:
    http://www.youtube.com/watch?v=TtpQXH5R7v8&feature=player_embedded
    the multitracking of vocals i can do easily with garage band, but i can't figure out how to incorporate all movies as the one above has done
    thanks!
    imac Mac OS X (10.6.6)

    I'm pretty sure it could be done using the PIP feature. Though you'd need to export-reimport-export-reimport to get the effect since you can only perform the PIP effect once per project. Try this, create a Title(black background), Delete title header(leaves you an empty black background). Make sure background is long enough to display your PIP vids. Place you first vid inside(pip) and line it up whee you want it. Next, export, then reimport into new project. Now take your 2nd vid and place it inside the same imported vid, again line it up where you want it. Export that vid......continue the same process til your done inserting the pip vids. Hope that helps some. Lucky for me I have also Adobe Premier Pro at my disposal(99 video tracks/project)!) for that effect! Good luck!

  • How can i create a .mov file from image sequence with different durations

    how do u create an image sequence with different durations? image one stays for 10 seconds and image two may stay for 30 and so on. each one has a custom duration. can this be done with an apple script or a text file saved as an mov file?

    Hello Omar,
    The example code Programmatic Printing of TestStand Reports - Modular contains a sequence that will convert an XML file to an HTML file given the XML file's path and the path to the stylesheet.  It may need to be altered to fit with the modifications you have already made to the report generation routines, but I think it should definitely get you off on the right foot.  Let me know if you have any questions!
    NickB
    National Intruments

  • How do I create a movie like this one?

    I have OS X 10.6.1. I'd like to create a QuickTime movie like this http://www.happytapper.com/appsmovie.html and embed it into a webpage the same way. Here are a few questions I have about doing that:
    - Do I need Quicktime Pro? I only want to capture the iPhone simulator and the free version seems to be limited to full screen capture.
    - How do you get a completely black background like that?
    - How do you remove the mouse arrow out of the movie (all the clicking around)? The simulator will definitely show that.
    - Should I cross post this question to the developer forum?

    Make scatter brush out of a row of circles
    Apply to a curved path
    expand appearance
    apply color

  • How do I create a movie with the timecode visually embedded in it?

    I have to create a quick demo movie for a client to review. I would like to embed the timecode visually in the corner so the client can review the movie on a DVD and then make comments relative to the displayed timecode. Is there a way to do this?

    You can try this free filter FCE Timecode Display. It has a few more options than the standard Video/Timecode Reader.
    Make sure to set Type = Absolute Timecode (default); probably you don't need IN/OUT values (uncheck it), but only Current Timecode (default).
    If you logged the reel name you can also display that (check the Reel Name option).
    You can position it anywhere on the screen and define font type, size, and color, and a (semi)transparent band beneath the text.
    Piero

  • Trying to create a movie clip that Bounces off four sides of the stage

    using the syntax below I have created a movie clip called 'BALL' that bounces off from the left "x"  and moves to the right side of the stage 'x.520' and bounces back to the start "x".
    HOW DO I CREATE A MOVIE CLIP THAT BOUNCES FOUR SIDES OF THE STAGE AND STOPS ON THE FOURTH BOUNCE??
    var ballTween:Tween = new Tween(ball, "x", Bounce.easeInOut, ball.x,520, 5, true);
    ballTween.addEventListener(TweenEvent.MOTION_FINISH,tweenFinishedF);
    function tweenFinishedF(e:TweenEvent):void{
    new Tween(ball,"x",Bounce.easeOut,ball.x,0,5,true);

    Here is a simplest way to do that. This code doesn't use your ball but draws it dynamically. If you want to use your ball instance - replace relevant lines.
    import flash.display.Shape;
    import flash.display.Sprite;
    import flash.events.Event;
    import flash.geom.Rectangle;
    var ball:Shape;
    // speed, naturally
    var speed:Number = 7;
    // velocity along x
    var vx:Number = speed;
    // vlocity along y
    var vy:Number = speed;
    // area within which ball may move
    var moveArea:Rectangle;
    // radius of ball circle shape
    var ballRadius:Number = 20;
    init();
    function init():void
        moveArea = new Rectangle(ballRadius, ballRadius, stage.stageWidth - ballRadius, stage.stageHeight - ballRadius);
        drawBall();
        addEventListener(Event.ENTER_FRAME, moveBall);
    function moveBall(e:Event):void
        // change direction if ball moves out of allowed rectangle
        if (ball.x < moveArea.x)
            vx = speed;
        else if (ball.x > moveArea.width)
            vx = -speed;
        if (ball.y < moveArea.y)
            vy = speed;
        else if (ball.y > moveArea.height)
            vy = -speed;
        ball.x += vx;
        ball.y += vy;
    function drawBall():void
        ball = new Shape();
        ball.graphics.beginFill(0xFF0000);
        ball.graphics.drawCircle(0, 0, ballRadius);
        ball.x = moveArea.x + Math.random() * moveArea.width;
        ball.y = moveArea.y + Math.random() * moveArea.height;
        addChild(ball);
    Message was edited by: Andrei1

  • Compressor v4.1.3: can't create mpeg2 movie: Error: This Is Null

    Using Compressor 4.1.3 and FCPX 10.1.4, I attempt to use compressor to create a MPEG2 movie using the "MPEG2 Program Stream, 15mpbs" option. I was successful once, the first time. But I had a problem with that video in that the audio would play but the video would freeze. So any attempt since then fails with the following error:
              Failed 3x Host: [macbook]: Error: this is null.
    I don't change any of the video default options. Just using all of the default options  presented to me. And it fails.
    Seems like a bug in compressor since I'm not changing any options.
    Any idea what the problem might be, or how I can create MPEG2 movies using compressor?
    Thanks, Jim

    WWhat are your  computer specs? Have you made system changes? Did you repair permissions?

  • To create unlimited movie clip

    How do I create unlimited movie clips by CreateMovieClip by onPress a button ?

    Here is a simplest way to do that. This code doesn't use your ball but draws it dynamically. If you want to use your ball instance - replace relevant lines.
    import flash.display.Shape;
    import flash.display.Sprite;
    import flash.events.Event;
    import flash.geom.Rectangle;
    var ball:Shape;
    // speed, naturally
    var speed:Number = 7;
    // velocity along x
    var vx:Number = speed;
    // vlocity along y
    var vy:Number = speed;
    // area within which ball may move
    var moveArea:Rectangle;
    // radius of ball circle shape
    var ballRadius:Number = 20;
    init();
    function init():void
        moveArea = new Rectangle(ballRadius, ballRadius, stage.stageWidth - ballRadius, stage.stageHeight - ballRadius);
        drawBall();
        addEventListener(Event.ENTER_FRAME, moveBall);
    function moveBall(e:Event):void
        // change direction if ball moves out of allowed rectangle
        if (ball.x < moveArea.x)
            vx = speed;
        else if (ball.x > moveArea.width)
            vx = -speed;
        if (ball.y < moveArea.y)
            vy = speed;
        else if (ball.y > moveArea.height)
            vy = -speed;
        ball.x += vx;
        ball.y += vy;
    function drawBall():void
        ball = new Shape();
        ball.graphics.beginFill(0xFF0000);
        ball.graphics.drawCircle(0, 0, ballRadius);
        ball.x = moveArea.x + Math.random() * moveArea.width;
        ball.y = moveArea.y + Math.random() * moveArea.height;
        addChild(ball);
    Message was edited by: Andrei1

  • HT204053 I have one apple ID that my entire family has been using.  How do I create new apple ID's for each of us and move the appropriate content to each new ID from the original apple ID now that we all have our own devices?

    I have been using one apple ID for 4 family members.  Up until now it hasn't been a problem but now that we all have our own devices how do I create new apple ID's for each of us and them move the approprioate things from the original apple ID account to the new ones for each of us?

    stuartx4 wrote:
    Thanks Csound1, wish I have seperated everything from the beginning but when your kids are little and start buying music etc it just didn't seem like an issue.
    That has a familiar ring to it

  • I have created a movie in 16:9 format. I have created an iDVD pane in 16:9 but when I preview the movie that pane changes to 4:3 and burns the DVD as a 4:3 movie. How can I stop that, please I am in Snow Leopard, using FCE4.0.1?

    I am using Snow Leopard and have created a movie in 16:9 format (SD not HDV) I created a movie which stays in the 16:9 format in fcp file, .mov fiule and MP4 file. I created an iDVD pane in 16:9 but when I play the movie in the iDVD preview window the iDVD pane switches to 4:3 and it burns the DVD in 4:3. How can I stop this so I get a16:9 DVD. Thanks for any help offered
    James Bowman

    Hi
    As I see this I see two parts
    • Howto go from FinalCut to iDVD
    • Howto set iDVD right
    In FinalCut Express (to 4) or Pro (to 6 - most probably 7 too)
    • One has to set Anamorphic in the Browser window - menu columns
    • Export as QuickTime movie .mov - NO QUICKTIME CONVERSION
    In iDVD there are TWO places to set - WideScreen
    - Start a NEW iDVD project - AND HERE SELECT WideScreen 16:9
    - in Project - select Projectinfo
    - now set WideScreen 16:9 - Here too
    This use to work for me.
    FOR FinalCut Pro-X - I have not a Clue - as I don't use it. SORRY
    BTW - There is a good practice to before BURNING the DVD do
    • Save as a DiskImage
    • Test this by using DVD-Player tool
    And if it is OK Size and All - then burn it by using
    • Disk Util tool
    • here set down burn speed to x4 or less (less burn errors = plays on more devices and better)
    • Not using Memorex or NoName etc cheap media - as they usually DO NOT WORK as Video-DVDs
    • I use Verbatim DVD-R as they play on more and even older DVD-players
    Yours Bengt W

  • How do I create a permanent backup of all my iTunes data, and movies?

    I'm confused about how to effectively backup and share my data.  And know others must have wrestled with this one too - so help please!
    Our family works across several platforms (PC, MacBookPro, 2 iPads, iPods, 2 iPhones and appleTV) and want to have a method to effectively share and save (i.e. permanently backup) our data (iTunes, other documents and movies).   We use HomeSharing, iCloud and iTunes Match, which work most of the time.  All the devices are linked to a single iTunes library.
    I understand that iCloud serves to synchronise data and share it between devices. Great.  But how do I create a permanent backup of the data?  I could get a third party online service (e.g. Box.net) or use external harddrives.  Is there a simpler approach that apple provides, that I've missed?  I'd lke to make teh solution a simple to use (i.e. upload data and share it), reliable without paying the earth! 

    Have you considered this...
    Backup iTunes to an External Drive  >  http://support.apple.com/kb/HT1751
    And there is this  >  ..Most commonly used backup methods

  • How can I get a movie that I created in IDVD to load in ITunes and stream to Apple TV?

    How can I get a movie that I created in IDVD to load in ITunes and stream to Apple TV?

    Welcome to the Apple Community.
    You can't, but you have a few alternatives.
    Best option: If you made the movie on the DVD in iMovie (or even another editing application) and still have the project, go back to the project and export it for Apple TV (using the Apple TV preset)
    Next best option: If you still have the original movie that you put on the DVD, open it in QuickTime and export it for Apple TV (using the Apple TV preset)
    Worst option: Use something like Mpegstreamclip (Quicktime Mpeg2 playback component required) to convert the DVD to h264.

  • SharePoint Designer 2013 (2010 Platform Workflow) - How can I create a new list item with a SPECIFIC content type?

    In SharePoint 2010 I created workflows that used the 'Create list Item' Action, which then set the Content Type ID (so I could create documents of various types in a document library). 
    We just switched to the SharePoint 2013 platform, and now the drop down for Content Type ID is blank in all of the workflows that are still using the SharePoint 2010 platform.  Is there any way to create a list item with specific content
    type?  Even if I could just input a string into that field instead of using this blank drop-down.  Please help! 

    Hi Sarah,
    According to your description, my understanding is that you cannot create a new list item with a specific content type using SharePoint 2010 Platform Workflow.
    I tested the same scenario in my environment, and the Create List Item worked fine with the specific content type.
    How did you create the content type?
    Please check if the content type is added to the list/library the workflow associated with.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • How do I access my iCloud content? Specifically movies purchased in itunes.

    How do I access my iCloud content? Specifically movies purchased in itunes. I have multiple Apple devices, one itunes account, one cloud...purchased upgraded storage. The iCloud page on Apple website states that movies purchased in itumes are automatically transferred to the cloud. I can't find the movies unless I sync my devices via a cord. I am interested in purchasing Apple TV but want to make sure I will be able to access movies purchased.

    Movies are not stored in icloud.  They are on the cloud - yes, but what Apple means,  is that you can redownload the movies via the iTunes Store, where all movies are stored (the itunes cloud).

Maybe you are looking for

  • AP Open Interface Invoice

    Hi, This is my question..... Some items from AP Open Interface Invoice Lines table in Prd were deleted that would be normally imported to AP. This is the Invoice dated in March for Feb activity. We will need this information reprocessed and put in th

  • Creating a Photo Album

    My wife is attempting to create a photo album in which to store photos.  She selected the photos she wants and a check mark appears on the photos selected.  When she hold the top of one of the photos no icon appears as it should in between the sharin

  • 2012 MacBook Pro 15 Memory Upgrade

    Hi all, I have a solid state 2012 MacBook pro (15").  It has 16GB RAM.  I like to make that 32GB by replacing the two 8GB modules with 16GB modules.  Is this possible?  Will the computer see them? Thanks, nima zahadat

  • Error message after installing external zip drive

    After installing a replacement zip drive (and accompanying software from CD), I'm confronted with a periodic error message advising that hardware has not been closed properly disk ejected prior to removal? I'm not removing anything--the zip disk is r

  • Is there a diagnostic test to detect hardware or software problems?

    Hi All Is there a way to run a diagnostics test to find if there is a hardware problem? or software problem? or even a computer history that I can pull up that shows what led up to the crash? (...like in iDVD I was working on several large video proj