Easy way to set interpolation on keyframes?

Say you have text flying in using scale and you want it to start out fast and slow down. When you go in and select Bezier for interpolation, you have to set the curve for the x,y,and z parameters. It is hard to select the right parameter and you have to end up turning the other two off to select the right one. Is there a way to select all (x,y,z) and move the Bezier curve for all at once?
Thanks,
John

just drag-slect the point in the KF editor. All 3 KF will be selected and u can ctrl click it for bezier. They'll be all 3 set and u can drag the handle for all 3.
In Motion u always have to drag select them to have them all.
Federico

Similar Messages

  • Any easy way to set *.jars classpath in windows

    Is any easy way to set the classpath for serveral jars in windows?
    for example, if I have 1000 jars in a folder "C:/MyJar", is this the only way to set the classpath with:
    CLASSPATH=C:/MyJar/Jar0001.jar; C:/MyJar/Jar0002.jar; C:/MyJar/Jar0003.jar; .........; C:/MyJar/Jar1000.jar
    ?

    Is any easy way to set the classpath for serveral jars
    in windows?
    for example, if I have 1000 jars in a folder
    "C:/MyJar", is this the only way to set the classpath
    with:
    CLASSPATH=C:/MyJar/Jar0001.jar; C:/MyJar/Jar0002.jar;
    C:/MyJar/Jar0003.jar; .........; C:/MyJar/Jar1000.jar
    ?You shouldn't have a system CLASSPATH environment variable.
    You don't add every JAR for every project to a system CLASSPATH. You should be doing it on a project-by-project basis, preferrably with a script or an Ant build.xml.
    Doing it with a system environment variable makes your apps less portable, because now you depend on the target machine being set up in a particular way. You should figure out how to package your apps appropriately so clients don't have to worry about that setup issue.

  • Any easier way to set due dates?

    By and large, I'm pretty happy with the functionality of iCal, even if it's a bit basic. But setting due dates on to dos and events is very frustrating!
    Let's say you add a new to do, then click the due date box. Today's date is filled in, say, 26/08/2007 in my part of the world. I want to schedule the to do for next month. To change it you click on the day part, enter a number (say, 08), then tab or click on the month part. At this time the iCal display jumps to 08/08/2007 (in the past!). Now I get to manually type in the new month, 9, and press Return or tab and things are good again. It's all kind of long-winded and messy. What's sorely needed is a drop-down calendar picker, or the ability to click on the existing calendar at the left to pick a date.
    Does anyone know of any easier way to enter due dates? I've even looked for external programs that handle to do functionality, but can't find any that automatically sync changes to iCal for syncing to my Palm Treo. Anyone know if iCal in Leopard is any better in this regard?
    Thanks in advance!

    I couldn't agree more. I can't believe that this has escaped Apple for so long, and didn't even make it into Leopard. Let's say its the middle of November and I want to schedule a to-do due date for the end of the week, say Friday, second week of December. I do this all the time. Sorry, but I can't do the math this quickly, so I need to open up a calendar, or scroll down the calendar, then enter the exact date manually.
    Just give me a quick pop-up. Travel web sites do this. Now Up To Date in 1992 had drop down calendars. So does Entourage, which is what I use ONLY because of this one glaring pain. Entering due dates, reminders, etc, is just a pain in iCal, and even worse now in Mail.

  • Is there any easier way to set as homepage

    Is there an easy way to ask our users to set my website [http://www.itsmysearch.com] (or any other page on that website) as Homepage.
    I mean, currently i ask users to 'drag the link' on their homepage icon. But isn't there a way so that, they just click on a link, and set the page as thr homepage?

    Yes, take a look at this JS code:
    function bookmark(){
    var title = 'Title of Bookmark';
    var url = 'http://yourdomain.com';
    if (document.all)
    window.external.AddFavorite(url, title);
    else if (window.sidebar)
    window.sidebar.addPanel(title, url, "")
    else if (window.sidebar&&window.sidebar.addPanel)
    window.sidebar.addPanel(title,url,"");
    And call it like:
    <a href="javascript:bookmark()">Bookmark this site</a>
    I'm experimenting with it on my [http://www.myoutfitis.com/ fashion inspiration] site and it seems to be working well.

  • Easier way to set post-constructor JTable column names?

    I have a class that extends JTable. It also has a pair of inner classes that extend DefaultTableCellRenderer and AbstractTableModel so I can dynamicaly adjust the number of rows and their contents. That's not the problem - that part works fine. The problem is the column headers. My table doesn't currently have any but I want to add them.
    The column quantity is constant at 3 and should always be the same 3 Strings. It would be nice if I could use the JTable constructors that take a Vector or Object[] of column names from the start in my new class' constructor. But I don't think I can because at that point I don't know how many rows there will be or what they'll contain. Trying to set rowData to null just caused runtime exceptions.
    So the alternative seems to be to call setColumnModel() within the constructor, passing it a DefaultTableColumnModel. Which then requires I call addColumn() three times. Each time passing it a new TableColumn object. Each of which requires that I separately call setHeaderValue() after I construct it to set the header name. Am I right in that is the only way to do it? It just seems overly complex.

    I'll post a streamlined version of my class in case that will help...
    public class TotalsTable extends JTable
       private static int NUM_COLUMNS = 3;
       static final public String columnNames[] = {
             "Col Name 1", "Col Name 2", "Col Name 3"};
       protected Vector data = null;
       private TotalsModel tableModel;
       public TotalsTable()
          tableModel = new TotalsModel();
          setModel(tableModel);
          TableCellRenderer renderer = new TotalsCellRenderer();
          setDefaultRenderer(Object.class, renderer);
       public void updateTable(Vector pData)
          data = pData;
          tableModel.update();
       class TotalsCellRenderer extends DefaultTableCellRenderer
          public Component getTableCellRendererComponent
             (JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column)
             super.getTableCellRendererComponent(table, value, isSelected,
                                                 hasFocus, row, column);
             if (column == 0) {
                setForeground(Color.blue);
             else {
                setForeground(Color.black);
             return this;
       class TotalsModel extends AbstractTableModel
          public TotalsModel()
             super();
          protected void update()
             fireTableStructureChanged();
           * Retrieves number of columns
           * (Necessary for AbstractTableModel implementation)
          public synchronized int getColumnCount()
             return NUM_COLUMNS;
          public synchronized int getRowCount()
             if (playerData == null)
                System.out.println("No rows found in table");
                return 0;
             else
                return playerData.size();
           * Returns cell information of a record at location row,column
           * (Necessary for AbstractTableModel implementation)
          public synchronized Object getValueAt(int row, int column)
             try
                MyObject p = (MyObject) data.elementAt(row);
                switch (column)
                   case 0:
                      return p.getName();
                   case 1:
                      return ("" + p.getDataItem2());
                   case 2:
                      return ("" + p.getDataItem3());
                   default:
                      System.out.println("getValueAt() Error: Invalid column");
             catch (Exception e)
                System.out.println("Exception in getValueAt(): " +
                                   e.getMessage());
             return "";
          public String getColumnName(int col)
             if (col < NUM_COLUMNS)
                return columnNames[col];
             else
                return "";
          public Class getColumnClass(int c)
             return getValueAt(0, c).getClass();
    }

  • Easy way to set volume to vibrate

    I just upgraded from the Droid Razr.  One of the features I really liked was the ability to just touch the power button and on the lock screen was the ability to switch from volume to vibrate, without having to use the volume keys.  I can't find this ability on the turbo, anyone know a way?

    click here:
    Adjusting audio alerts

  • Easier way to set audio levels?

    I found that various clips that I had cut together had WILDLY varying audio levels. At first, I tried to drag the volume meter for the audio track around, but that had no effect at all (kind of weird if you ask me). Then I discovered the "audio gain" feature, which does what I want. Sadly, it makes me enter a number, and that's largely a guessing game for me. Is there any way I can either get to visually decide how the audio wave should look like (roughly, of course) or simply tell Premiere Pro to "use the same level as this clip"?

    Why don't you use some of the normalization features. You can right click and tell the audio files, select all of them at once, to normalize peaks to a certain level. Then all files are starting from roughly the same point. You can also use the volume handles on the clips to adjust their volume.

  • Different ways of setting up a TC as a HD

    I'm looking for some inspiration here on how best to set up my TC for my needs & wondering how others do for similar needs....
    I have a 2TB TC that I have set up so that all of mine & my girlfriends photo's, music, movies & documents are on the one location so that we can access it wirelessly from both our MacBooks & also from a MacMini which I'm going to buy in a month or 2. Changing the location for where iTunes & iPhoto look wasn't a problem but browsing through iPhoto in particular is really slow due to the number of previews I presume, and also we are now unable to have any of the media with us when traveling about, synching phones on the move is a disaster as well!
    Anyway,
    is there an easy way of setting up iTunes / iPhoto so that we can have all the data on the TC managed on the MacMini but import small iTunes Playlists & iPhoto Albums to our MacBooks without having to change in preferences where the applications look for data each time we get home?
    Any help anybody can offer would be grand!
    Thanks in advance.........

    You topic might be better suited for the iPhoto or iTunes forums, since your question seems to be with the application(s) functionality, not really the Time Capsules. However, if you start iPhoto or iTunes while holding down on the "option/alt" key, you can manually select a library to access. When you want one of your computers to access the library on the Time Capsule, make sure it's mounted as a shared volume on your Desktop and then open iTunes and point it towards the library on the Time Capsule. If you want to use a smaller library on your computer, open iTunes and point it to the library on your Mac. I've never switched back and forth multiple times between multiple libraries, so you might check in the iPhoto or iTunes forums to see if any issues may arise from doing this repeatedly.
    -Doug

  • What is easiest way to set up a remote network between countries online?

    What is easiest way to set up a remote network between countries online?
    My main Mac is in England, UK and I'm spending time in the USA with my Mac laptop for 3 months. I'm in the USA right now, but neighbour in the UK has keys to my apartment so he can go in there and follow my instructions.
    How can I access my Mac back in England via my Mac laptop in the USA as there are files on my UK computer that I need to transfer back/forth while I'm here in America.
    I know there are things like Log-me-In as in per link below, but I don't think you need things like this on the Mac do you, isn't there an easy way to set something like this up via the Mac's OS?
    https://secure.logmein.com/welcome/access/fasteasy/2/?wt.srch=1&originid=4373&ut pk=log%20me%20in&destination=/welcome/access/fasteasy/2/
    Any advice on the easiest way for me to get this set up finally would be great as I just can't figure out the most straight forward way of doing this.
    Thanks a ton all.

    Is there any chance of being able to set up and use something such as
    the Apple Remote Desktop in these computers? Sure, there is a matter
    of setting up the computer on the far end, including any update to the OS
    and having the Apple Remote Desktop client side ready and able.
    And then having (owning) the ARD software within the computer you have
    there while traveling so as to contact and control the remote computer.
    This should be capable of allowing you to move files between the Macs
    but may be cumbersome without planning ahead; before traveling away.
    • Apple - Remote Desktop - Tutorials - Easy Set Up
    To install or upgrade to Apple Remote Desktop 3 on either admin or client...
    1- http://www.apple.com/remotedesktop/tutorials/easysetup.html
    2- http://www.apple.com/remotedesktop/tutorials/
    • Apple - Support - Remote Desktop
    The Apple Remote Desktop Support page provides new users with plenty of ...
    http://www.apple.com/support/remotedesktop/
    While this is not exactly a network in one sense, it would allow you to see
    and control the other Mac at some distance; depending on IP connection
    bandwidth and other preparation before leaving the home computer. A
    backup power supply and other matters would be recommended so you
    won't have a hung computer or grid issues while at a distance, for example.
    {And this does not sound so easy when away from the remote computer to me.}
    Good luck & happy computing!

  • Changing energy saver the easy way

    Is there an easy way to set schedules on workstations? If I knew which pref file contained this info I could copy out that file no?

    don't know what "pmset" means, the provided unix commands don't quite cover what I want;
    start up weekdays at 7:30 a.m., shutdown everyday at 4:00 p.m.
    If I knew which prefs file held that data. I thought it was users/me/library/preferences/com.apple.systempreferences.plist
    but moving that file around doesn't seem to do it.
    If I change the settings manually on a workstation, when logged in as admin, all users inherit this even though prefs file is in admin's own prefs folder.
    coping out the file doesn't do anything though, so I'm either doing the wrong file or something is going on way above my head (no doubt)

  • Easy way to connect to dev vs prod design center?

    Hi all,
    I have a dev design center and a prod design center. Is there an easy way to set up 2 different shortcuts for easier logging in? That is, I would like a shortcut to connect to prod and a seperate shortcut to connect to dev. Is this possible?
    I tried searching the forums for suggestions, but didn't find anything.
    Thanks,
    Sammi

    You will have only one OWB design centre client on your PC, to define whether it is prod,dev or UAT you have locations configured.
    The enviroment is controlled from locations and not through different instances, it is something very similar to oracle sqplus or toad
    you wont have different instances of sqlplus ot toad for dev and prod, everything is controlled from tnsnames and locations is similar to tnsnames. hope this is clear.

  • Is there a way to set the default level of keyframe easing?

    I'm currently using the graph editor to smooth my ease-in / ease-out keyframes with 100% influence.  I'm having to adjust the easing of each keyframe individually. 
    Is there a way to set the default level to 100%, so that I can just select "Easy Ease In" and have it apply without having to go into the graph editor?  It would save a lot of time.

    No, there's not a way to do that, but it's a good feature request. You can submit feature requests here:
    http://www.adobe.com/go/wish

  • I am looking to "move out" of my computer and into my wife's, is there an easy way to accomplish this task, keeping all my files and setting up a second user?

    I just bought a new external 3TB hard drive for this task and want to keep my items seperate from hers for both our sanity.
    I figured that I would do a time machine back up and use that to do the move part of things.
    But as to setting up the new user on her computer I am just not sure if I can "tell" the computer to only use the new drive for my stuff and only acces the new drive for all things related to that new profile.
    More then anything else I want to be able to say that all things that are hers have not been touched/acccesed/deleted by any of my actions. And that I am "confined" to the new drive.
    I hope this makes sence.
    Mr Geef

    I have a feeling there are music files in my folders that are not linked to iTunes but can't figure out how to import them without going through all 8800+ files. Is there an easy way to import all the files without losing the current playcounts
    AFIK there isn't an easy way of linking up to a lot of dead tracks and retaining play counts etc, except by finding the dead tracks and repairing each link individually. The only exception to this is if there is a simple error in the path that can be fixed by a search and replace on the xml library file, then rebuilding the library. However it doesn't sound as though that would be a solution for you.
    This MacMuse tip has a way of finding dead tracks if that helps.
    http://discussions.apple.com/thread.jspa?threadID=121967
    It is much simpler to sacrifice the playcount information and just reimport your iTunes Music folder. Then you can eliminate the dead tracks with a script. One of the forum members has written one that you can find here:
    http://home.comcast.net/~teridon73/itunesscripts/

  • Easy way to schedule a job to run for a set period?

    Is there an easy way to schedule (dbms_scheduler) a job to run for a set period -say, half an hour- and then to stop.
    Currently, I schedule a procedure to do the work (a bunch of inserts or updates, say) and the first line of that procedure assigns sysdate to a variable when it starts. Then as the procedure loops through its work, I compare the current sysdate with that original one, and if the new sysdate>original one by more than 30 minutes, I raise an application error. But it's messy, and I was wondering if there was a nicer way of doing it?

    "Admin" -I think you'll find that 'end_time' merely states a time after which the job will not be run. It doesn't do anything to kill off a job which is already running at the time that comes round. Similarly, repeat_interval merely states how often the job should be run, not a time interval within which it must run and outside of which it must stop being run.
    Satish: your suggestion looks great. Do you have, or know of, any examples where that is used, though? The doco you pointed to says the parameter raises an event, but that it's up to my event handler to deal with it. I wouldn't have the first idea of how to deal with this in code myself. If I could see a simple example, it would help a lot! Unfortunately, that page doesn't contain such an example!

  • How to set 2 points on each other in diffrent layers in easy way

    Free transform, rotate, adjust angle and resize with fixed ratios;  these are the steps I use to to set point A on 1 and point B on 2 every time, is there an easy way to do this metion ?
    please se the attached picture will help to explain what im doing and what I need..
    Thanks

    Set the top layer so it's 50% transparent, then you can still see it but you can also see through it to be able to visually see when it's lined up.
    You can move it around and rotate it with the Edit - Free Transform tool, and you can zoom in close while that tool is active by using the Ctrl + and Ctrl - keys to change the zoom.  Get one point lined up, put the center of rotation (little crosshair) on that point, then rotate the image to line up with the other point.
    Fine tuning can be done with the numeric values, available in the top part of the main Photoshop window when the Free Transform tool is active.  Photoshop CS5 now allows you to specify an unprecedented level of accuracy.  For example, 1/100th of a degree (or possibly smaller).
    -Noel

Maybe you are looking for