How can I include a fxml in different fxml?

Hi,
I´m developing my JavaFX app with fxml. I have two fxml files:
-MediaData.fxml
-StartScreen.fxml
I defined a custom menu in a separate fxml:
-Menu.fxml
I want to include the the hole Menu.fxml in MediaData.fxml and StartScreen.fxml.
Can someone help me with this?
Thanks
Josef
MediaData.fxml:
<BorderPane fx:controller="com.msg.swl.cockpit.gui.startScreen.StartScreenController"
xmlns:fx="http://javafx.com/fxml">
<top>
<fx:include source="Menu.fxml"/>
</top>
Menu.fxml start with:
<BorderPane xmlns:fx="http://javafx.com/fxml">
<center>
<GridPane alignment="center">
<styleClass>
<String fx:value="grid-pane-menu"/>
</styleClass>
</GridPane>
</center>
<left>
Edited by: Josef on 07.04.2012 02:55

Line 92 Menu.fxml:
<styleClass>
<String fx:value="button-menu-info"/>
</styleClass>
menu.css:
.button-menu-question {
-fx-skin: "com.sun.javafx.scene.control.skin.ButtonSkin";
-fx-padding: 4 8 7 8;
-fx-background-color: #444444;
Line 17 MediaData.fxml:
<BorderPane fx:controller="com.msg.swl.cockpit.gui.startScreen.StartScreenController"
xmlns:fx="http://javafx.com/fxml">
<top>
<fx:include source="Menu.fxml"/> *//Line 17*
</top>
Error:
Mrz 01, 2012 4:26:36 PM javafx.fxml.FXMLLoader logException
Schwerwiegend: The following error occurred at line 92 in file /C:/Users/Josef%20Bichlmeier/Documents/NetBeansProjects/SWL%20Cockpit%202/build/classes/com/msg/swl/cockpit/gui/mediaData/Menu.fxml[Ljava.lang.StackTraceElement;@615d5d35
Mrz 01, 2012 4:26:36 PM javafx.fxml.FXMLLoader logException
Schwerwiegend: The following error occurred at line 17 in file /C:/Users/Josef%20Bichlmeier/Documents/NetBeansProjects/SWL%20Cockpit%202/build/classes/com/msg/swl/cockpit/gui/mediaData/MediaData.fxml[Ljava.lang.StackTraceElement;@46ae8bb1
Mrz 01, 2012 4:26:36 PM com.msg.swl.cockpit.main.ViewLoader load
Schwerwiegend: Could not load fxml into FXMLLoader
javafx.fxml.LoadException: No controller specified.
     at javafx.fxml.FXMLLoader$Element.processEventHandlerAttributes(Unknown Source)
     at javafx.fxml.FXMLLoader$ValueElement.processEndElement(Unknown Source)
     at javafx.fxml.FXMLLoader.processEndElement(Unknown Source)
     at javafx.fxml.FXMLLoader.load(Unknown Source)
     at javafx.fxml.FXMLLoader$IncludeElement.constructValue(Unknown Source)
     at javafx.fxml.FXMLLoader$ValueElement.processStartElement(Unknown Source)
     at javafx.fxml.FXMLLoader.processStartElement(Unknown Source)
     at javafx.fxml.FXMLLoader.load(Unknown Source)
     at com.msg.swl.cockpit.main.ViewLoader.load(ViewLoader.java:68)
     at com.msg.swl.cockpit.gui.mediaData.LoadMediaDataImpl.loadView(LoadMediaDataImpl.java:26)
     at com.msg.swl.cockpit.gui.startScreen.StartScreenController.handleMediaDataButtonAction(StartScreenController.java:208)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
     at java.lang.reflect.Method.invoke(Method.java:601)
     at javafx.fxml.FXMLLoader$ControllerMethodEventHandler.handle(Unknown Source)
     at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(Unknown Source)
     at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(Unknown Source)
     at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(Unknown Source)
     at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(Unknown Source)
     at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.EventUtil.fireEventImpl(Unknown Source)
     at com.sun.javafx.event.EventUtil.fireEvent(Unknown Source)
     at javafx.event.Event.fireEvent(Unknown Source)
     at javafx.scene.Node.fireEvent(Unknown Source)
     at javafx.scene.control.Button.fire(Unknown Source)
     at com.sun.javafx.scene.control.behavior.ButtonBehavior.mouseReleased(Unknown Source)
     at com.sun.javafx.scene.control.skin.SkinBase$5.handle(Unknown Source)
     at com.sun.javafx.scene.control.skin.SkinBase$5.handle(Unknown Source)
     at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(Unknown Source)
     at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(Unknown Source)
     at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(Unknown Source)
     at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(Unknown Source)
     at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.EventUtil.fireEventImpl(Unknown Source)
     at com.sun.javafx.event.EventUtil.fireEvent(Unknown Source)
     at javafx.event.Event.fireEvent(Unknown Source)
     at javafx.scene.Scene$MouseHandler.process(Unknown Source)
     at javafx.scene.Scene$MouseHandler.process(Unknown Source)
     at javafx.scene.Scene$MouseHandler.access$1300(Unknown Source)
     at javafx.scene.Scene.impl_processMouseEvent(Unknown Source)
     at javafx.scene.Scene$ScenePeerListener.mouseEvent(Unknown Source)
     at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(Unknown Source)
     at com.sun.glass.ui.View.handleMouseEvent(Unknown Source)
     at com.sun.glass.ui.View.notifyMouse(Unknown Source)
     at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
     at com.sun.glass.ui.win.WinApplication.access$100(Unknown Source)
     at com.sun.glass.ui.win.WinApplication$2$1.run(Unknown Source)
     at java.lang.Thread.run(Thread.java:722)
java.lang.RuntimeException: java.lang.reflect.InvocationTargetException
     at javafx.fxml.FXMLLoader$ControllerMethodEventHandler.handle(Unknown Source)
     at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(Unknown Source)
     at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(Unknown Source)
     at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(Unknown Source)
     at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(Unknown Source)
     at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.EventUtil.fireEventImpl(Unknown Source)
     at com.sun.javafx.event.EventUtil.fireEvent(Unknown Source)
     at javafx.event.Event.fireEvent(Unknown Source)
     at javafx.scene.Node.fireEvent(Unknown Source)
     at javafx.scene.control.Button.fire(Unknown Source)
     at com.sun.javafx.scene.control.behavior.ButtonBehavior.mouseReleased(Unknown Source)
     at com.sun.javafx.scene.control.skin.SkinBase$5.handle(Unknown Source)
     at com.sun.javafx.scene.control.skin.SkinBase$5.handle(Unknown Source)
     at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(Unknown Source)
     at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(Unknown Source)
     at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(Unknown Source)
     at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(Unknown Source)
     at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
     at com.sun.javafx.event.EventUtil.fireEventImpl(Unknown Source)
     at com.sun.javafx.event.EventUtil.fireEvent(Unknown Source)
     at javafx.event.Event.fireEvent(Unknown Source)
     at javafx.scene.Scene$MouseHandler.process(Unknown Source)
     at javafx.scene.Scene$MouseHandler.process(Unknown Source)
     at javafx.scene.Scene$MouseHandler.access$1300(Unknown Source)
     at javafx.scene.Scene.impl_processMouseEvent(Unknown Source)
     at javafx.scene.Scene$ScenePeerListener.mouseEvent(Unknown Source)
     at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(Unknown Source)
     at com.sun.glass.ui.View.handleMouseEvent(Unknown Source)
     at com.sun.glass.ui.View.notifyMouse(Unknown Source)
     at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
     at com.sun.glass.ui.win.WinApplication.access$100(Unknown Source)
     at com.sun.glass.ui.win.WinApplication$2$1.run(Unknown Source)
     at java.lang.Thread.run(Thread.java:722)
Caused by: java.lang.reflect.InvocationTargetException
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
     at java.lang.reflect.Method.invoke(Method.java:601)
     ... 46 more
Caused by: java.lang.NullPointerException
     at javafx.scene.Scene$4.invalidated(Unknown Source)
     at javafx.beans.property.DoublePropertyBase.markInvalid(Unknown Source)
     at javafx.beans.property.DoublePropertyBase.set(Unknown Source)
     at javafx.scene.Scene.setWidth(Unknown Source)
     at javafx.scene.Scene.init(Unknown Source)
     at javafx.scene.Scene.<init>(Unknown Source)
     at javafx.scene.Scene.<init>(Unknown Source)
     at com.msg.swl.cockpit.gui.mediaData.LoadMediaDataImpl.loadView(LoadMediaDataImpl.java:28)
     at com.msg.swl.cockpit.gui.startScreen.StartScreenController.handleMediaDataButtonAction(StartScreenController.java:208)
     ... 50 more
Thanks
Josef
Edited by: 918113 on 01.03.2012 07:32

Similar Messages

  • How can I include different DAQ cards (for notebook and PC) in one applicatio​n?

    I want to build one application, which runs on different computers. On PC a DAQ board PCI-6052E and LabVIEW including application builder are installed and work. My program runs.
    Now I want to build an application, which runs on the notebook without LabVIEW but with the similar DQACard-AI-16XE-50, too.
    How I have to install the DAQCard on the notebook and how can I include the driver?

    Sylke,
    Check the following link which guides you step by step to install the driver and configure the daq board:
    http://www.ni.com/support/install/
    Hope this information is helpful.
    L Aguila
    Applications Engineer
    National Instruments

  • How can i import tables from a different schema into the existing relational model... to add these tables in the existing model? plss help

    how can i import tables from a different schema into the existing relational model... to add these tables in the existing relational/logical model? plss help
    note; I already have the relational/logical model ready from one schema... and I need to add few more tables to this relational/logical model
    can I import the same way as I did previously??
    but even if I do the same how can I add it in the model?? as the logical model has already been engineered..
    please help ...
    thanks

    Hi,
    Before you start, you should probably take a backup copy of your design (the .dmd file and associated folder), in case the update does not work out as you had hoped.
    You need to use Import > Data Dictionary again, to start the Data Dictionary Import Wizard.
    In step 1 use a suitable database connection that can access the relevant table definitions.
    In step 2 select the schema (or schemas) to import.  The "Import to" field in the lower left part of the main panel allows you to select which existing Relational Model to import into (or to specify that a new Relational Model is to be created).
    In step 3 select the tables to import.  (Note that if there are an Foreign Key constraints between the new tables and any tables you had previously imported, you should also include the previous tables, otherwise the Foreign Key constraints will not be imported.)
    After the import itself has completed, the "Compare Models" dialog is displayed.  This shows the differences between the model being imported and the previous state of the model, and allows you to select which changes are to be applied.
    Just selecting the Merge button should apply all the additions and changes in the new import.
    Having updated your Relational Model, you can then update your Logical Model.  To do this you repeat the "Engineer to Logical Model".  This displays the "Engineer to Logical Model" dialog, which shows the changes which will be applied to the Logical Model, and allows you to select which changes are to be applied.
    Just selecting the Engineer button should apply all the additions and changes.
    I hope this helps you achieve what you want.
    David

  • How can I include results of a subsequenc​e, which runs in a new thread, in the main sequence test report

    Hi!
    I', m working with TestStand Version 4.2.1. I have a main sequence, which calkls different subsequences. All these steps are properly reported. One of subsequences runs as "new thread". How can I include its results in common test report of the main sequence?
    I have markes variables of the subsequence as it is requred for test report (it works OK if it is not a new thread). If the the numerical test, which is executed in this subsequence is correct, I get no results at all. If the numeric test failed I get somewhere in the main sequence report a "red message", that test failed whithout any reference to the step or values of vaiables which were not correct.
    I tried an option "On the fly" in the Report Configuration , but haven' got any useful results. What shall I do?
    Best regards
    Solved!
    Go to Solution.

    Hi,
    I tried it but without success:
    1) I got a reference to the Thread as "Locals.Step1=RunState.Thread" for every of 2 steps which start a thread
    2) I put both "Waits" after steps with (and without) threads, at the same place, where they were before
    3) The sequence run OK, but when it came to Wait for Thread 1 it waited for ever, I had to terminate sequence
    Does it mean, that I got a false reference (suppose No - please, have a look at attached pic)?
    Or does it mean, that Waits are badly placed in the sequence (threads are already terminated)? Here is a pic of sequeces calls with Wait after them.
    Regards
    Attachments:
    Thread.JPG ‏34 KB
    SequenceCall.JPG ‏32 KB

  • How can I include merged projects in the printed documentation?

    I have a master project with several merged projects. This works splendid with online documentation, but when I am asked to provide a printed version, it seems I have to create separate documents for each merged project.
    Is there any setting or fix that enables print also of merged projects and topics when I create printed documentation?
    Pretty please with sugar on top :-)

    Hm - there is a contract with the customer, saying that he wants documentation both as word and pdf, and as we now aim at only writing online documentation, these tasks create extra work, as we are delivering updates each month
    But yes - two beasts, where only chm is actually needed we think.
    -Tone
    Date: Tue, 3 May 2011 06:53:04 -0600
    From: [email protected]
    To: [email protected]
    Subject: How can I include merged projects in the printed documentation?
    Hi there
    I'm a bit curious as to the reasoning behind your "persuation process for using chm-files only".
    CHM files and printed documentation are two entirely different beasts.
    Cheers... Rick
    | http://www.robowizard.com/pc.gif | Helpful and Handy Links
    http://www.Adobe.com/cfusion/mmform/index.cfm?name=wishform&product=38
    http://www.gooberguides.com/ProductPages/RoboHelp/RoboHelp82Day.htm
    http://www.ShowMeSolutions.biz
    http://sorcererstone.wordpress.com/
    http://www.gooberguides.com |
    >

  • How can I include a portal component look and feel in a java servlet

    Does any body know how can i include a portal component look and feel (tables, buttons, etc) in a java servlet?

    Hi José,
    I don't think that is possible. But you can import the css files that ep uses for its look and feel and try to give your web pages similar look and feel. The tables and other controls used in EP are totally different and are done through complex JavaScript coding instead of simple HTML tags. If you want exact lok and feel then i thin you must go for a Webdynpro based application rather then a J2EE application with JSPs.
    Regards,
    Guru.
    PS: Give points for helpful replies.

  • How can i change the ringtone for different contacts.  "edit contacts" won't let me`??

    how can i change the ringtones for different contacts on the razor.  "edit contacts" wont allow me to

    Here is the Instructions your Looking For:  Down towards the Bottom of the Instructions shows how to set Ringtones for each Contact.
    How do I download and use ringtones on my DROID  Razr & RAZR MAXX?
    Quick links
    Set any of your songs on your SDcard as a phone ringtone
    Choose Phone ringtones through settings menu
    Customize the text message ringtone
    Assign a ringtone to a specific contact
    Download ringtones from Play Store      
    1. Set any of your songs on your SDcard as a phone ringtone:
    Touch Apps > My music
    While the music is playing, touch the phone Menu Key > More > Use as ringtone 
    The ringtone is set as your default incoming call ringtone and copied to your Phone ringtone list.       
    Note: The above instructions are for the My music player and not for other players such as Play music.      2. Choose Phone ringtones through settings menu:
    Press the Menu key
    Touch Settings
    Touch Sound
    Touch Phone ringtone  (If option is greyed out, make sure handset volume is not set to Silent Mode)
    Select a Phone ringtone from the list. Press OK to set. (Music files you have set as Incoming Call ringtone from your SDcard will be included in this list along with downloaded and preloaded ringtones.
    3. Customize the text message ringtone
    From the homescreen or from within the applications tray, touch Text messaging
    Press the Menu key (On the left with 4 squares)
    Touch Messaging Settings
    Touch Select ringtones (if option is greyed out, make sure Notifications is turned on / actived)
    Touch on any Notification ringtone to select and hear a sample.
    Press OK to set as notification ringtone
    CLICK HERE for instructions on creating your own custom ringtone for Text Messages
    4. Assign a ringtone to a specific contact:
    Press Contacts icon on homescreen or tap on Contacts application from the Applications Tray
    Touch and select the specific contact
    Press the menu key
    Touch Options
    Touch V (down)  icon next to Ringtone
    Choose a Phone ringtone from the list and tap OK to set.
    Note: To assign a music/song from your memory card as a ringtone, first follow step1 above and follow step 4 again. 5. Download ringtones from the Play Store
    From the applications menu, touch Play Store
    Touch search  to search for ringtones.
    Answers others found helpful
    How do I setup and use Bluetooth on my DROID RAZR MAXX?
    How do I transfer files to/from my DROID RAZR MAXX?
    How do I set up and use the Smart Actions application using the DROID RAZR MAXX?
    How do I use the DROID RAZR MAXX for video chat?
    How do I force my DROID RAZR MAXX to reboot or restart?

  • How can I send email using two different email address that both link back to my one exchange account on my Ipad mini

    How can I send email using two different email address that both link back to my one exchange account on my Ipad mini? 
    On my PC I simply have a master return email address and use a POP for the secondary address.  Both are through the one exchange account without a problem.  I need to be able to do the same on my Ipad.

    Ah, I should have made that clear.  My domain didn't come from google.  It was purchased at and is hosted at dreamhost, but I haven't used their email servers in years - I just route everything through gmail.  I actually have a bunch of domains (with websites).
    Gmail has an option that lets someone with custom domains send (and receive) email through gmail using the custom domain once Google confirms proper ownership of the domain (to prevent spammers and such).  Gmail has a setting for "send email as" which allows gmail to be sent using a custom domain as the sender.  I'm pretty sure Apple's old mobileme had this feature too, but I didn't use it.

  • My husband and I share an iTunes account. We both just got iPads. How can we program them to have different phone numbers for FaceTime and messages

    My husband and I share an iTunes account. We both just got iPads. How can we program them to have different phone numbers for FaceTime and messages

    Use different email address (gmail?) just for FaceTime and Messages.
    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    For non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
     Cheers, Tom

  • How can I edit multiple clips with different frame rates on the same timeline

    how can I edit multiple clips with different frame rates on the same timeline

    You do not want to edit material from different frame rates on one timeline. You CAN do this, but it is a very bad idea - and this is why.
    Once you establish the sequence frame rate - lets say it is PAL material at 25fps, any material that you drop into the sequence other than 25 fps will have to be changed to play at 25 fps. If the material you add is NTSC (29.97), FCP will DROP 5 frames per sec to bring the frame rate down to 25 fps. Which 5 get thrown away? Every 6th one. This yields a funky cadence that becomes even more complex as as there are also interlaced fields (DV/NTSC is an interlaced format). Oh, and by the way, the image sizes are different as well. DV/PAL has 576 lines of resolution and DV/NTSC has 480. FCP has to scale up the NTSC to fit the PAL frame.
    You do not want FCP adjusting these things on the fly. You want to do a thoughtful (and time consuming) conversion so that you end up with all your material in one format with the best possible image from the conversion process. Compressor can do an adequate job with Frame Controls turned on. The Natress Standards Conversion FCP plugin is another way to go. A third option is to find a post house that can do the conversion for you using a hardware based process.
    The good news is, once everything is in the same format, editing it will be painless and the output process very quick.
    Whatever frame rate/ image size you select, I'd suggest using ProRes for the codec. It is 4:2:2 color and will withstand color correction and composting with much more grace than any variant of DV based codecs.
    Have fun.
    x

  • How can I include my business email fonts on the ipad signature?

    How can I include my business email fonts on the ipad signature?

    It's a lot easier with Photo Manager Pro.
    https://itunes.apple.com/sg/app/photo-manager-pro/id393858562?mt=8

  • I have 2 ipods on same account( 2 different kids in household) how can I separate them into 2 different accounts?se

    I have 2 ipods on same account( 2 different kids in household) how can I separate them into 2 different accounts?

    There are actually a few methods for using more than one iPod on a single computer: How To Use Multiple iPods with One Computer
    Just to summarise what's in the link above:
    Method one is to have two Mac or Windows user accounts which by definition would give you two completely separate libraries.
    Method two is to set your preferences so that either one or both iPods get updated with only certain playlists within one library. If you've had no success with this you can have a look through the guide on this page: Loading songs onto iPod automatically
    Another option when using a single library is to set one or both of the iPods to manual update: Managing content manually on iPod
    You can read about Windows user accounts here: Using Windows XP User Accounts

  • How can I transfer songs from two different itunes?

    I want to transfer songs from my brother's itunes library to my shuffle, but when I plug it in his computer, a message saying that his library is not linked to my library (or something to that extent) and whether I would like to replace the songs. If I click yes, all my existing songs are replaced with HIS songs. If I click on NO, the Shuffle icon does not appear at all and I cannot transfer any of his songs to my shuffle. How can I transfer songs from two different computers into my shuffle without replacing any of my existing music?
    Shuffle   Windows XP  
      Windows XP  

    You'll have to setup your iPod to manual instead of automatic update (I'm not sure, though, if it works with the Shuffle as well).
    Alexander.

  • I have a mac book pro, an ipad and an iphone.  i have an icloud account that allows my iPad and imac to sync.  but my mac book only has a connection to 'mobile me'.  how can i include my macbook with my other devices?  help!  thanks

    i have a mac book pro, an ipad and an iphone.  i have an icloud account that allows my iPad and imac to sync.  but my mac book only has a connection to 'mobile me'.  how can i include my macbook with my other devices?  help!  thanks

    You need OSX 10.7.2 or higher in order to access icloud.  The mobile me account is now defunct (it closed down more than a year ago).

  • HT204053 My ipad stores my documents on iCloud. How can I find them from a different computer, as I used to do by using a memory stick on my old PC etc ?

    My ipad stores my documents in iCloud. How can I find them from a different computer?  I used to use a memory stick and could work on my documents on any computer and want to have a replacement system using documents created on my ipad - I can't use a memory stick with it.

    How do you know that they are on iCloud, the iPad can (and does) save locally. If they are on iCloud they will be accessible via the application that created them (Pages, Numbers etc) and can be reached from any computer with iCloud access by logging to iCloud.com. But you did that and stated that they are not there, so what makes you think that they are?

Maybe you are looking for

  • Could you please provide me any inputs for this interesting requirement

    Hi Experts, I need to create a <b>report to diplay all reports</b> (such as z or A or any reports) <b>accessible through the SA38</b>, its title, last used (in past 1 year), how many time it was used per past 1 year, and number of different users. An

  • How can I get the main button on my iPhone to work?

    For some reason I haven't been able to back out of any apps or messages or anything to my home screen. The touch screen and the power button works just fine. So basically, I have to turn my phone on and off again to go into anything different. I don'

  • [AS3] how do i use this angle in another lower level movie clip?

    i'm tryin to use an angle from one movie clips to be part of an if statement in another lower level movie clip. my code is probably ugly but here it is. thank you in advance for the help

  • Truncate RTF character in varchar2 field

    Hi everyone. I have a varchar2 field in a table on Oracle 10g. I need to cut all RTF characters from the data that is stored in this field and only extract the simple text without any format. Is there any way or a SQL function to eliminate those char

  • Audio driver fails to initialize when hires_tick=1 in /etc/system

    Running Solaris 9 on Ultra 25 hardware. A customer's application requires hires_tick=1 be set in /etc/system. Once this change is made, audio does not work. Here is the error message from /var/adm/messages Nov 1 12:34:11 <hostname> audiosup: [ID 3844