How to move Items as a whole, without disturbing keyframes

I have an entire timeline structure with keyframes that I
need to center on a new background that is a different size. No
matter what I do, centering the objects affects their travel in the
timeline. Is there a way to move the whole project without copying
them as a new combined movie?

I have a multiframed movie. On my web page, I had a
background to this movie in a table. For many other reasons (that
will later show up in the Dreamweaver forum) I want to have an HTML
page with only a flash object in it. So, I deleted my background
from the html page, and imported it into the Flash library. I just
simply want the flash movie to now contain its own background
instead of being transparent. When I put the background in as a
layer, the foreground set of layers are not centered on the
background anymore as they were on the web page. Any 'select all'
adjustments affect the keyframes and repositions paths in the
movement of the items in the movie. Combining all under one movie,
and then inserting it on a layer with the background works, but
kills my menu sounds and removes some 'stops' here and there as
well as complicates the fla. Another option is too click on every
keyframe and readjust paths, but there should be an easier
way.

Similar Messages

  • How can I reinstall Safari 8.0 without disturbing anything else?

    How can I reinstall Safari 8.0 without disturbing anything else?  I have OS X 10.10.1 Yosemite & Safari 8.0 (that comes in it) installed on a MacBook Pro laptop and a Mac Mini tabletop computer. I want to access internet banking which goes without problems on the laptop but does not work on the tabletop. The latter says "somebody tried to display the application in a frame..." whatever that means and obviously for safety reasons I can not start banking it always comes back to the screen with this warning. I tried Mozilla FireFox on the tabletop Mini and everything works fine including the banking. A Mac expert suggested something is wrong with the Safari settings and I should reinstall it. How do I do this without reinstalling the System? Would it suffice to wipe out the Safari Preferences and start anew? I am looking for somebody's advice more experienced than I am. Thanks! 
    Andy

    Hello isza41,
    Before you try to do any uninstall/install stuff let me suggest you something:
    Create a new user and check if the same happens within its account. You could do so by going trough the following steps:
    Choose Apple menu > System Preferences, then click Users & Groups.
    Click the lock icon to unlock it, then enter an administrator name and password.
    Click Add below the list of users.
    Click the New Account pop-up menu, then choose a type of user. - Standard user account would be perfect here.
    Enter a full name for the new user. An account name is generated automatically. To use a different account name, enter it now—you can’t change it later.
    Enter a password for the user, then enter it again to verify. Using a password hint is recommended to help the user remember his or her password.
    Click Create User.
    Now Logout from your account (⌘⇧Q) and Login to the one you have just created. This account is fresh without any changed settings(as a new instance would look like).
    Check if the same would happen and you would see if this is an issue with your installation or something more general.

  • How Do I go directly to Desktop without disturbing the Opened pages? I am using Lion OS

    How Do I go directly to Desktop without disturbing the Opened pages? I am using Lion OS

    You can tap one of the keyboard Function (F) keys. Without knowing which keyboard you use it 's a little difficult to say. If you don't have a keyboard shortcut to do that, create one in System Preferences - Keyboard. I have my F6 key set to take me directly to the desktop. However the way your question is phrased I'm not positive that is what you are asking.

  • How to  move items from one JList to other

    Can u pls help me out to implement this(I m using Netbeans 5.5):
    I want to move items from one JList to other thru a ADD button placed between JLists, I am able to add element on Right side JList but as soon as compiler encounter removeElementAt() it throws Array Index Out of Bound Exception
    and if I use
    removeElement() it removes all items from left side JList and returns value false.
    Pls have a look at this code:
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                        
    // TODO add your handling code here:
    Object selItem = jList1.getSelectedValue();
    int selIndex = jList1.getSelectedIndex();
    DefaultListModel model = new DefaultListModel();
    jList2.setModel(model);
    model.addElement(selItem);
    DefaultListModel modelr = new DefaultListModel();
    jList1.setModel(modelr);
    flag = modelr.removeElement(selItem);
    //modelr.removeElementAt(selIndex);
    System.out.println(flag);
    }

    hi Rodney_McKay,
    Thanks for valuable time but my problem is as it is, pls have a look what I have done and what more can b done in this direction.
    Here is the code:
    import javax.swing.DefaultListModel;
    import javax.swing.JList;
    public class twoList extends javax.swing.JFrame {
    /** Creates new form twoList */
    public twoList() {
    initComponents();
    //The code shown below is automatically generated and we can�t edit this code
    // <editor-fold defaultstate="collapsed" desc=" Generated Code ">
    private void initComponents() {
    jScrollPane1 = new javax.swing.JScrollPane();
    jList1 = new javax.swing.JList();
    jButton1 = new javax.swing.JButton();
    jScrollPane2 = new javax.swing.JScrollPane();
    jList2 = new javax.swing.JList();
    setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
    jList1.setModel(new javax.swing.AbstractListModel() {
    String[] strings = { "Item 1", "Item 2", "Item 3", "Item 4", "Item 5" };
    public int getSize() { return strings.length; }
    public Object getElementAt(int i) { return strings[i]; }
    jList1.addListSelectionListener(new javax.swing.event.ListSelectionListener() {
    public void valueChanged(javax.swing.event.ListSelectionEvent evt) {
    jList1ValueChanged(evt);
    jScrollPane1.setViewportView(jList1);
    jButton1.setText("ADD>>");
    jButton1.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(java.awt.event.ActionEvent evt) {
    jButton1ActionPerformed(evt);
    jScrollPane2.setViewportView(jList2);
    javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
    getContentPane().setLayout(layout);
    layout.setHorizontalGroup(
    layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
    .addGroup(layout.createSequentialGroup()
    .addGap(31, 31, 31)
    .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 44, javax.swing.GroupLayout.PREFERRED_SIZE)
    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
    .addComponent(jButton1)
    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
    .addComponent(jScrollPane2, javax.swing.GroupLayout.PREFERRED_SIZE, 63, javax.swing.GroupLayout.PREFERRED_SIZE)
    .addContainerGap(78, Short.MAX_VALUE))
    layout.linkSize(javax.swing.SwingConstants.HORIZONTAL, new java.awt.Component[] {jScrollPane1, jScrollPane2});
    layout.setVerticalGroup(
    layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
    .addGroup(layout.createSequentialGroup()
    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
    .addGroup(layout.createSequentialGroup()
    .addGap(62, 62, 62)
    .addComponent(jButton1))
    .addGroup(layout.createSequentialGroup()
    .addContainerGap()
    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
    .addComponent(jScrollPane2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
    .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))))
    .addContainerGap(159, Short.MAX_VALUE))
    layout.linkSize(javax.swing.SwingConstants.VERTICAL, new java.awt.Component[] {jScrollPane1, jScrollPane2});
    pack();
    }// </editor-fold>
    //automatic code ends here
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                        
    // TODO add your handling code here:
            jList1 = new JList(new DefaultListModel());
            jList2 = new JList(new DefaultListModel());
             Object selItem = jList1.getSelectedValue();
             System.out.println(selItem);
            ((DefaultListModel) jList1.getModel()).removeElement(selItem);
            ((DefaultListModel) jList2.getModel()).addElement(selItem);
    //Now trying with this code it is neither adding or removing and the value �null� is coming in �selItem� .It may be bcoz JList and Jlist are already instantiated in automatic code. So, I tried this:
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                        
    // TODO add your handling code here:
             Object selItem = jList1.getSelectedValue();
             System.out.println(selItem);
            ((DefaultListModel) jList1.getModel()).removeElement(selItem);
            ((DefaultListModel) jList2.getModel()).addElement(selItem);
    //Now with this as soon as I click on �jButton1�, it is throwing this error:
    Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: twoList$1 cannot be cast to javax.swing.DefaultListModel
            at twoList.jButton1ActionPerformed(twoList.java:105)
            at twoList.access$100(twoList.java:13)
            at twoList$3.actionPerformed(twoList.java:50)
            at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
            at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
            at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
            at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
            at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
            at java.awt.Component.processMouseEvent(Component.java:6038)
            at javax.swing.JComponent.processMouseEvent(JComponent.java:3260)
            at java.awt.Component.processEvent(Component.java:5803)
            at java.awt.Container.processEvent(Container.java:2058)
            at java.awt.Component.dispatchEventImpl(Component.java:4410)
            at java.awt.Container.dispatchEventImpl(Container.java:2116)
            at java.awt.Component.dispatchEvent(Component.java:4240)
            at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4322)
            at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3986)
            at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3916)
            at java.awt.Container.dispatchEventImpl(Container.java:2102)
            at java.awt.Window.dispatchEventImpl(Window.java:2429)
            at java.awt.Component.dispatchEvent(Component.java:4240)
            at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
            at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)
            at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
            at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
            at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)

  • How to move items from one list to other

    hi all,
    in jsp page i have twolist boxes. i want to move item from one list to other list on click of add or move button. can u plz suggest me an answer for the above. thank u
    Regards sangeet

    This link should help. Remove from one list and add to the other using Javascript.
    http://www.mredkj.com/tutorials/tutorial006.html

  • How to move items from one account to other account - posting program

    Hello,
    I have FI documents that are posted on clearing account and on other side to costs. But now I need to move open items from clearing account to new clearing account(s) - something like "rename account". Is there any standard program or do you have any idea for programing a customer program?
    Thanks zd.

    Hi,
    use report <b>rfbibl00</b> with tcode FB05
    (look 1st to the documentation of this report with se38/sa38)
    A.

  • How to move items? Drag & Drop but i couldn't move to extreme right

    Hi All,
    We have one Select List and Button, i want to move both the items to right of the region...,I tried using Drag & Drop but i couldn't move to extreme right..
    What i need to do?
    Pls help me in this regard,
    Thanks,
    Anoo..

    Hi Anoo,
    The layout of items on your page depends on the region template used, and also the attributes of the item e.g. the Horizontal/Vertical Alignment of the Element and Label; the value of ColSpan, RowSpan, etc. By making some small tweaks to your existing region template or item attributes, you can achieve the desired layout. For example, lets say you're working with the "Form Region" HTML region. You can easily modify this template to display the standard cells of the table to the right instead of left, by changing the alignment in the <td> tags, using align="right". This will result in all items being positioned to the right of a region using this template.
    You may find it useful to refer to the following related threads on the Application Express forum, which discuss the same topic:
    Re: Layout form items
    Items positioning
    Re: Create a free form Report
    I hope this helps.
    Regards,
    Hilary

  • How to move and resize a whole layer with different objects and groups

    Ok, I am a bit confused here.Things are not working like I thought they would and the documentation has confused me more.
    currently in my code I have
    var embedLeftSleeve = new File(folderPath+"/LeftSleeve.ai");
    var leftSleevePlaced = doc.groupItems.createFromFile(embedLeftSleeve);
                            leftSleevePlaced.top = currentHeight;
                            leftSleevePlaced.left = 0;
    I am importing an AI file and trying to put it into its own layer. I want it (the imported ai file) into into it's own layer. And I would like the layer to be setup the exact way it was in the original. But, after the import it seems to group non-grouped items, some of the objects are not showing the same way they did (like a shape with a gradient fill in it).
    And finally, I want to scale all of the items in that layer as if I selected the layerer in illustrator and scaled it by hand (but scripting it to a set scale).
    Can someone please help me. I am digging deep into the documentations and looking all over online to find what I want with little luck.
    John

    Any chance of a sample of your art? I had a quick and my test art does NOT break up or look any different.
    I've been trying to build myself a set of library functions so my methods may appear a little odd.
    This was fine for me…
    #target illustrator
    var sleveArt = new File ('~/Desktop/Untitled-2.ai');
    var artName = sleveArt.name;
    var docRef = app.activeDocument;
    with (docRef) {
    pageOrigin = [0,0];
    rulerOrigin = [0,0];
    var docHeight = height;
    myLayer = layers.add();
    myLayer.name = artName;
    myGroup = myLayer.groupItems.createFromFile(sleveArt);
    myGroup.top = docHeight;
    myGroup.left = 0;
    resizeObject(myGroup, 140, 140, 100, 'BL');
    selection = null;
    function resizeObject(obj, sX, sY, clw, tr) {
    if (verifyObject(obj)) {
    var transAbt = getAnchor(tr);
    obj.resize(sX, sY, true, true, true, true, clw, transAbt);
    return true;
    function verifyObject(obj) {
    if (obj.typename == 'CompoundPathItem'||'GraphItem' || 'GroupItem' || 'PathItem' || 'PlacedItem' || 'PluginItem' || 'RasterItem' || 'SymbolItem' || 'TextFrame') return true;
    else return false;
    function getAnchor(x) {
    var thisTrans;
    switch(x) {
    case 'B' : thisTrans = Transformation.BOTTOM; break;
    case 'BL' : thisTrans = Transformation.BOTTOMLEFT; break;
    case 'BR' : thisTrans = Transformation.BOTTOMRIGHT; break;
    case 'C' : thisTrans = Transformation.CENTER; break;
    case 'DO' : thisTrans = Transformation.DOCUMENTORIGIN; break;
    case 'L' : thisTrans = Transformation.LEFT; break;
    case 'R' : thisTrans = Transformation.RIGHT; break;
    case 'T' : thisTrans = Transformation.TOP; break;
    case 'TL' : thisTrans = Transformation.TOPLEFT; break;
    case 'TR' : thisTrans = Transformation.TOPRIGHT; break;
    return thisTrans;

  • How to move track layer in timeline so all keyframes move together?

    Hi all,
    I have a simple project with various text layers moving up from the bottom and gently landing in position. There is also a style face blur going on so the text starts out blurred and becomes clear as the text lands. As I duplicate a layer in the group for a new line of text, then slide the new layer downstream a bit, the blur keyframes don't move to the layer's new position. They stay in the original position. Anyone know how to lock these keyframe to the original layer?
    Thanks much, Reed

    There's quite a bit of strange behavior with text I'm noticing as I was trying to figure out a workaround.
    Using the gaussian blur filter didn't work as it should. It works fine on the base layer but when you duplicate the text layer with the blur, it's visibly cropped for no reason (crop is not checked, and the fixed resolution changes nothing). It's as if the act of duplicating a text layer breaks the gaussian blur filter. The only solution was to delete the filter and reapply.
    I also tried using a Ramp behavior to adjust the face blur in the Styles tab. Once again it worked fine on the initial layer. But when I duplicated the text layer, the duplicate Ramp behavior was there, but lost it's connection to the parameter it was applied to. I had to reattach it.
    Definitely some strangeness there. Also, if you animate the blur with keyframes as the OP did, and then duplicate the layer, the copy will have keyframes in that parameter, but not at that point (even if you haven't repositioned the layer). If you then select Previous Keyframe from the animation menu of the duplicate, the playhead disappears from the GUI. That's definitely in bug territory.
    Andy

  • My Airport Extreme and iMac appear to have the same IP address as a result of installing a new ATT modem via direct ethernet connection. How can I reset the Airport IP without disturbing the iMac setting if the iMac can't reach the Airport?

    My provider's (ATT) modem recently went bad and though I usually use an Airport Extreme connection to the modem I had to start up their new modem via a direct ethernet connection from my computer to the modem. In trying to restart my Airport to modem via ethernet connection I was told that my computer IP and Airport ID are the same and so now my computer will not connect to the Airport. How can I best get out of this situation?

    Anytime you change networking hardware, it is always a good idea to perform a complete power recycle of your networking components.
    I would recommend that you do the following as a minimum:
    Power-down the modem, AirPort base station, and computer(s).
    Disconnect the AirPort base station from the Internet broadband modem.
    While all of the devices are powered-down, perform a "factory default" reset on the base station. This will get it back to its "out-of-the-box" configuration and make setting it up much easier, especially if you use the "Assist me" process within the AirPort Utility. (ref: Resetting an AirPort Base Station or Time Capsule)
    After the base station resets, go ahead and power it back down.
    Reconnect the AirPort base station to the Internet broadband modem. For the Extreme and Time Capsule, be sure to connect the cable to the base station's WAN (circle-of-dots) port.
    Power-up the modem; wait at least 10-15 minutes to allow it adequate time to initialize.
    Power-up the AirPort base station; wait at least 5-10 minutes. Note: The AirPort's status light may continue to flash amber after it has intialized. That is because, there may be some additional configuration items necessary, like setting up wireless security, before the overall setup is completed to get a green status.
    Power-up your computer(s).
    In this basic configuration, the AirPort base station will broadcast an unsecured wireless network with a Network Name (SSID) of Apple Network NNNNNN. Network clients, connected to the base station either by wire or wireless, should now be able to access the Internet through the ISP's modem. Once Internet connectivity has been verified, you can use the AirPort Utility to configure the base station for wireless security and any other desired options. Please post back your results.

  • How to move an object with its animation path, without adding a new keyframe?

    Hi,
    If I create an object which has a keyframe animation, how can I change its location/scale without adding new keyframes? That is, I want to move the whole thing with all its animations & keyframes as a single entity.
    thanks
    Arun

    Hi,
    big thanks for that. Unless Im doing something stupid when I did that it made a new copy of the object but did allow me to place that new instance elsewhere.
    Is there any way just to move an object and its path without making a new copy?
    All the best
    Arun

  • How to move to new computer without migration assistant?

    I am getting a new iMac and need some help with how to move photos, mail, music etc. I am going from iMac power pc to an intel based iMac. I do not have a firewire cable, and am not anxious to spend any more than I already have on computer equipment just to transfer files. Is there a way to move things using flash drives or something to recreate my iTunes library, photo library, mail and such?
    Any easy, step by step instructions?
    Many thanks in advance,
    Jane

    Jane C wrote:
    It all has me a bit nervous, which is another reason I find myself leaning toward just moving music, photos, calendar, addresses, and some documents manually.
    Keep in mind that:
    1. You still have to connect the computers together in some way. A Firewire connection is many times faster than an Ethernet one.
    2. Kappy's manual migration method specifies copying over a long list of *home folder items* for good reasons. Basically, you should consider your home folder's contents as an interrelated set of items designed to be used together. If you try to pick & choose among them, there is a good chance some things will not work as expected, at least not without more work to (for example) reset user preferences or go back & find missing application support file(s) you neglected to copy over on the first try. This can become tedious & frustrating unless you understand the function of each file.
    3. There is very little chance that using Setup or Migration Assistant will cause any operating system 'malfunction' of any sort, & even less of one that this will cause any issues that are more difficult to resolve than an inadequate partial manual migration.

  • How do I move pictures off my phone without losing the pictures permanently?  Is there a way to keep the pictures in the cloud without them being on my device?

    How do I move pictures off my phone without losing the pictures permanently?  Is there a way to keep the pictures in the cloud without them being on my actual phone?  I'm concerned that the sync feature will remove the pictures from the cloud when they are deleted from my phone.
    Thanks for the help.

    Can I back up iPhoto to the cloud via some apple service (iCloud)
    No
    or do I need to use something else?  If so, any recommendations?
    An external hard disk:
    Most Simple Back Up:
    Drag the iPhoto Library from your Pictures Folder to another Disk. This will make a copy on that disk.
    Slightly more complex: Use an app that will do incremental back ups. This is a very good way to work. The first time you run the back up the app will make a complete copy of the Library. Thereafter it will update the back up with the changes you have made. That makes subsequent back ups much faster. Many of these apps also have scheduling capabilities: So set it up and it will do the back up automatically.
    Example of such apps: Chronosync - but there are many others. Search on MacUpdate or the App Store

  • How do I move booksmark to another machine without replacing the bookmarks on the new machine, i.e combine a number of bookmark files

    I'm setting up a laptop and want to have all the bookmarks from my desk machine to be moved there from different accounts, but in end up in one file so that I don't have to have loads of separate accounts.

    You need to combine all the links to one HTML file.
    You only need a file with Anchor links like this:
    <pre><nowiki>
    <a href="https://support.mozilla.com/en-US/questions/754997">How do I move booksmark to another machine without replacing the bookmarks on the new machine, i.e combine a number of bookmark files | Firefox Support Forum | Firefox Support</a></nowiki></pre>
    If you export bookmarks to an HTML file then you create a copy of your bookmarks and you edit that copy and you do not affect the original bookmarks.
    See also [/questions/737050]

  • How do you add a new scene to beginning without disturbing movie with music and beat markers?

    How do you add a new portion to the beginning of your project without disturbing the rest of the project that already has perfectly place clips attached to beat markers with the music ?
    I forgot to add a tittle intro before the music starts with the attached pictures. When I try to add the whole project goes out of sync.
    I want to just add an intro without disturbing the entire project.
    Thanks

    Well, if you re-attach your background music under the first clip, the starting point will be at the start of that clip so I think it will still be in sync.  If not it's simply a matter of nudging the music track a bit along the timeline.  Comparing the audio waveforms of the two tracks should help with this.  When its right you can delete the track in the background music position.  Now you can add what you like before the first clip without affecting sync.
    Geoff.

Maybe you are looking for