How do I get 2 layers to move at the same time?

How do you get 2 layers to move at the same time?

Thanks for the help folks, sorry I've been away.
I'd love help with the problem of why I only one track seems to accept clips to play. When I drag them to other tracks or create a track by dragging the clips are grayed out and won't play, but if I drag them to the one track where they're blue they play.

Similar Messages

  • How do I get two screens up at the same time

    Hello.
    How do I bring up two screens at the same time so I can work on one and refer to the tutorials on the other?

    Hello Jazzy6491
    All you should need is another monitor and the appropriate adapter for it you plug into you MacBook Pro. Check out the article below on how to use multiple monitors with your Mac.
    OS X: How to use multiple displays with your Mac in Mountain Lion and earlier
    http://support.apple.com/kb/ht5019
    Regards,
    -Norm G.

  • HT1451 Hi All, I have 2 users on my desktop, 1 i-tunes account and log-in but both users have different music contents i.e. one has the full iTunes library and the other only has some songs. How do i get both users to have the same music content?

    I Have 2 users on my computer and both access i-tunes using same password etc. however 1 library has the full content of music but the other one has only partial playlists. How do I get both users to have the same full library?

    The title of my initial post is a bit misleading. I already took a chance deleting one of the iPhones, hoping if I deleted the wrong one, I can still reauthorize it (all with the same Apple ID acct, so not subject to 90-day waiting period, right?) The iTunes database just updated itself, and it says I have 4 "devices" "in the Cloud", but 5 "computers" associated w my account. How can I find out what computers are associated? Isn't there a list I can see? I dont have a clue what computers they might be. If I use the  "Deauthorize All" option, is it a pain to add them all back in. I assume I would have to log in from each computer to reauthorize each one. Would I have to be running the newest OS or version of iTunes to reauthorize? I think I have a PowerBook G4 Titanium with an older OS and iTunes. I'd like to keep that authorized, if possible.

  • How can i edit lenght of the all layers in timeline at the same time??? in Photoshop cs6 extended

    How can i edit lenght of the all layers in timeline at the same time??? in Photoshop cs6 extended
    Because when i select all layers in layer panel or right in timeline panel, i will be able to edit duration only in one layer... so if i can document with more than 20 layers, the work will be terrible
    Please give me someone some tips... and tricks

    You can't delete the All On My Mac as it is an automatic group to display all of the contacts that are stored "On My Mac." You can delete all of the contacts that are in the ON MY MAC section by selecting All ON My Mac and then selecting all contacts. Press delete and approve the deletion. Then, select each group under ON My Mac and delete those individually.
    Then, Make sure iCloud is set as the default account in the General Address Book Preferences.

  • How do i get my itunes to be the same on my laptop, ipod touch and ipad???? ive sync'd them all, but each is still different, please help

    how do i get my itunes to be the same on my laptop, ipod touch and ipad???? ive sync'd them all, but each is still different, please help

    Syning with iTunes is completely separate from iCloud, except that if you have elected to sync calendars and contacts with iCloud you cannot sync them with iTunes.
    What iTunes media are you having problems syncing to your iPhone?

  • How do I get itunes to not list the same artist more than once?

    How do I get ituens to not list the same artist more than once?  I have tried editing the info, sorting different ways and sometimes it works and sometimes not...it's very frustrating to me to have the same artist listed multiple times...

    Setting a common Album Artist for each Album does most of the work. For deeper problems see Grouping tracks into albums.
    In general you need to make sure that all the values in the tags are used consistently. Same spelling, same capitalization, same accents, no leading, trailing, or multiple spaces, and each value of Artist, Album Artist or Album should only be associated with one value of Sort Artist, Sort Album Artist or Sort Album respectively.
    tt2

  • How can I get iCal not to show the same birthday dates from my iCloud

    How can I get iCal not to show the same birthday dates from my iCloud?

    You don't need them stored locally for a backup. You can manually export your contacts as archive for backup. Also, if you are backing up with Time Machine, you already have a backup. If your hard drive crashed, you would have to rely on your backup or iCloud anyway.
    So, if you're comfortable with that, sign out of iCloud. Choose to delete contacts from the computer. When you sign back into iCloud, you should only have iCloud contacts listed in AB. When you open iCal, you should only have one listing for birthdays.
    The other alternative is to disable the Birthday c.alendar and create one manually.

  • How can I get my ipad to reflect the same playlist order that appears on my computer?

    How can I get my ipad to reflect the same playlist order that appears on my computer?  My computer has the exact desired order of playlist, but once the system is synced, the ipad does not reflect the propper order.

    In iTunes with your playlist shown in the correct order, right-click on the playlist name in the side-bar and click Copy to Play Order. Enable the side-bar with CTRL+S if necessary. Sync. Note also that the column you are sorting on should have the small triangle pointing upwards, otherwise the songs will play in the reverse order. You may also find that you need to first remove, and then add back the playlist to the device if syncing doesn't update it properly. See this post for more.
    tt2

  • How do I get an SVG file to the same color profile as my illustrator file (U.S. Web Coated (SWOP) v2 and what would be the correct color profile for printing on a shirt?

    How do I get an SVG file to the same color profile as my illustrator file (U.S. Web Coated (SWOP) v2 and what would be the correct color profile for printing on a shirt?
    Thank you.

    dadanas wrote:
    Hi Simcah, I have a similar problem. Have you found out any solution?
    thanks, dan
    You need to ask the printing service provider. Dealing with color totally depends on the printing process involved and of course the machines used.

  • How to make 2 balls move at the same time

    I am working on an app in xcode and I need to make 2 balls move at the same time. When I try to use the same code for both of the balls, the 2 CGPoints interfere. Here is my code in the .m file.
    @synthesize ball, ball2;
    -(void) onTimer {
            ball.center = CGPointMake(ball.center.x+pos.x,ball.center.y+pos.y);
            if(ball.center.x > 295 || ball.center.x < 10)
                pos.x = -pos.x;
            if(ball.center.y > 435 || ball.center.y < 35)
                pos.y = -pos.y;
    - (void) onTimer2 {
    ball2.center = CGPointMake(ball2.center.x+pos.x,ball2.center.y+pos.y);
    if(ball2.center.x > 295 || ball2.center.x < 10)
    pos.x = -pos.x;
    if(ball2.center.y > 435 || ball2.center.y < 35)
    pos.y = -pos.y;
    [self collision];
    - (void)viewDidLoad
              [[NSTimer scheduledTimerWithTimeInterval:0.04 target:self selector:@selector(onTimer) userInfo:nil repeats:YES] retain];
        [[NSTimer scheduledTimerWithTimeInterval:0.04 target:self selector:@selector(onTimer2) userInfo:nil repeats:YES] retain];
        [super viewDidLoad];
        // Do any additional setup after loading the view from its nib.
    Here is my .h file
    @interface game : UIViewController {
        IBOutlet UIImageView *ball;
        IBOutlet UIImageView *ball2;
    @property(nonatomic,retain) IBOutlet UIImageView *ball;
    @property(nonatomic,retain) IBOutlet UIImageView *ball2;

    What do you mean by the 2 CGPoints interfere?
    You're changing the location of the balls by pos.x and pos.y, where is the code for those? what is it doing?
    Why have two timers?  One timer would work , just have the code move both balls.
    The refresh rate for the screen is 60hz. (60 time a second) You'll get better animation if you stick as close to this value as you can.

  • How do i start video and audio at the same time in ios

    How do i start video and audio at the same time in ios?
    I have tried a lot of different ways but i cant figure it out?
    I can get the sound and animation (timeline) to start playing.
    There is no problem to start the video and the animation at the same time.
    But i cant get both the video and the audio to start playing when i press a button.
    It works great in OSX and on windows?
    Here is an example:
    // insert code for mouse click here
    // Play an audio track
    sym.$("_1")[0].play();
    // Play a video track
    sym.$("host")[0].play();
    // Play the timeline at a label or specific time. For example:
    // sym.play(500); or sym.play("myLabel");
    sym.play("marker1");

    If the game has sound in it (and possibly even if it doesn't) it may be overriding the Music app and causing it to stop playing - in which case there is nothing that you can do about it.

  • HT1657 Can you rent more than one movie at the same time?

    Can you rent more than one movie at the same time on itunes?

    I think Justin is correct and you should have statistics in place and a reasonable partition scheme so that the optimizer selects the correct partitions rather than telling it what to do. You paid a lot for partitioning after all.
    There are some, possibly misguided, examples in the manuals showing how to create a view so you can delete from a single partition without specifying the partition criteria in the delete statement. This in effect turns partitioning back into DIY partitioning i.e. separate tables, union all and pretend its a single logical table using a view. But backwards.
    So to do what you want you just assume the partitions are separate tables, and then use union all to glue the ones you want back together.
    select * from sales partition (sales_q1_2000)
    union all
    select * from sales partition (sales_q1_2001)
    union all
    select * from sales partition (sales_q1_2003)
    union all
    select * from sales partition (sales_q1_2004);It probably goes without saying that as well as making the expensive version of partitioning behave like the free alternative, there is the possibility that it will perform like it as well.

  • Open two movies at the same time

    It seems that it is not possible to open two movies (.cp) at
    the same time with Captivate 1 (well you can run a new Captivate
    program an open the second movie) but will it be possible to open
    more than one movie at the same time in Captivate 2?
    Thanks

    Hello hydrosound,
    Whilst you cannot open two Captivate movies in the same
    instance of Macromedia Captivate, you can get around this by simply
    loading another copy of Captivate. I do this all the time and open
    the second project file that way.
    HTH
    Regards,
    Mark

  • My sister bought 2 movies at the same time HELP!!

    My sister bought 2 movies at the same time and when the first one finished downloading the second one deleted but itunes still took the money for a movie she doesn't have
    is there any way to get the movie back without having to buy it again?
    Thanks

    http://support.apple.com/kb/HT1933

  • Stream from iMac to 2 different ATV's; different movies, at the same time?

    Can I stream  from my iTunes library on my mid 2014 iMac; to two different 3rd gen ATV's, two different movies at the same time?

    Thank you Alley_Cat for your reply!
    Yes...all devices are enabled for Home Sharing with the same APPLE ID, all on the same network, the content is in iTunes and compatible, computer and iTunes running, and I am initiating playback on the AppleTVs themselves via the Computers icon.
    playback is is fine on 1st ATV. When I TRY to connect to ATV #2... and try to connect to my iTunes library i get:
    COULD NOT CONNECT TO _______ LIBRARY MAKE SURE COMPUTER IS ON THE SAME NETWORK AND ITUNES IS UP TO DATE AND ITUNES IS RUNNING.
    iTunes is up to date ver11.3.1.(2) .  As noted before,same network iTunes compatible, running and initiating playback on ATV's via Computers icon.

Maybe you are looking for

  • To solve i have to reinstall snowleopard, to reinstall SN i have to solve, help!!!

    i just bought an early 2008 macbook knowing that the CD/DVD drive didn´t worked, wich i didn´t mind then....but leopard was installed in the computer, and i need to install snow leopard,... soo far so god... to install SN i have to partition the disk

  • Summing a field if another field = scrap

    I'm working on a SSRS report where I need to sum a field if another field=scrap. I have multiple fields with 2 parameters and a sum on 1 field already in this report. I have tried to make it work a couple of other ways(expressions and query) but have

  • SQL Server Report integrate with SharePoint slow

    Dear Team, I have SQL Server report servie integrate with SharePoint mode, create several reports and deployed to SharePoint, use SharePoint sql server report viewer web part to view the report. the report contain about 8 parametes, it takes half a m

  • How can i use analytic function on these data

    hi , i have the following data: id start end 1 11-oct-2006 03:00:34 12-oct-2006 09:00:10 1 09-oct-2006 05:00:23 11-oct-2006 03:00:34 1 08-oct-2006 03:00:23 09-oct-2006 05:00:23 2 11-oct-2006 11:00:00 11-oct-2006 14:00:00 1 08-oct-2006 03:00:00 08-oct

  • Making layering order dynamic--possible (?)

    hey- I'm doing a project where six objects are all sitting on the canvas-I enlarge by increasing the scale of each one to cover the full screen. And that works fine with the top object(object-1) in the layer-but as I move down the layer list, object-