Is there a way to have iDVD have accommodate more than one iMovie project on one DVD?

Looking for a way to have more than one iMovie Project burned to one DVD through iDVD.  Any assistance is greatly appreciated.

Hi
YES - But do not use "Share to iDVD" in any version of iMovie as this will degrade the final result - BUT
Share to Media Browser - and as Large (Not HD or other resolutions as this too degrades the final DVD)
Now when Your movies are Shared. Close iMovie
Open iDVD and import movies from Media button/Movies (down to the right)
And You can add up to 99 movies - or 60/120 minutes (reg encoding quality chosen)
Time is = Movie duration + MENU DURATION (can take 15 minutes or more if elaborated)
(I keep it as simple possibly)
Yours Bengt W

Similar Messages

  • HT1040 Is there a way to place an order with more than one item at a time? For example I am going to make a few books and have them all shipped to me.  Do I have to order and pay shipping for each one individually?

    Is there a way to place an order with more than one item at a time?  for example I am making a few books and having them all shipped to me.  Do I have to order each one separately and pay shipping each time?

    You have to order each book separately, if the books are different. Only multiple copies of the same book can be ordered in the same order, see here
    Regards
    Léonie

  • Is there a way to put an item under more than one calendar at the same time?

    I use the calendar to keep track of not only my schedule, but my entire family's. For years I had a calendar labeled 'kids.' Now as they're getting older it would be easier to have an individual calendar for each child. Easier for me to track where they are and they could have they're own calendar on their iphone or iphone touch since we all share one cloud account. However, frequently more than one is at the same activity. The calendar program will only allow me to select one calendar to place an event under; as soon as I select another, it deselects the first. Is there a way to place an event under more than one calendar?
    (Since I'm still the one driving that needs to know date, time, place, etc type details I don't want them adding it to their own schedule - maybe -  on their devides and synching through cloud)

    You can create many calendars. Here's the tip:
    Example: you have 1 son and 1 daughter.
    In iCloud ( https://www.icloud.com )
    Create 1 calendar called Son ( Choose a color to tell them apart )
    Create 1 calendar called Daughter ( Ditto )
    Create 1 calendar called Kids
    Since you are the creator, you get to see all calendars combined.
    Send invitations to each of them
    Son gets Son and Kids calendars
    Daughter gets Daughter and Kids calendars
    So if there an event for Son, just put in that calendar
    If it's for both then enter it in the Kids calendar
    Likewise for daughter.

  • Is there a way to lock transparent pixels for more than one layer at a time?

    I've tried selecting multiple layers to modify but the lock transparent pixels box becomes greyed out once I've selected more than one layer. Apologies in advance if this is deemed to be a stupid question but it would be greatly appreciated if someone knows of a solution. It would be very handy for some of the projects I'm currently developing.
    Thanks.

    I have not had a problem in Photoshop CC 2014 as long as I selected a layer with transparency, in my case the gray checkerboard. The button would dim if I selected an adjustment layer.

  • Is there a way I can sync and keep more than one iPhoto library from my MacBook on my iPad2?

    Hi, I have several iphoto Libraries on my MacBook - as it's a good way to organize all my photos and keeps them in manageable form - but I would like to keep them on my ipad2 aswell.  In the normal way I can only sync one Library at a time - unless someone knows better!
    Many thanks and hope you can help.

    found solution...i've now got iphone sync'd between new IMac and macbook pro (meaning that I can now add songs, video, from both computers...i don't know about all that sync of contacts and mail, etc...not concerned with that at moment..)
    follow solutions here:....http://www.iskysoft.com/topic-iphone/sync-iphone-with-multiple-macs.html. NOTE: as mentioned in my previous post, I was unable to change my Library Persistent ID, as it would always revert back to the original....however, in the link above, one user, made suggestion to corrupot Itunes Library.itl, and then it will repair itself with Library Persistent ID (of old/original machine), and now it works..!

  • Is there a way to erase contents in cells more than one, without deleting the formatted background?

    When using Numbers on iPad (Numbers '09, v2.3 on iPad, iOS v6.1.3), I want to erase contents in an area with more than 1 cell, e.g. 10 cells, without erasing/deleting the formatted background colour.
    Using a right click on cells using Numbers on a Mac (Mac, OS X v10.8.4) you can differentiate between "delete content of cell" (where the background is maintained) and "delete all" (where both the content AND the background is deleted).
    Please, I need help.
    Kindly,
    Henning154

    Just select the cells you want to delete and hit the delete button.
    That works on my machine (Macbook Pro).
    The background remains unchanged.

  • Is there any way you can deautherized 5 computers more than once a year?

    Is there any way you can deautherized 5 computers more than once a year?

    Click "Support" at the top of this page, then click the link under "Contact Us"

  • Is there a datatype that allows me to store more than one item at a time

    Hello Everyone,
    Is there a datatype that allows me to store more than one item at a time , in a column in a row?
    I have to prepare a monthly account purchase system. Basically in this system a customer purchases items in an entire month as and when required on credit and then pays at the end of the month to clear the dues. So, i need to search the item from the inventory and then add it to the customer. So that when i want to see all the items purchased by a customer in the current month i get to see them. Later i calculate the bill and then ask him to pay and flushout old items which customer has purchased.
    I am having great difficulty in preparing the database.
    Please can anyone guide me! i have to finish this project in a weeks time.
    Item Database:
    SQL> desc items;
    Name Null? Type
    ITEMID VARCHAR2(10)
    ITEMCODE VARCHAR2(10)
    ITEMPRICE NUMBER(10)
    ITEMQUAN NUMBER(10)
    Customer Database:
    SQL> desc customerdb;
    Name Null? Type
    CUSTID VARCHAR2(10)
    CUSTFNAME VARCHAR2(20)
    CUSTLNAME VARCHAR2(20)
    CUSTMOBNO NUMBER(10)
    CUSTADD VARCHAR2(20)
    I need to store for every customer the items he has purchased in a month. But if i add a items purchased by a customer to the customer table entries look this.
    SQL> select * from customerdb;
    CUSTID CUSTFNAME CUSTLNAME CUSTMOBNO CUSTADD ITEM ITEMPRICE ITEMQUANTITY
    123 abc xyz 9988556677 a1/8,hill dales soap 10 1
    123 abc xyz 9988556677 " toothbrush 18 1
    I can create a itempurchase table similar to above table without columns custfname,csutlnamecustmobno,custadd
    ItemPurchaseTable :
    CUSTID ITEM ITEMPRICE ITEMQUANTITY
    123 soap 10 1
    123 toothbrush 18 1
    ill just have it as follows. But still the CUSTID FK from CustomerDB repeats for every row. I dont know how to solve this issue. Please can anyone help me.
    I need to map 1 customer to the many items he has purchased in a month.
    Edited by: Yukta Lolap on Oct 8, 2012 10:58 PM
    Edited by: Yukta Lolap on Oct 8, 2012 11:00 PM

    You must seriously read and learn about Normalization of tables; It improves your database design (at times may increase or decrease performance, subjective cases) and eases the Understanding efforts for a new person.
    See the below tables and compare to the tables you have created
    create table customers
      customer_id       number      primary key,
      fname             varchar2(50)  not null,
      mname             varchar2(50),
      lname             varchar2(50)  not null,
      join_date         date          default sysdate not null,
      is_active         char(1)     default 'N',
      constraint chk_active check (is_active in ('Y', 'N')) enable
    create table customer_address
      address_id        number      primary key,
      customer_id       number      not null,
      line_1            varchar2(100)   not null,
      line_2            varchar2(100),
      line_3            varchar2(100),
      city              varchar2(100)   not null,
      state             varchar2(100)   not null,
      zip_code          number          not null,
      is_active         char(1)         default 'N' not null,
      constraint chk_add_active check (is_active in ('Y', 'N')),
      constraint fk_cust_id foreign key (customer_id) references customers(customer_id)
    create table customer_contact
      contact_id        number      primary key,
      address_id        number      not null,
      area_code         number,
      landline          number,
      mobile            number,
      is_active         char(1)   default 'N' not null,
      constraint chk_cont_active check (is_active in ('Y', 'N'))
      constraint fk_add_id foreign key (address_id) references customer_address(address_id)
    create table inventory
      inventory_id          number        primary key,
      item_code             varchar2(25)    not null,
      item_name             varchar2(100)   not null,
      item_price            number(8, 2)    default 0,
      item_quantity         number          default 0,
      constraint chk_item_quant check (item_quantity >= 0)
    );You may have to improvise and adapt these tables according to your data and design to add or remove Columns/Constraints/Foreign Keys etc. I created them according to my understanding.
    --Edit:- Added Purchases table and sample data;
    create table purchases
      purchase_id           number        primary key,
      purchase_lot          number        unique key  not null,     --> Unique Key to map all the Purchases, at a time, for a customer
      customer_id           number        not null,
      item_code             number        not null,
      item_price            number(8,2)   not null,
      item_quantity         number        not null,
      discount              number(3,1)   default 0,
      purchase_date         date          default sysdate   not null,
      payment_mode          varchar2(20),
      constraint fk_cust_id foreign key (customer_id) references customers(customer_id)
    insert into purchases values (1, 1001, 1, 'AZ123', 653, 10, 0, sysdate, 'Cash');
    insert into purchases values (2, 1001, 1, 'AZ124', 225.5, 15, 2, sysdate, 'Cash');
    insert into purchases values (3, 1001, 1, 'AZ125', 90, 20, 3.5, sysdate, 'Cash');
    insert into purchases values (4, 1002, 2, 'AZ126', 111, 10, 0, sysdate, 'Cash');
    insert into purchases values (5, 1002, 2, 'AZ127', 100, 10, 0, sysdate, 'Cash');
    insert into purchases values (6, 1003, 1, 'AZ123', 101.25, 2, 0, sysdate, 'Cash');
    insert into purchases values (7, 1003, 1, 'AZ121', 1000, 1, 0, sysdate, 'Cash');Edited by: Purvesh K on Oct 9, 2012 12:22 PM (Added Price Column and modified sample data.)

  • How do you send more than 1 iMovie project to the same iDVD project???

    I have 3 separate movie projects in iMovie with chapter markers and am trying to send them over to ONE iDVD project. Every time I send a movie over, it creates a new iDVD project and I can't get all 3 movies in the same project.
    I'm trying to put each movies as a submenu under the main menu in iDVD.
    Any help would be appreciated!
    iMac G5   Mac OS X (10.4.8)  
    iMac G5   Mac OS X (10.4.8)  

    Thanks for the help Karsten...
    OK, after a long night of trial and error, I've figured it out...
    Issue 1: Files not showing up in the media pane--- miraculously after shutting down all open apps and then restarting the computer, my iMovie projects are now showing up in the movie pane of the media panel in iDVD...
    Issue 2: Getting more than one movie project into iDVD with all the chapter settings--- a little more complicated!
    In iMovie: SHARE > iDVD gives you a new iDVD project with 2 submenus: 1 with the entire movie, and 1 with "scene selections"
    If you try to add a second iMovie project to the same iDVD project; it's not possible from within iMovie (at least not that I can figure out!).
    You can add this second iMovie project to the same iDVD project by adding it to the project within iDVD from the MEDIA > MOVIES pane. This, however, will only add the movie and not give you the second submenu with scene selections.
    To get the 2nd iMovie project into iDVD, I dragged the 2nd movie project from a finder window into the opened iDVD project. This adds the 2 submenus (1 with the movie and 1 with the scene selections) to the iDVD project.
    Hope this is useful to someone else, too.
    Thanks!

  • Is there a way to Search (List search) for more then one field text from a column for Bulk uploading?

    I've been trying to find more information on this and I apologies if this has already been answered. I just don't know the correct way to ask this. We have a SharePoint List at the company that we have people input information into different columns. The
    problem is most of those information are very repetitive. Is there a way for me to search more then one field text in the column and just input that same information in?
    ex:
    Column 1
    Column 2
    Date:
    883851
    MidWest
    User input 
    8831518
    MidWest
    User input
    On the search field in the SharePoint List, I would need to search for 883851, 8831518 etc,  would view those requested numbers, then I would click edit and change dates to those rows. Does that make sense? I'm sorry I'm fairly new at sharepoint.

    I think what you're asking is about having repetitive options in a list, show up easily for new items being created.
    This can be done by setting the columns that contain repetitive information to Choice fields.  In the configuration of the Choice field, check the box for "Allow custom values".  Now as users are entering data into the list, the dropdown of options
    for a given field grows and users can quickly see and select previously entered and thus repetitive values for the given fields.
    I trust that answers your question...
    Thanks
    C
    |
    RSS |
    http://crayveon.com/blog |
    SharePoint Scripts | Twitter |
    Google+ | LinkedIn |
    Facebook | Quix Utilities for SharePoint

  • Is there a way to open CSV files with more than 255 columns?

    I have a CSV file with more than 255 columns of data.  It's a fairly standard export of social media data that shows volume of posts by day for the past year, from which I can analyze the data and publish customized charts. Very easy in Excel but I'm hitting the Numbers limit of 255 columns per table. Is there a way to work around the limitation? Perhaps splitting the CSV in two? The data shows up in the CSV file when I open via TextEdit, so it's there. Just can't access it in Numbers. And it's not very usable/useful for me in TextEdit.
    Regards,
    Tim

    You might be better off with Excel. Even if you could find a way to easily split the CSV file into two tables, it would be two tables when you want only one.  You said you want to make charts from this data.  While a series on a chart can be constructed from data in two different tables, to do so takes a few extra steps for each series on the chart.
    For a test to see if you want to proceed, make two small tables with data spanning the tables and make a chart from that data.  Make the chart the normal way using the data in the first table then repeat the following steps for each series
    Select the series in the chart
    Go to Format sidebar
    Click in the "Value" box
    Add a comma then select the data for this series from the second chart
    Press Return
    If there is an easier way to do this, maybe someone else will chime in with that info.

  • Is there a way to use locations to do more than just basic network config?

    Hello,
    I'm trying to figure out if the network location can be used to do more than just the basics. For example, is there a way to automatically connect to network drives when I'm at a particular location? Trying to connect to them all the time (as a login item for example) makes the computer slow down whenever I'm at a different location. Also, is there a way to change the default printer or even sharing of pictures or music? It doesn't make sense to have a default printer something that's not available anymore at my new location, right?
    What would be the best way to automatize all this (if it's not already supported?)
    Many thanks in advance,
    Adrian

    You can create many calendars. Here's the tip:
    Example: you have 1 son and 1 daughter.
    In iCloud ( https://www.icloud.com )
    Create 1 calendar called Son ( Choose a color to tell them apart )
    Create 1 calendar called Daughter ( Ditto )
    Create 1 calendar called Kids
    Since you are the creator, you get to see all calendars combined.
    Send invitations to each of them
    Son gets Son and Kids calendars
    Daughter gets Daughter and Kids calendars
    So if there an event for Son, just put in that calendar
    If it's for both then enter it in the Kids calendar
    Likewise for daughter.

  • Can you use or have open more than one app at a time on iphone 6 plus?

    Does anyone know if you will be able to open more than on app at a time on the new iphone 6 plus?  I would like to multi-task with the app's in the new operating system.

    Sorry there is no telephone support. You could try the IRC if you want a quick response, ( whilst it is [https://support.mozilla.com/en-US/kb/ask open] )
    Firefox 4 is not supported, but firefox 3.6 is
    * see [[installing a previous version of firefox]]
    There is a change to a preference which may help, post back with more details of your problems please.

  • Any way to change names of artists more than one at a time?

    I've got some AFI that shows up as A.F.I., and some AFI that shows up as AFI. There are a ton of songs with each spelling. Is there any way I can tell Itunes to convert A.F.I. to AFI?

    Highlight all the ones you want to change. Right click - get info, then change the artist to what you want. Changes all of them
    good luck

  • Is there any way to have two libraries on one coputer for two ipods

    I want my stuff on my ipod and not all my sister's music, and i just want to know if i can
    Dell   Windows XP  
    Dell   Windows XP  

    I prefer method 2
    Using Multiple iPods With One Computer
    but if you like method 1, read this too
    How To Share Music Between Different Accounts On A Single Computer

Maybe you are looking for

  • Spend a lot of time to insert

    Hi, I have a Insert which spend a lot of time. Is a simple insert: INSERT INTO TFE002 (X_NOMCORRECTO,C_TITULAR,X_APPCORRECTO,X_ANOVAL, C_MODULAR,X_APMCORRECTO,C_USUARIO,C_POBLACION, C_FORMATO,C_LOTE,C_SECUENCIA,C_PERIODO, X_T,X_NI,X_GRADO,X_SEXO,X_LO

  • How to add email signatures

    How do I add an email signature to my email?

  • To identify  a  good recipt document no in field table

    Hi, How do u identify a goods receipt? I mean using which field table

  • Compaq 12XL310

    I'm installing Solaris 8 on a Compaq Presario 12XL310 laptop, with a Trident Cyberblade CBi1, and can't find a driver that works. Can Someone help? This 16 color display is driving me nuts! Thank you in advance. Sam Rinehold

  • I am getting an error message when I try and Ram Preview "

    "After Effects error: RAM Preview needs 2 or more frames to playback." My Preferences settings in the the Memory & Multiprocessing section are. Installed RAM: 6GB RAM reserved for other applications: 1.5GB RAM available  for AE: 4.5GB AE multiprocess