Question about timeline please!

ok i am just getting to grips with FCE HD, and i just was trying out a few ideas in the timeline, but rather than messing up stuff, is there any way of saving my timeline clips to the bin etc?
what i mean is, say for e.g i have 10 clips in the timeline, with some rendered key frames, transitions etc, but i want to move that whole sequence so its safe, can i save it as a masterclip or something similar please?
this may sound confusing, but i am trying to explain it as best as i can! so apologies for that

ahh ok thanks!!
simple as that eh!!
great stuff and thanks again!!

Similar Messages

  • I hava a question about RMI,please help me!

    Ladys and Gentleman,I hava a question about RMI.I wirte four little programs in java that is about RMI on my PC.
    import java.rmi.*;
    public interface AddServerIntf extends Remote{
    double add(double d1,double d2) throws RemoteException;
    import java.rmi.*;
    import java.rmi.server.*;
    public class AddServerImpl extends UnicastRemoteObject implements AddServerIntf{
    public AddServerImpl() throws RemoteException{
    public double add(double d1,double d2)throws RemoteException{
    return d1+d2;
    import java.net.*;
    import java.rmi.*;
    public class AddServer{
    public static void main(String args[]){
    try{
    AddServerImpl addServerImpl=new AddServerImpl();
    Naming.rebind("AddServer",addServerImpl);
    }catch(Exception e){
    e.printStackTrace();
    import java.rmi.*;
    public class AddClient
         public static void main(String args[]){
         try{
         String addServerURL="rmi://"+args[0]+"/AddServer";
         AddServerIntf addServerIntf=(AddServerIntf) Naming.lookup(addServerURL);
         System.out.println("The first number is: "+args[1]);
         double d1=Double.valueOf(args[1]).doubleValue();
         System.out.println("The second number is: "+args[2]);
         double d2=Double.valueOf(args[2]).doubleValue();
         System.out.print("The sum is: "+addServerIntf.add(d1,d2));
         }catch(Exception e){
         System.out.println("Exception: "+e);
    And I compiled these files,so I got 4 class files(AddServer.class,AddServerIntf.class,AddServerImpl.class,AddServerClient.class).Then I use "rmic AddServerImpl" got another two files(AddServerImpl_Skel.class and AddServerImpl_Stub.class).Then I input command:rmiregistry,in another window,I input command:java AddServer,I got some exceptions,I was confused by these exceptions.The exception is:
    D:\MyJava\rmi_3>java AddServer
    java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
    java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
    java.lang.ClassNotFoundException: AddServerImpl_Stub
    java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
    java.lang.ClassNotFoundException: AddServerImpl_Stub
    java.lang.ClassNotFoundException: AddServerImpl_Stub
    at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(Unknown Source)
    at sun.rmi.transport.StreamRemoteCall.executeCall(Unknown Source)
    at sun.rmi.server.UnicastRef.invoke(Unknown Source)
    at sun.rmi.registry.RegistryImpl_Stub.rebind(Unknown Source)
    at java.rmi.Naming.rebind(Unknown Source)
    at AddServer.main(AddServer.java:8)
    But some times this exception will not appeared.Who can give me answer or suggestion,thanks a lot.
    By the way,when I run shutdown.bat in tomcat_root\bin,I can get some exceptions:
    C:\Tomcat\bin>shutdown
    Using CATALINA_BASE: ..
    Using CATALINA_HOME: ..
    Using CATALINA_TMPDIR: ..\temp
    Using JAVA_HOME: C:\JDK
    Catalina.stop: java.net.ConnectException: Connection refused: connect
    java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:350)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:137)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:124)
    at java.net.Socket.<init>(Socket.java:268)
    at java.net.Socket.<init>(Socket.java:95)
    at org.apache.catalina.startup.Catalina.stop(Catalina.java:579)
    at org.apache.catalina.startup.Catalina.execute(Catalina.java:402)
    at org.apache.catalina.startup.Catalina.process(Catalina.java:180)
    at java.lang.reflect.Method.invoke(Native Method)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:203)
    I use Windows server 2000+JDK 1.3.1_04+tomcat 4.1.7

    Maybe I am off base here but it seems to me the problem is the way in which you bind your server. The server must be bound to the same address and you are looking up from, i.e. "rmi://" host "/AddServer"
    so
    Naming.rebind("AddServer",addServerImpl);should be
    Naming.rebind("rmi://127.0.0.1/AddServer", addServerImpl);to match
    String addServerURL="rmi://"+args[0]+"/AddServer";
    AddServerIntf addServerIntf=(AddServerIntf)
    Naming.lookup(addServerURL);Hopefully this will solve your problem, if not it is a problem with your classpath. An easy way to make sure it can see your files is to set the java.rmi.server.codebase to point to where your classes are, e.g.
    java -Djava.rmi.server.codebase=file:"c:\\cygwin\\home\\tweak\\keck_folder\\cmsi401\\RMIGalaxySleuth\\classes\\" AddServer
    I had to set the codebas for my rmi stuff to work no matter how much I messed with the classpath.
    Hope this helps,
    Will

  • Question about timeline navigation and the display list-

    I’ve got a movieclip called “rotatorProxy” that spans the entire timeline. I’ve got nav buttons that jump to various frames on that timeline. I need to get the display depth of rotatorProxy each time the nav buttons move the playhead. The AS3 code is easy enough:
    var zIndex:int = this.getChildIndex(getChildByName("rotatorProxy")) ;
    my problem is where to put it. If I put this code in any script that executes in the target frame, it works, but only if I hit the nav buttons slowly. If I bang on a single nav button rapidly, getChildByName("rotatorProxy”) can return null. I don’t know much about how the display list works but I assume the display list is rebuilt after every jump and the frame scripts are executing asynchronously, so it’s possible my getChildByName call is  executed before the display list is complete. Is there an event or some other handle that would allow me to call my code before the frame is rendered but after the display list is complete?

    Wow, thanks for the fast response...
    “if rotatorProxy exists in all frames, it should never return null.”
    That’s what I thought, but not what I’m seeing, rapidly jumping around on the timeline seems to confuse the player and it temporarily looses track of rotatorProxy.
    You can sort of see it in action here: http://www.appliedcd.com/newACT/act.html
    The zIndex is used to establish the depth of the rotating screens which have been added to the display list via AS. If you bang on the nav buttons quickly you’ll see the stacking order screw up, if you had been in the development environment you’d see the null error thrown.
    I’ll see if I can use the render event to sort this out. I know testing in the frame after the jump will work, but it’s cleaner if I can establish the proper stacking order before the first jump frame is rendered.

  • Question about reinstallation please answer asap!

    I'm currently reinstalling os x snow leopard and i wanted to know if I should just turn it off when it tells me it will restart to finish the installation? please answer asap

    Hi C,
    No, you should wait till the end of the Welcome video, when the message says it will restart to finish installation it means installation is still in progress, conclude the procedures.
    Happy installing, good luck.

  • Question about timeline window

    I have just downloaded Photoshop CC 2014 and when I go to the Timeline window, it defaults to video animation. I don't want that. I want frame animation. How do I make it switch?

    Your code is the colorful stuff, not the grey stuff. The lower the colorful stuff is under the bar, the better your code is running. Your code looks good here.
    You are running at 31% of your budget 25ms per frame (it says so in the Summary panel). 25 ms is 1000ms/40fps.
    The red line represents the desired SWF frame rate. This is usually set when you create the SWF file in FlashPro, FlashBuilder, or other tools. It can also be set in directly in ActionScript code. Since yours is at 40, you must have already set it somewhere.
    You need to look at the grey bars. Grey represents time waiting for the next frame, not the time spent running your frame. Grey is good. If you don't see any grey below the red line, your code is taking too long to run in that frame. The grey bars are showing you the actual intervals between each frame. In your case these are alternating above and below the line. If you select a range of frames, you will find that the average is right at 40, but each individual frame time will be more or less. The flash player has an internal algorithm to average these intervals to make your desired rate. The player prefers rates that are divide evenly into 60, like 60, 30 or 15. If you choose other rates, it will adjust the frames so that they fit into this pattern. So you are seeing alterating frames which average nicely to 40fps. This is normal player behavior. it does this so that multiple flash sessions don't put too much demand on the CPU by only waking up in reliable intervals.

  • Question about timeline...

    I'm extremely new to the Dreamweaver software, but all of the
    support information I've found on the web doesn't really provide
    support for one specific task I've been having issues with. Much
    thanks to any and all who can assist:
    I want to add a 1000x300 div on my site's front page with an
    image of the same size. I want to have that image dissolve into
    another after a five seconds, and then another and then a fourth,
    until it loops fully around to the first image with approximately
    five second intervals between each. Seems simple enough, but either
    I'm too ignorant or not well-learned enough to figure out what
    steps to take to make that happen - particularly since I'm not very
    familiar with flash.
    Can anyone offer some steps or links to tutorials -- heck,
    even terminology of what to search would be helpful. I have books
    on how to make animations, but they don't really discuss tweening,
    dissolving and layers, as much as they discuss actively moving an
    object around through an ap-div and recording it with timeline.
    Again, any help is greatly appreciated. Thanks.

    Multiple images sized 1000x300? You better your site visitors
    have the
    patience of Job. Most people are unlikely to be there when
    the second image
    appears, let alone the 4th.
    Walt
    "voc36" <[email protected]> wrote in message
    news:gguv4q$sf5$[email protected]..
    > I'm extremely new to the Dreamweaver software, but all
    of the support
    > information I've found on the web doesn't really provide
    support for one
    > specific task I've been having issues with. Much thanks
    to any and all who
    > can
    > assist:
    >
    > I want to add a 1000x300 div on my site's front page
    with an image of the
    > same
    > size. I want to have that image dissolve into another
    after a five
    > seconds, and
    > then another and then a fourth, until it loops fully
    around to the first
    > image
    > with approximately five second intervals between each.
    Seems simple
    > enough, but
    > either I'm too ignorant or not well-learned enough to
    figure out what
    > steps to
    > take to make that happen - particularly since I'm not
    very familiar with
    > flash.
    >
    > Can anyone offer some steps or links to tutorials --
    heck, even
    > terminology of
    > what to search would be helpful. I have books on how to
    make animations,
    > but
    > they don't really discuss tweening, dissolving and
    layers, as much as they
    > discuss actively moving an object around through an
    ap-div and recording
    > it
    > with timeline.
    >
    > Again, any help is greatly appreciated. Thanks.
    >

  • Question about passwords please

    I just set up Airport Express, and it works great in providing Internet access. However, I unplugged the Airport Express when I wasn't using it and then plugged it back in last night. I expected to have toenter the password for the Airport Express but the computer did not ask me for it and I was automatically able to click on the Internet. Is this normal? Ånd, is there a way for me to require the computer to ask me for a password each time I want to use the Internet after the router is unplugged?
    Many thanks.

    Donna42, Welcome to the discussion area!
    I expected to have toenter the password for the Airport Express but the computer did not ask me for it and I was automatically able to click on the Internet. Is this normal?
    Yes that is normal. OS X records the password in the keychain when you first enter it. That makes it easier for you so that you don't have to reenter it every time that you reconnect to the network.
    Ånd, is there a way for me to require the computer to ask me for a password each time I want to use the Internet after the router is unplugged?
    Yes. You can remove the current entry from the keychain. The next time that you connect to the network and enter your password, uncheck the box asking if you want the password saved to the keychain.

  • Some questions about importing HTML files

    Hi, folks
    Let's suppose we want to import a pack of HTML files formatted in HTML5 wit's it's CSS into a double-oriented folio. A couple or three questions about that, please:
    1. Is there a limit for a reasonable quantity of HTML files I can import into a folio? I mean.. 100 would be way too much, for instance?
    2. These HTML files could be navigated and referenced from inside TOC-pages made in InDesign,right? (navto://..., I gues?)
    2. Will it be possible, by means of HTML adaptative design techniques, to treat both orientations (vertical and horizontal) as different viewports or screen sizes so that the design adapts for instance the column width with its CSS?
    3. That said, will the InDesign final app. respect that adaptative CSS rules?
    I am asking this because we are looking for a way to inject big quantities of content with a very similar design into our application in a really fast and automatizable way and I have the suspicion* that importing HTML5 preformated CSS files could be the a very good and simple alternative to importing XML into InDesign templates as we start out content as tagged almost-html files.
    Thanks a lot
    Gustavo Sánchez (Posting from Madrid)

    I assume you are asking about using HTML articles.
    1. There is no limit beyond simply keeping things reasonable.
    2. Yes. Just use navto://articlename
    3. Yes. I've used min-width of 768 and max width of 1024 to control it.
    4. InDesign does not enter into any of this with the exception of using the folio builder panel. Everything else is done in Dreamweaver or whatever program you decide to use for the article.
    If you want to restrict the HTML articles to one orientation or the other, use the _h and _v suffixes.
    Bob

  • Question about internet security...please help!

    Hi everyone,
    I have a question about the macbook's internet security.
    A few days ago I became aware that my sibling was using a laptop for internet use at my house which he got from a person that I do not trust. He is very computer-savy and we're worried that he may have installed some form of spy ware on that laptop and in turn, may have tried (or succeeded) in accessing my Macbook through some form of spyware. My house is hooked up with a D-Link wireless router, and at the time, it had no internet/access-password.
    So my question is, could this person have accessed my computer and personal information remotely by and through the laptop that my sibling got from him. I was under the impression that Mac's have very strong firewalls, but I have also heard that as long as he knew what he was doing, he could have accessed my computer. I don't have a wireless "network" set up at my house, I just simply use the router for internet. But my sibling told me that this guy was his "network administrator" which leads me to believe that he must have had remote access to the laptop.
    Can anyone with knowledge on this problem please weigh in and let me know what I need to do to confirm that no one has accessed anything from my macbook.
    Thanks!

    One option if you want to be extra safe is turning on FileVault (System Preferences -> Security), which will encrypt everything on your computer so that if somehow someone does gain access to your computer they will have a next to zero chance of being able to read anything they get from your computer. You have to have a lot of extra hard drive space on your computer to turn it on though.
    Also, a "network" is just a connection between computers, regardless of the internet is involved or not. So when you connect your computer to the router which gives you the internet, you are putting your computer on a network. Now I believe that in order for this person whom you don't trust to gain remote access to your computer, they would have to have more information such as an IP address for your computer, through the router in order to get to it.
    One thing I think is very important to consider that isn't on the technical side of things is something called "Social Engineering" which is a form of cracking, or hacking. You can do your own research, but in a nutshell Social Engineering is getting people that have access to something I'm trying to hack to give me information. For instance, this person you don't trust could be giving your brother the computer in the hopes that he will download something through your router to that laptop which could give him IP addresses and other information. And then when he gets that laptop back he could scan it for useful information and your brother wouldn't know he did anything wrong at all. The best way to avoid this is purely education and communication. Even if your brother doesn't share the same suspicions about this person, surely he will understand the need to be careful and smart when it comes to sharing personal information in the digital world.

  • Hello , I want to ask some question about ipads \  How powerful is the iPad?  How useful is it for reading books, newspaper or magazines or for surfing the web? Can you identify any shortcomings of the device?   please help me :(

    Hello ,
    I want to ask some question about ipads \
    How powerful is the iPad? 
    How useful is it for reading books, newspaper or magazines or for surfing the web?
    Can you identify any shortcomings of the device?  
    please help me

    it's less powerful than your average computer. THink of it like a netbook but with a better processor.
    It'll do fine for surfing (although if you browse a lot of flash based sites you will need to get a third party browser since safari doesn't accommodate it)
    You may do OK on reading books, papers or magazines, especially if they have apps, but the ipad's screen is backlit, so it doesn't work well outdoors and you may need to fiddle with the brightness so that you don't get eye strain (it's just like doing too much reading from a computer screen)
    I would say the biggest short comings are data transfer. Apple's preferred work flow is that everything is done via iTunes or the internet....well people dont' always have 100% reliable always on internet access so you can find yourself in a situation where you can't get things on/off the iPad.
    By and large, it's a good device for day to day stuff, but is not a computer replacement.

  • Please delete my question about backing up. I already found my answer.

    Hi,
    Please delete my question about backing up. I already found my answer. Just wanted to make sure that it was okay to backup the iPod_Control folder. I've read that other people have done this and re-imported back to iTunes. Here's the question I submitted. When I get my iPod back in order I am gonna backup the iPod_Control folder .
    https://discussions.apple.com/message/15836196#15836196
    Thanks,
    Liz

    No urgent reason to delete it. Just reply to yourself as above, if you care to, and then mark your own answer as correct. You won't get any points, but it will be clear you are closing out the topic.

  • TS2446 I forgot the security question about what was my first car and what is my favorite car! What is the solution to change that? please help me, thank you in advance Leo

    I forgot the security question about what was my first car and what is my favorite car! What is the solution to change that? please help me, thank you in advance Leo

    If you have a rescue email address set up on your account then you can try going to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you might see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email address set up then go to Express Lane  and select 'iTunes' from the list of 'products' in the middle of the screen.
    Then select 'iTunes Store', and on the next screen select 'Account Management'
    Next choose 'iTunes Store Account Questions' or 'iTunes Store account security' (it appears to vary by country) and fill in that you'd like your security questions/answers reset.
    You should get an email reply within about 24 hours (and check your Spam folder as well as your Inbox)

  • If SIRI works on iphone 4? if there is any way for ask using iphone 4 can have this application? just let ask know if will work or not, because if not so we will not think about it. please somebody answer my question

    if SIRI application works on iphone 4? if there is any way for ask using iphone 4 can have this application? just let ask know if will work or not, because if not so we will not think about it. please somebody answer my question. my iphone 4 are already update for iOS 5. I'm searching in the internet forum some are saying that it's only work if your iphone are jelbreak, and the problem is i don't want my iphone to be jelbreak. thanks for reading my question. and please send the question on my email many thanks....
    <Email Edited by Host>

    What else is there? There's Siri, A5 chip, 8MP camera, intelligent switching between antennas. Those are the only new things in the 4S. Like I said, if Siri was on the 4, fewer would buy the 4S. Second, the 4 is discontinued to make room for the 4S, so there will be no updates exclusively for the 4. Third, I never trust any reports on the Internet unless it comes directly from the company (in this case, Apple).

  • Hello am using ios 7.0.4 I have a question about messages that it does not show the time of a particular message after first message that I recive form a paricular person so please in the next version change this and with every message show time and date

    hello am using ios 7.0.4 I have a question about messages that it does not show the time of a particular message after first message that I recive form a paricular person so please in the next version change this and with every message show time and date

    Hi,
    How is everything going? Have you checked this issue from OWA? If so, please let me know the result.
    In adition, please also try to use the following powershell commands to check if the assistant has right permissions:
    Get-MailboxFolderPermission -Identity
    CEO’s email address:\Calendar -User assistant’s email address
    Also check with:
    Get-Mailbox -Identity CEO’s mailbox
    | fl *GrantSendOnBehalfTo
    Please let me know the result.
    Best Regards,
    Steve Fan
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • Question about Page Builder behavior - how to get a "please wait message" ?

    Hi all together,
    I got a question about Portal Framework / Page Buider handling iView Integration.
    We are working with a lot of App Integrator iViews and often the pages includes with app integrator are loading longer than the rest of the portal. So there is the idea to put in a "please wait while loading message" for the enduser.
    I analysed the html code, the page builder is generating and foud out 3 diffrent approaches how the page buider is rendering the IFRAME with the integrated application configured with an app integrator iView.
    My question is how can I influence this behavior to put a "please wait while loading message"?
    Different types of iView integration in the client I have seen:
    a) direct loading of the content in the IFRAME (<iframe id="" ... scr="/mysource">)
    b) Filling the iframe with 'about:blank' and loading the content later by filling a form with JS
         ( <iframe id="" .... scr="about:blank">and after the iframe  <form id="" action="mysource" ...>
    c) Filling the iframe with a html file from the portal layout and loading the content later by filling a form with JS (similar to b)
         ( <iframe id=""" ....scr="/irj/portalapps/com.sap.test.mylayout/html/blank.html>
    I checked that variant b) is getting generated when loading a page with different components on the side (not only the app integrator iview) and variant c) is generated when just one app integrator iView is positioned (no portal page).
    Goal: To get the "please wait picture" I want to know how to get variant c) in cases of different elements on one page
    So I would be able to put this picture on the HTML-Page in the Portal layout (blank.html)
    Hope, someone with a deep portal / page builder know-how can help me out!
    Another way: Does anybody knows another way how to put a "please wait message" while app integrator application is not loaded yet?
    Thanks in Advance and kind regards,
    Jens
    Edited by: Jens Kohne on Nov 24, 2010 9:08 AM

    Hi Jens,
    there are several reasons why you don't get the loading animation:
    Web Dynpro ABAP: https://service.sap.com/sap/support/notes/1432358 -> missing configuration
    Wrong height size for iView: https://service.sap.com/sap/support/notes/1358494 -> alter configuration of the iFrame height (loading animation gets displayed, but is hidden)
    FPN, BSP, BEx: https://service.sap.com/sap/support/notes/1290995 -> AI isn't showing the animation because of performance considerations. I guess that is your case. Depending on your portal version this is a simple service configuration or involves some customization.
    br,
    Tobias

Maybe you are looking for

  • HT201317 i cloud does not work on my windows vista pc

    It appears,that for some unknown reason i can not stream ,or upload any of my pictures(JPEG) to my Ipad3 from my Windows Vista2 PC,I was able to upload most of my music(although some were rejected by the Ipads system),I tried Itunes ,ICloud -automati

  • Migrating via external hard drive doesn't work

    I'm migrating from a Powerbook G4 to an iMac G5. For iTunes, I copied all data onto an external hard drive and connected that to the new iMac. But I can neither import the files via the "add to library"* command in iTunes nor can I simply copy the fi

  • Selective regions in Color...help?

    Hello all... I've just recently begun using Color. After the initial terror subsided, I found it to be an intuitive, powerful program. Glad I finally had an excuse to use it; I'm now about half-way through color correcting a feature. The director has

  • Weird errors with wireless router

    I have a TP-Link router set up at my relatives' place. It works perfectly well with two iPhones and an iPad, with no problems whatsoever. My MacBook Pro is a different story. I have set it up with this router. When I manage to get it to work, it work

  • Types of messengers for mac

    I've been using microsoft messenger for mac, and it's just not cutting it. i'd like to continue using my hotmail account, and not have to get a new address, and be able to add hotmail contacts (since none of my friends have otherwise) are there any o