Offline project

Hello everybody,
I nearly finished a project using CP5.5 and now it has to be presented at a meeting. There won't be internet access but of course I'd like to show the html version that will be on the server later instead of a .exe.
The project is seperated into several modules (Chapter_1 ... Chapter_6). If I start Chapter_1.htm using firefox Chapter_2 won't open when I click on the link inside Chapter_1.htm. Actually nothing happens when I click on the link. It works online but not offline. How can I fix this?
Previously I solved this by installing an apache server on my computer. However, this time that won't be an option.
Thank you
Michael

You need to make sure that Flash Global Security is set up on the PC to trust the folder location where the published files will be playing from.

Similar Messages

  • Unable to send emails through adobe offline project.

    Hi Experts!!!
                        I am trying to send an email through Adobe Offline Form. I am quoting the code. Plz check what's the problem with the code.
    // This file has been generated partially by the Web Dynpro Code Generator.
    // MODIFY CODE ONLY IN SECTIONS ENCLOSED BY @@begin AND @@end.
    // ALL OTHER CHANGES WILL BE LOST IF THE FILE IS REGENERATED.
    package com.lifecyclelettersapplication;
    // IMPORTANT NOTE:
    // ALL IMPORT STATEMENTS MUST BE PLACED IN THE FOLLOWING SECTION ENCLOSED
    // BY @@begin imports AND @@end. FURTHERMORE, THIS SECTION MUST ALWAYS CONTAIN
    // AT LEAST ONE IMPORT STATEMENT (E.G. THAT FOR IPrivateFormView).
    // OTHERWISE, USING THE ECLIPSE FUNCTION "Organize Imports" FOLLOWED BY
    // A WEB DYNPRO CODE GENERATION (E.G. PROJECT BUILD) WILL RESULT IN THE LOSS
    // OF IMPORT STATEMENTS.
    //@@begin imports
    import java.util.Properties;
    import javax.mail.Address;
    import javax.mail.BodyPart;
    import javax.mail.Message;
    import javax.mail.MessagingException;
    import javax.mail.SendFailedException;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.AddressException;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    import com.lifecyclelettersapplication.wdp.IPrivateFormView;
    //@@end
    //@@begin documentation
    //@@end
    public class FormView
    Logging location.
      private static final com.sap.tc.logging.Location logger =
        com.sap.tc.logging.Location.getLocation(FormView.class);
      static
        //@@begin id
        String id = "$Id$";
        //@@end
        com.sap.tc.logging.Location.getLocation("ID.com.sap.tc.webdynpro").infoT(id);
    Private access to the generated Web Dynpro counterpart
    for this controller class.  </p>
    Use <code>wdThis</code> to gain typed access to the context,
    to trigger navigation via outbound plugs, to get and enable/disable
    actions, fire declared events, and access used controllers and/or
    component usages.
    @see com.lifecyclelettersapplication.wdp.IPrivateFormView for more details
      private final IPrivateFormView wdThis;
    Root node of this controller's context. </p>
    Provides typed access not only to the elements of the root node
    but also to all nodes in the context (methods node<i>XYZ</i>())
    and their currently selected element (methods current<i>XYZ</i>Element()).
    It also facilitates the creation of new elements for all nodes
    (methods create<i>XYZ</i>Element()). </p>
    @see com.lifecyclelettersapplication.wdp.IPrivateFormView.IContextNode for more details.
      private final IPrivateFormView.IContextNode wdContext;
    A shortcut for <code>wdThis.wdGetAPI()</code>. </p>
    Represents the generic API of the generic Web Dynpro counterpart
    for this controller. </p>
      private final com.sap.tc.webdynpro.progmodel.api.IWDViewController wdControllerAPI;
    A shortcut for <code>wdThis.wdGetAPI().getComponent()</code>. </p>
    Represents the generic API of the Web Dynpro component this controller
    belongs to. Can be used to access the message manager, the window manager,
    to add/remove event handlers and so on. </p>
      private final com.sap.tc.webdynpro.progmodel.api.IWDComponent wdComponentAPI;
      public FormView(IPrivateFormView wdThis)
        this.wdThis = wdThis;
        this.wdContext = wdThis.wdGetContext();
        this.wdControllerAPI = wdThis.wdGetAPI();
        this.wdComponentAPI = wdThis.wdGetAPI().getComponent();
      //@@begin javadoc:wdDoInit()
      /** Hook method called to initialize controller. */
      //@@end
      public void wdDoInit()
        //@@begin wdDoInit()
         /* The following lines initialize the context elements;
    Enter your e-mail id in the set From-method
         //wdContext.currentContextElement().setTeststatus(" do in it");
            try{
            wdContext.currentEmailElement().setFrom("[email protected]");
            wdContext.currentEmailElement().setTo("[email protected]");                                            
            wdContext.currentEmailElement().setCc("[email protected]");
            wdContext.currentEmailElement().setBcc("[email protected]");
    //        wdContext.currentEmailElement().setCc(" ");
    //        wdContext.currentEmailElement().setBcc(" ");
            wdContext.currentEmailElement().setSubject("Test Mail By Umang");
            wdContext.currentEmailElement().setBody("You will find the address proof letter in the attachment of this e mail. Please sign this form and send it.");
           catch(Exception e)
             wdContext.currentContextElement().setTeststatus("do in it"+e.getMessage());              
        //@@end
      //@@begin javadoc:wdDoExit()
      /** Hook method called to clean up controller. */
      //@@end
      public void wdDoExit()
        //@@begin wdDoExit()
        //@@end
      //@@begin javadoc:wdDoModifyView
    Hook method called to modify a view just before rendering.
    This method conceptually belongs to the view itself, not to the
    controller (cf. MVC pattern).
    It is made static to discourage a way of programming that
    routinely stores references to UI elements in instance fields
    for access by the view controller's event handlers, and so on.
    The Web Dynpro programming model recommends that UI elements can
    only be accessed by code executed within the call to this hook method.
    @param wdThis Generated private interface of the view's controller, as
           provided by Web Dynpro. Provides access to the view controller's
           outgoing controller usages, etc.
    @param wdContext Generated interface of the view's context, as provided
           by Web Dynpro. Provides access to the view's data.
    @param view The view's generic API, as provided by Web Dynpro.
           Provides access to UI elements.
    @param firstTime Indicates whether the hook is called for the first time
           during the lifetime of the view.
      //@@end
      public static void wdDoModifyView(IPrivateFormView wdThis, IPrivateFormView.IContextNode wdContext, com.sap.tc.webdynpro.progmodel.api.IWDView view, boolean firstTime)
        //@@begin wdDoModifyView
        //@@end
      //@@begin javadoc:onPlugFromFirstview(ServerEvent)
      /** Declared validating event handler. */
      //@@end
      public void onPlugFromFirstview(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onPlugFromFirstview(ServerEvent)
         wdContext.currentContextElement().setTeststatus("from first view");
         //wdDoInit();
        //@@end
      //@@begin javadoc:onActionBack(ServerEvent)
      /** Declared validating event handler. */
      //@@end
      public void onActionBack(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionBack(ServerEvent)
        wdThis.wdFirePlugToFirstView();
        //@@end
      //@@begin javadoc:onActionSend(ServerEvent)
      /** Declared validating event handler. */
      //@@end
      public void onActionSend(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionSend(ServerEvent)
         Properties props = new Properties();
              String host = "rmail070.zmail.ril.com";
              props.put("rmail070.zmail.ril.com", host);
              Session session = Session.getInstance(props, null);
              MimeMessage message = new MimeMessage(session);
              Address toAddress = new InternetAddress();
              Address fromAddress = new InternetAddress();
              Address ccAddress = new InternetAddress();
              Address bccAddress = new InternetAddress();
         wdContext.currentContextElement().setTeststatus("1");
              try
                   MimeMultipart multipart = new MimeMultipart();
                   wdContext.currentContextElement().setTeststatus("2");
                   BodyPart messageBodyPart = new MimeBodyPart();
                   if (! wdContext.currentEmailElement().getFrom().equals(""))
                        fromAddress = new InternetAddress(wdContext.currentEmailElement().getFrom());               
                        message.setFrom(fromAddress);
                   wdContext.currentContextElement().setTeststatus("3");
                   if (! wdContext.currentEmailElement().getTo().equals(""))
                        toAddress = new InternetAddress(wdContext.currentEmailElement().getTo());
                        message.setRecipient(Message.RecipientType.TO, toAddress);
                   wdContext.currentContextElement().setTeststatus("4");
                   if (! wdContext.currentEmailElement().getCc().equals(""))
                        ccAddress = new InternetAddress(wdContext.currentEmailElement().getCc());
                        message.setRecipient(Message.RecipientType.CC, ccAddress);
                   wdContext.currentContextElement().setTeststatus("5");
                   if (! wdContext.currentEmailElement().getBcc().equals(""))
                        bccAddress = new InternetAddress(wdContext.currentEmailElement().getBcc());
                        message.setRecipient(Message.RecipientType.BCC, bccAddress);
                   wdContext.currentContextElement().setTeststatus("6");
                   if (! wdContext.currentEmailElement().getSubject().equals(""))
                        message.setSubject(wdContext.currentEmailElement().getSubject());
                   wdContext.currentContextElement().setTeststatus("7");
                   if (! wdContext.currentEmailElement().getBody().equals(""))
                        messageBodyPart.setText(wdContext.currentEmailElement().getBody());
                   wdContext.currentContextElement().setTeststatus("8");
                   multipart.addBodyPart(messageBodyPart);
                   wdContext.currentContextElement().setTeststatus("10");
    ////               A new part will be added this will be the attachment
                   messageBodyPart = new MimeBodyPart();
    //               String filename = "temp
    webdynpro
    web
    local
    LifeCycleLetters
    Components
    com.lifecyclelettersapplication.LifeCycleLettersApplication
    LifeCycle.pdf";
    //               DataSource source = new FileDataSource(filename);
    //               messageBodyPart.setDataHandler(new DataHandler(source));
    //               messageBodyPart.setFileName(source.getName());                    
    //               messageBodyPart.setHeader("Content-Type","application/pdf");
    //               multipart.addBodyPart(messageBodyPart);
                   message.setContent(multipart);
                   Transport.send(message);
                   wdContext.currentContextElement().setTeststatus("11");
              catch (AddressException e)
                   wdComponentAPI.getMessageManager().reportWarning(e.getLocalizedMessage());
                   e.printStackTrace();
              catch (SendFailedException e)
                   wdComponentAPI.getMessageManager().reportWarning(e.getLocalizedMessage());
                   e.printStackTrace();
              catch (MessagingException e)
                   wdComponentAPI.getMessageManager().reportWarning(e.getLocalizedMessage());
                   e.printStackTrace();
         catch(Exception e)
                             wdContext.currentContextElement().setTeststatus("action send"+e.getMessage());              
        //@@end
    The following code section can be used for any Java code that is
    not to be visible to other controllers/views or that contains constructs
    currently not supported directly by Web Dynpro (such as inner classes or
    member variables etc.). </p>
    Note: The content of this section is in no way managed/controlled
    by the Web Dynpro Designtime or the Web Dynpro Runtime.
      //@@begin others
      //@@end

    Hi,
    I think u need to set up the SMTP  So that u can send the email.
    Regards
    Mustafa.

  • Project Online - offline project plan prompts for date range to be entered when accessing Resource Usage view

    When I save a project plan to my local computer from Project Online and open it up in an offline mode and access Resource Usage view I get prompted with Date Range dialog boxes with the first one saying "Show resources/assignments that start or finish
    after:" and the second one with "And before:".
    I don't have any filters that are setup in Project Online that are not available in offline mode to trigger these prompts.
    Please let me know what could be causing the date range prompts. Thanks.

    Hi,
    You probably retrieve an enterprise filter into your local file. Just open the organizer from MS Project, go to the filter tab (be sure to have your project selected in the drop down menu at the top left of right of the organizer) and delete the date range
    filter.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • Render File Offline; Project in a Loop

    I was rendering a complex part when FCX stopped and said a render file was offline or something. It was so many steps ago, I forget exactly.
    Eventually, I had to force quit FCX because it "froze up" on me. I went back to the autovault and got a slightly earlier version before all this started but now if I try to render that same part, FCX stops with the message "La Cie 250/Sequence 2 Op-FIN-0000015d" Render file offline. I had to force quit again because the program won't let me go anywhere.
    Am I going to have to trash preferences, repair permissions and restart again? Just had to do this a few days ago. If so, what is the problem? I try not to have too many apps open at a time, do things one at a time, etc.
    Any help MOST WELCOME!!
    Lee

    See if you can play the material using Opt-P without
    rendering.
    Sorry. . . . .what does "using Opt-P" mean?
    Look in the capture scratch folder in
    column view and see if there are preview windows for
    all your clips. If any show up with a generic icon or
    the preview is a generic QuickTime icon the file may
    be corrupted.
    There seem to be files all over the place in the folders where I designated what was to be the destination for the scratch disk. (I wasn't 100% sure about how to set up the files for the scratch disk because I had to transfer all the project files from one external hard drive to another when the first drive died. I was so afraid of losing all the work that I did what I thought best at the time. Have been a little afraid something like this might rear its head.)
    Tom, I don't even know how to begin explaining to you what is where in that external hard drive.
    This may be too much for a discussion group question.
    Lee

  • AC6, offline project, structuring

    Hi, everybody,
    I am planning do build a large eLearning program (about 150 Pages). I bought Captivate 6 and I would appreciate some advice before I start my work.
    The project is supposed to run offline on PCs and tablets without an LMS.
    It should be able to save and retrieve student’s data to and from the local disc.
    More than one student should be able to use the program on the same computer, who login with their name and password to continue their personal learning session.
    It should run cross platform.
    As it is big, I am thinking of splitting the project up into several .cptx-files to simplify my work during building and testing. Would it be possible to run it through the different .cptx-files with the same TOC, so the user would not realize the “hopping” when moving from one file to another?
    I am first time on the list.
    Thank you very much in advance for any helpful comment.

    Hi there
    Well, you could use the Aggregator application that ships with Captivate to provide that common TOC. But I think your big stumbling block here is going to be the saving and retrieving data from the local hard drive. Unless someone has created and is either giving away or selling a widget for that, good luck!
    Cheers... Rick

  • FCP 5 has problems with how I did projects under FCP 4.

    For the most part, I've been very happy with FCP 5, but it's very buggy in a couple of respects that pertain to how I create my projects. Now, I'm getting an error that is preventing me from finishing a project, so I don't have to tell you how critical my issue is, nor do I have to emphasize how quickly I need an answer.
    To begin with, I will explain how I did my projects under FCP 4. I would begin by capturing all the raw footage in OfflineRT with my Power Mac G5 dual 2 GHz, then copy the project file and all media files to their respective locations on my 12-inch PowerBook G4, for portability. I would complete the offline edit on the PowerBook, then create an online project file, which I would then transfer back to the Power Mac. I would recapture footage in the new project, everything would fall into place, and all was well.
    Since "upgrading" to FCP 5, this method doesn't seem to work anymore. The first sign of a problem was when I created the online project file on my first FCP 5 project. After an attempt to re-capture the footage on the Power Mac, I got an error message that the video was in an incorrect format, or something like that (unfortunately, this was some time ago, so I don't remember the exact phrasing of the error message). I was able to resolve the issue by unchecking the box in the media manager to delete unused media from duplicated items. This forced FCP to create an online file that captured every frame of my original raw footage, not just the parts that were used in the online edit. It took up more space, but at least I could get the project done.
    Now, I'm getting more strange behavior, and it's preventing me from completing my latest project, even though I'm following the same steps I did on my previous project. The first thing I noticed this time was when I first tried building the online project file using Media Manager, it took a VERY long time to build the list of used media - something on the order of 15-20 minutes, when before it only took seconds for similar projects. Then, I got the following error message once the new online project had been created:
    "Reconnect Media Failed: An unknown error occurred while trying to reconnect C-2 to the new offline file." This error kept occurring multiple times when I clicked continue until I finally checked the box next to it asking to ignore these reporting errors.
    C-2 is one of the master clips for my project.
    Undaunted, I proceeded to see if moving the new online project file to the Power Mac and re-capturing the footage in NTSC DV would work. Curiously, the Power Mac needed to capture C-2 twice. Although the length of the clip is only 45 minutes or so, FCP needed to capture 90 minutes. Unfortunately, after capturing, I got the same error message as before, but with different phrasing:
    "Reconnect Media Failed - An unknown error occurred while trying to reconnect C-2 to the newly captured media. Try recapturing this clip to resolve the problem."
    Recapturing the clip doesn't solve the problem. I keep getting the same errror message. Since this clip is one of my master clips, I simply cannot complete the project unless I can capture this clip somehow and have it reattach to the offline files.
    The only thing I can think of, since I've been making projects this way since FCP 3 with no issues, is that it has something to do with FCP 5's new multiclip function. I have been using it extensively, and I suspect the error I received the first time was because every clip was linked to others through multiclips, and some shifting of in or out points may have occurred, which broke this link. Forcing FCP to capture all raw footage in its entirety resolved that issue the first time, but not this time.
    Would someone PLEASE tell me ASAP how to fix this? How can I complete my project in online, DV-NTSC quality? Is there a possibility I can recapture the files in my offline project in DV quality, perhaps?
    How can I prevent this from happening in the future? As I said, this never happened before I upgraded to FCP 5, and if this is the price I have to pay to have multiclip editing, I don't know if it's worth it. Maybe I should get a refund.

    Finally found the answer myself. My camcorder glitched during the offline capture session, and it didn't recreate the glitch during the online capture, so the frame counts were different.

  • Offline Recapturing???

    Here is my situation... I captured my footage at an offline quality. The tapes were recorded to free run timecode and I captured each tape with an In point at the beginning of the tape and an Out point at the end. Final Cut creates a new clip at each timecode break so for each tape, I have multiple clips.
    Well, I edited the project at JPEG quality and when I was done I created an offline project to recapture at full quality. I batch captured all offline clips and was not able to capture all my clips due to timecode breaks.
    Is there a way to bypass this problem?
    Any help would be appreciated.
    Thank you!

    Verify that the timecode on the tape is the same as the clip, because when you capture the way you did with Free Run (or time of day) code, the proper timecode doesn't always get recorded for each clip. This is where Logging and Capturing each clip would have been your best bet.
    If the time code matches, it might be because with free run code, where you have breaks, when FCP wants to recapture, it needs enough PRE ROLL in order to get a running start and capture the footage. When it doesn't have that, if you used footage from the first second (hmmm...that looks odd...first, second. first second...anyway) then FCP doesn't have enough pre-roll to capture that clip. Again, Log and Capture solves this as you know from the start that you need more pre-roll.
    What can you do? Well, not having had to solve this issue, I'm not really sure. First off, Media Manage your sequence into a new project, using only the footage in that project, then try to capture the clips in the bin. If you find one with an issue, move on to the next one. When you are done and have all of your problem clips set aside, track down their TC numbers, CAPTURE NOW at those spots, and cut them in manually. That's all I can think to do.
    Shane

  • How to share or combine logging from multiple projects?

    I'm working on a documentary project now with over 300 hours of footage. It was shot to AVCHD media on SD cards and were copied over to a hard drive. Three different people have been logging the media in the Log and Transfer window. We each have our own project file that we're logging into since we are all using our own iMacs to do the work. Since storage space is an issue, we can't just pull down all the footage into ProRes. Ideally we'll just take our selects directly out of log and transfer. Once it comes time to edit, is it possible to combine the logging information into one project, or does the logging metadata only exist in the project it was created in?
    I've tried several ways to combine the project files (XML, Batch list exports), but none seem to transfer the logged info from Log and Transfer (all the XML and Batch lists do is import the footage that has already been transcoded to ProRes.
    thanks!

    Toastmilk wrote:
    the perfect solution would be if FCP treated clips logged in Log and Transfer the same as it treats them in Log and Capture... creating an offline version that can be batch captured later.
    How about something close to perfect?
    (You may to far along in your workflow for this, but...)
    Transfer your clips to OfflineRT settings using just a card number and clip number (so, the fifth clip from first card that you shot would be named "001 005" - the naming needs to be very straightforward and easy to reproduce). This will get your clips into the project file where you can add markers and log notes as well as copy and paste between project files. And, the files will take up a modest amount of disk space (less than 2GB per hour).
    Assemble your rough cuts.
    When you're ready to work at ApplePro Res, use Media Manager to create an offline edit a your ProRes settings (be sure not to trim unused media - the clips must match in name and duration), retransfer your clips at Apple ProRes using the exact same naming convention (it can even be in a different project or on a different machine), reconnect to the offline project, and then finish your edit.
    This is much more hands on than one might want, but it'll work.
    -Warren

  • Adobe AIR project - Questions

    Hello I m here to solve any questions related to AIR in my mind.
    I would start an offline project that consist of displaying and editing things in a db.I would like to develop this project over AIR and Action Script 3.I know that AS3 can handle Mysql but for running Mysql DB offline it would have a mysql server running on the machine...but here would like to create a db running with my AIR application and without have to install any mysql local server.
    So witch type of DB or how can i create DB for AS3 use?
    Maybe i can use xml as tables of DB and coding the xmls as they were db parts but the datas are very huge and this will not be easy to edit things in db with xml as tables
    Thanks a lot

    The AIR runtime includes the SQLite database engine, so if you want to use a database as part of your application that is the easiest way to do so. The documentation about the built-in database functionality is here:
    Flex: http://help.adobe.com/en_US/AIR/1.5/devappsflex/WS5b3ccc516d4fbf351e63e3d118676a5497-7fb4. html
    Flash:http://help.adobe.com/en_US/AIR/1.5/devappsflash/WS5b3ccc516d4fbf351e63e3d118676a5497-7fb4 .html
    HTML/JavaScript: http://help.adobe.com/en_US/AIR/1.5/devappshtml/WS5b3ccc516d4fbf351e63e3d118676a5497-7fb4. html
    In theory an AIR application can also communicate with any other type of database, assuming you find or write the code to perform that communication. For example, there is an open-source ActionScript library to directly access MySQL. However, as you point out, to use any server-based database you would need to have an instance of the database server running where the computer can access it.
    Aside from SQLite, the only other file-based database system that I'm familiar with is Microsoft Access. (I'm sure there are others, but I just don't know their names.) I don't know of any existing projects to work with Access database files from AIR, but again I could have just missed something.

  • Organizer and network storage - everything is offline

    Have been using PSE 7 for quite some time. Over time, I have moved all my photos over to a NAS unit, but lately the photos turned up as offline in the Organizer.
    I took the opportunity to upgrade to PSE 9, started with a brand new project, and tried to read in just two folders with pictures. Still the same problem, Organizer considers them to be offline, although the NAS unit is up and running just fine, mapped to a Windows drive letter and perfectly workable from every other application than PSE...
    Any suggestion how to correct this? Maybe I'm "importing" them wrong into the Organizer? (I went for File -> Get photos and videos -> From files and folders)
    //Niklas

    I think it had to be permissions.  The only "upgrade" I could think of that would talk to Final Cut it was the Aperture camera upgrade.
    I ran Oynx and wiped out all the caches and fixed permissions.
    It started and brought 95% of the projects back online and if I click on on offline project it onlines it... weird.  Interesting... even kept the in and out points of the last thing I was working on before everything went to crap.

  • DVCPRO HD 3 stream multiclip - computer too slow, offline edit? How?

    Of all my woes trying to get this project edited, I finally figured out solutions for a few problems I was having (preventing me from starting the edit). Now, let's assume I have everything ready...
    I have 3 angles, all DVCPRO HD. When I multiclip and place in timeline, keep getting dropped frames on playback.
    I've tried reducing RT as low as quarter framerate and low playback quality but I still get mixed results.
    Is there a way I can do an offline edit using multiclips then online the footage once my cuts are complete? How?
    Thanks!
    Oh duh - 17" Intel iMac (1st gen of Intels) 1.83Ghz, 2GB RAM, 1TB GRAID2, FCP 6.0.2

    FANTASTIC.
    Great, quick article.
    Let's give it a try...
    AAHHHH! It works! Ha!
    Ok (and I know you read a thousand threads every day), as noted in another post of mine, I have the nightmare of transcoding other footage taken from different cameras (at different resolutions and different compression [both hdv, one is 720p ftg, other is 1080i])
    The DVCPRO HD is native 59.94
    When I recompress for offline, I get the warning dialog about framerate of preset to be used mismatching footage I've selected. The new project/sequence will be set to OfflineRT HD (Photo JPEG) 29.97 The media I'm about to recompress, again, is 59.94 The offline clips retain the 59.94 framerate.
    Edit into sequence, prompt to change sequence settings to match clip settings. I edited the clip and 3 stream (!!) multiclip into the offline sequence with the sequence set to 29.97 or 59.94 I see no noticeable difference in the look of the footage. I don't have an external monitor to test with but I imagine it wouldn't make a difference.
    So what's my point? Oh, uhh, yeah. So the other two "footages"...Before I begin the edit, what should they be transcoded to? My guess:
    -Transcode HDV footage to DVCPRO HD 720p60 in Compressor
    -Results in 59.94
    -Put the entire "online" media into master project
    -Offline all footage for realtime project
    -Edit offline in 59.94 timeline
    -Did I mention the purpose of transcoding to match DVCPRO HD is so I can multiclip?
    -Complete edit in offline project
    -Online it.
    A few notes...
    -I don't have HDV to test w...oops, wait, I do. And, how convenient, it's 1080i! Nonetheless, I just did the Compress routine with some SD footage, looked like hairy sh...you know. But hey, that's what you'd expect. Mainly, you can see atrocious field separation especially on motion. Either way...
    Just converted the 1080i ftg to DVCPRO HD and from master to transcode, they look very similar. There is a SLIGHT blur on the transcoded ftg but it will suffice (it'll have to)
    -I offlined the transcoded 1080i-720p, looks like garbage but who cares? It's visible and plays back RT! Errr...when it's on its own in the timeline. Multiclip'd this ftg with 2 other DVCPRO HD offlined and, once in timeline, multiclip isn't playing back at all. Canvas shows the video, viewer doesn't. Each time playhead is stopped, viewer updates with current frames of each multiclip element. Yes, sync is set to open.
    Also, canvas doesn't update when cut to alternate angle, continues showing the previous footage AND IT DOES register the cuts but canvas doesn't update. UGH.
    -Restarting FCP. That didn't do it. The RT popup also doesn't give an option for multiclip playback. So...ahhh sugar. Found it.
    -The sequence needed to be set to 29.97, not 59.94
    -Now the question is, how will this affect the online? What will I online back to? Huuuuuhhhhh.....
    Well, I did it anyway and set it all back how it was, the sequence framerate is 29.97 - Nothing looks off or weird after a render. HOWEVER...
    -Does this mean I am doing it right?? Should the online be 59.94?
    OK, I think I've babbled enough. Very close!!! Much closer than before, very helpful, thank you!

  • Conforming HDV from SD FCP Project

    Hi there
    Having a problem today using a CMX 3600 EDL exported from a DV Pal project to conform footage at its original HDV res.
    Basically the clips begin capturing, but don't stop at the out point.
    The same EDL works fine at SD.
    Have also tried using Media Manager to create an offline project and recapturing that way, but have the same problem.
    Using a Sony Z1 as a deck - am I using the wrong device control settings or something?
    Any thoughts?
    Cheers
    G5    

    Your FCP sequence settings need to match the output
    from motion. Click on the playhead in FCP then press
    (apple+0)thats a zero. The match your sequence
    settings.
    This is most likely due to the software update.
    Like I said, this process of "down-resing" from an HDV project to an SD project was working flawlessly before I updated the software. FCP, to my knowledge, can take an HDV project from Motion and conform it into whatever the sequence settings are. As long as it's the correct aspect ratio which in this case is 16:9 and the project is a higher resolution, of course.
    My temporary solution was to export from Motion with Animation compression with the current output settings. This will give it a 4:3 aspect ratio. Then, open the movie and in the properties check off "preserve aspect ratio" and change the scaled size from 1440 x 1080 to 1920 x 1080. This will make it 16:9. Import into FCP and "viola"!
    It's just stressful to find out that a process that was working doesn't work anymore.

  • Aspect Ratio Problem with Onlining

    Hi,
    I checked the old posts and couldn't find an answer.
    I'm using Ken Stone's article to online my project. I followed the instructions except for the point right after the new online file is created and just before you capture footage. He says to change the Audio/Video Settings to go from Capture Preset (DV to OfflineRE NTSC (Photo JPEG) to DV NTSC 48 kHz). I did that. I also changed the Sequence Preset (which wasn't mentioned in the article) from Offline RT NTSC (Photo JPEG) to DV NTSC 48 kHz.
    When I captured the full-res footage, the clips were squeezed to look more widescreen. The image hadn't been cropped, just stretched.
    These are the sequence settings for my offline project:
    Frame Size: 320x240 Multimedia Large (4:3)
    Pixel Aspect Ratio: Square - (Anamorphic 16:9 box not checked.)
    Field Dominance: none
    Editing Timebase: 29.97
    Quicktime video Settings
    Compressor: Photo - JPEG
    Quality: 35%
    These are the sequence settings for my online project:
    Frame Size: 720x480 NTSC DV (3:2)
    Pixel Aspect Ratio: NTSC- CCIR 610/DV(720x280)- (Anamorphic 16:9 box not checked.)
    Field Dominance: Lower (even)
    Editing Timebase: 29.97
    Quicktime video Settings
    Compressor: DV/DVCPRO - NTSC
    Quality: 100%
    I filmed the original footage on miniDV (NTSC) with a Canon GL2 3CCD camera. The footage was onlined with a Sony DCR-HC32 1CCD miniDV (NTSC) camera. I'm using FCP 5.0.4 on an apple powerbook g4. OS 10.4.8
    I'm sure the solution is something small that I'm missing. Thanks a lot for any help!

    Hey you might have already done this but check the settings of the new clips not just the sequence. Right-click on one of the affected clips in ur browser then go down to item properties-> format and see if the anamorphic option is ticked on these. Hope this helps,
    Howard
    G5 iMac 20inch, Macbook   Mac OS X (10.4.7)   FCS 5.1, 500GB External

  • Not able to open a 2013 plan in mpp 2013

    The error thrown is -Sorry, we were unable to open your project,If it happens again,please contact your administrator.
    1.Not able to open from PWA as well.
    2.The task bar in mpp shows All offline projects sync to server.closing "Project Name"
    any Help Appreciated.
    -Piyusha

    Hi,
    As Paul suggested, it would help to have a more detailed error message, from the queue and from the ULS logs. The message you gave us is a generic message that is not quite helpful.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • How to create reports in java swing

    I am doing an offline project for that I need to show daily report, weekly report and monthly report how to display a report in my application. Please show me with coding

    ABCDERTYUIOP wrote:
    I am doing an offline project for that I need to show daily report, weekly report and monthly report how to display a report in my application. Please show me with codingDownload iReport and Google for tutorials it's easy to use.

Maybe you are looking for

  • Playlists for syncing no longer exist?!

    so yesterday i had an urge to finally download the newest version of itunes. everything went smoothly until it was complete. i noticed that all my songs on my ipod got deleted. when i tried to sync all my songs again, a message popped up: "Songs on t

  • CS6 Installation with serial no. that is not working

    need help badly. bought CS6 yesterday through Adobe website and the order was confirmed with serial no. when downloading and filling in the serial no, kept getting a msg saying "we are unable to validate this serial no for adobe illustrator CS6. what

  • IMac G5 20" monitor looks flakey

    I have an iMac 20" G5 (not isight) and the monitor has suddenly gotten lines the entire length of it. Is anyone familiar with the cause? Link to a screenshot is below. http://www.2047.org/g5.gif

  • How to populate TableView data on the other screen TextField

    Hi guru’s I am having problem in populating data from a table in one screen to a Text Field in the other screen. I have two classes FirstClass containing a textbox and a button. On pressing a button a second window is opened containing a Table of val

  • IPhone 8.3 music app shuts down when I try to open it

    Since updating to 8.3, both my iPhone 6+ and my iPad 3 will not play music from my playlists.  The music app shuts down and reverts to the home screen each time I try to play music.