IDVD with multiple sub chaper selections

I have created an iMovie with small (1 minute or less) presentations of 30 speakers. On a single iDVD I wish to have the following:
1. The ability to play the entire iMovie in the order it now exists.
2. A Selection of:
a. speakers from occupation categoires (approx 10 occupational cagegories with 2-4 speakers each)
b. categories of speakers based on their content (not necessarily by their occupation. This would be approx 6 categories of 4-6 speakers each.
In other words, a viewer would (if desired) see all of the speakers 3 times: once in the order of the original video, a second time by selecting from the occupational groups, and a third time by content of their presentation.
I have made idvds in which their were selections (made by chapter markers within iMovie) but these always were in order of the presentation. Now I want to do the above, a more complex task.
How should I proceed?

Boy, that IS complex.
I think you'll need to do 3 separate iMovie projects edited to display in the categories that you want, or one long iMovie containing 3 separate consecutive movies accessed by chapter markers.
Perhaps someone else on this forum can come up with something better.

Similar Messages

  • Create master document form with multiple sub form

    Hi Dear;
    how can i create a master form with multiple sub form using screen painter?
    best regards;

    Hi Dany,
    Do you mean a form connected to a MasterData Object with multiple childs?
    If so:
    1. Create a new ScreenPainter form;
    2. Add a Folder item for each of the childs;
    3. Add a new matrix to each of the childs and change their PaneLevel to from 1 to N (N = number of childs you have);
    If your code you then need to catch item pressed event for the Folder Items and change the form's Pane Level accordingly.
    Regards,
    Vítor Vieira

  • Re:Bursting control file with multiple sub templates

    Hi
    Can any one let me know how to create a bursting control file for multiple sub templates. I.e I have one main template which will invoke other templates. the normal bursting control file which i have created is sending
    an output with no data , but i can see an output in the concurrent program.
    Thanks in advance.

    Add it as parameter in your xml file.

  • Problem with multiple sub-panels through Enum case structure: "The VI is not in a state compatible with this operation"

    Hello,
    I am using LabVIEW 8.0 and I am attempting to create a sub-panel that displays the front panel of a sub-vi depending on the selection made by the user via the Enum dropdown menu.  I have wired the Enum to a case structure and applied identical coding to each individual case structure except for obviously changing the sub-vi source.  However, I receive an error "The VI is not in a state compatible with this operation."  I was able to successfully make a single sub-vi work within a sub-panel using a true/false case structure and the exact same coding.  However, now that I am using an Enum box wired to a case structure, I receive this error.  I have attached my block diagram as well.  Could anyone assist me as to where it is that I am going wrong?
    Thanks in advance!
    Solved!
    Go to Solution.
    Attachments:
    enum subpanels.JPG ‏22 KB

    torm wrote:
    I have attached my block diagram as well
    I only see a picture. Can you attach the VI instead? At what point do you close the reference?
    torm wrote:
    I have wired the Enum to a case structure and applied identical coding to each individual case structure except for obviously changing the sub-vi source.
    Well, if the code is identical except for the source, only the source should be inside the case, right? Why duplicate code?
    LabVIEW Champion . Do more with less code and in less time .

  • CR Server - Report with multiple sub reports prompts for SQL connection for

    I have a report published in CR Server. The Report has four subreports. When the report is run from CR Server, the initial SQL Server connection log in is automatically handled by the log in details in CR Server, but the report then prompts for SQL Server log in four times, presumably for each sub report.
    How can I get rid of these SQL login prompts?
    Rgds
    Tony Maguire

    ARF
    Yes - it looks like it might have been to do with the contents of the ".sqldeveloper" directory. Probably SQL Developer may have got confused with me running the same SQL on the same database under different users.
    We create a read-only user to carry out queries against the live schema. This read-only user has only select privileges and no insert/update/delete privileges.
    Thanks for the feedback

  • How to create text box with multiple lines in selection screen.

    Hi,
    i need to create a text box to capture comment with 300 characters. i want to achive this without using module pool,is there any posibilities to that
    regards
    raja

    Since text on Report screens is limited basically to what's left on a line in the selection screen, you'll have to use Module Pool.
    however, you can call a screen from a report program and use the editor within a Custom Control on the screen.  Not a tough thing to do.

  • XMLAGG with multiple sub-queries

    Trying to produce xml data file where a set of users have many products and org units, outcome should look like:
    <TopTree>
    <User>
    <UserStatus>1</UserStatus>
    <Access>
    <AccessSetting><Product code="AAA"></Product><ActivateDate>2012-05-01</ActivateDate></AccessSetting>
    <AccessSetting><Product code="BBB"<</Product><ActivateDate>2012-05-01</ActivateDate></AccessSetting>
    <AccessSetting><Product code="CCC"></Product><ActivateDate>2012-05-01</ActivateDate></AccessSetting>
    </Access>
    <PersonInfo>
    <Name>
    <FirstName><![CDATA[John]]></FirstName>
    <LastName><![CDATA[Smith]]></LastName>
    </Name>
    <ContactInfo>
    <Email Label="business">[email protected]</Email>
    </ContactInfo>
    </PersonInfo>
    <Security>
    <Credentials>
    <UserName>jsmith</UserName>
    <Password>jsmith123</Password>
    </Credentials>
    <OrganizationUnits>
    <OrgUnit code="Engineering"></OrgUnit>
    <Roles>
    <UnitRole>INT_I</UnitRole>
    <UnitRole>REP_A</UnitRole>
    <UnitRole>OIT_S/UnitRole>
    </Roles>
    </OrganizationUnits>
    </Security>
    </User>
    </TopTree>
    am using the query:
    SELECT
    xmlElement("TopTree",
    xmlAgg(xmlElement("User"
    ,xmlElement("UserStatus", DECODE(users.term_date, NULL, 1, 0))
    ,xmlElement("Access"
    ,xmlAgg(xmlElement("AccessSetting"
    ,xmlElement("Product", xmlAttributes(acc.product_access as "code"))
    ,xmlForest(acc.activate_date as "ActivateDate"
    , acc.deactivate_date as "DeactivateDate")
    ,xmlElement("PersonInfo"
    ,xmlElement("Name"
    ,xmlElement("FirstName", xmlCDATA(users.first_name))
    ,xmlElement("LastName", xmlCDATA(users.last_name)))
    ,xmlElement("ContactInfo"
    ,xmlelement("Email", xmlattributes('business' as "Label"), users.email)
    ) -- end of ContactInfo
    ) -- end of PersonInfo
    ,xmlElement("Security"
    ,xmlElement("Credentials"
    ,xmlelement("UserName", users.login_key)
    ,xmlelement("Password", users.Password)
    ,xmlElement("OrganizationUnits"
    ,xmlElement("OrgUnit", xmlattributes('Engineering' as "code"))
    ,xmlElement("Roles", xmlagg(xmlElement("UnitRole", org.org_unit_role)))
    ) -- end of OrganizationUnits
    ) -- end of Security
    ) -- end of User
    ) -- end of xmlAgg User
    ) -- end of TopTree
    FROM user_data users
    ,user_access_v acc
    ,org_unit_roles_v org
    WHERE users.person_id = acc.person_id
    AND users.org_role = org.org_role
    GROUP BY DECODE(users.term_date, NULL, 1, 0)
    ,users.first_name
    ,users.last_name
    ,users.email
    ,users.login_key
    ,users.password
    but I'm getting
    <TopTree>
    <User>
    <UserStatus>1</UserStatus>
    <Access>
    <AccessSetting><Product code="AAA"></Product><ActivateDate>2012-05-01</ActivateDate></AccessSetting>
    <AccessSetting><Product code="AAA"></Product><ActivateDate>2012-05-01</ActivateDate></AccessSetting>
    <AccessSetting><Product code="AAA"></Product><ActivateDate>2012-05-01</ActivateDate></AccessSetting>
    <AccessSetting><Product code="BBB"></Product><ActivateDate>2012-05-01</ActivateDate></AccessSetting>
    <AccessSetting><Product code="BBB"></Product><ActivateDate>2012-05-01</ActivateDate></AccessSetting>
    <AccessSetting><Product code="BBB"<</Product><ActivateDate>2012-05-01</ActivateDate></AccessSetting>
    <AccessSetting><Product code="CCC"></Product><ActivateDate>2012-05-01</ActivateDate></AccessSetting>
    <AccessSetting><Product code="CCC"></Product><ActivateDate>2012-05-01</ActivateDate></AccessSetting>
    <AccessSetting><Product code="CCC"></Product><ActivateDate>2012-05-01</ActivateDate></AccessSetting>
    </Access>
    <PersonInfo>
    <Name>
    <FirstName><![CDATA[John]]></FirstName>
    <LastName><![CDATA[Smith]]></LastName>
    </Name>
    <ContactInfo>
    <Email Label="business">[email protected]</Email>
    </ContactInfo>
    </PersonInfo>
    <Security>
    <Credentials>
    <UserName>jsmith</UserName>
    <Password>jsmith123</Password>
    </Credentials>
    <OrganizationUnits>
    <OrgUnit code="Engineering"></OrgUnit>
    <Roles>
    <UnitRole>INT_I</UnitRole>
    <UnitRole>INT_I</UnitRole>
    <UnitRole>INT_A</UnitRole>
    <UnitRole>REP_A</UnitRole>
    <UnitRole>REP_A</UnitRole>
    <UnitRole>REP_A</UnitRole>
    <UnitRole>OIT_S/UnitRole>
    <UnitRole>OIT_S</UnitRole>
    <UnitRole>OIT_S</UnitRole>
    </Roles>
    </OrganizationUnits>
    </Security>
    </User>
    </TopTree>
    Have tried different combinations of XMLAGG but can't seem to get it to work when I have more than one sub-query

    Not tested (for obvious reasons) but instead of aggregating over a cartesian resultset, you can do a single scan of USER_DATA and get additional info from other tables using subqueries :
    SELECT
    xmlElement("TopTree",
      xmlAgg(xmlElement("User"
                  ,xmlElement("UserStatus", DECODE(users.term_date, NULL, 1, 0))
                  ,xmlElement("Access",
                       select xmlAgg(xmlElement("AccessSetting"
                                    ,xmlElement("Product", xmlAttributes(acc.product_access as "code"))
                                    ,xmlForest(acc.activate_date as "ActivateDate"
                                             , acc.deactivate_date as "DeactivateDate")
                       from user_access_v acc
                       where acc.person_id = users.person_id
                  ,xmlElement("PersonInfo"
                    ,xmlElement("Name"
                    ,xmlElement("FirstName",   xmlCDATA(users.first_name))
                    ,xmlElement("LastName",    xmlCDATA(users.last_name)))
                    ,xmlElement("ContactInfo"
                      ,xmlelement("Email", xmlattributes('business' as "Label"), users.email)
                               )  -- end of ContactInfo
                             )  -- end of PersonInfo
                  ,xmlElement("Security"
                     ,xmlElement("Credentials"
                       ,xmlelement("UserName", users.login_key)
                       ,xmlelement("Password", users.Password)
                     ,xmlElement("OrganizationUnits"
                        ,xmlElement("OrgUnit", xmlattributes('Engineering' as "code"))
                        ,xmlElement("Roles",
                             select xmlagg(xmlElement("UnitRole", org.org_unit_role))
                             from org_unit_roles_v org
                             where org.org_role = users.org_role
                         ) -- end of Roles
                                ) -- end of OrganizationUnits
                              ) -- end of Security                    
                           ) -- end of User
                ) -- end of xmlAgg User
              ) -- end of TopTree
      FROM user_data users
    ;

  • Problem with multiple table row selection

    Hi all
           I have a rfc which fetches me a bunch of records and displays them in a table,say A.
           I have to select multiple records from this table and hit a button to navigate to next screen..where I will review the selected entries from table A..
           Cardinality is 0..N,Selection cardinality is 1..N.
    and selection mode as "multi"
    But I am not able to select multiple entries in tableA..
    Pl send me some sample code which would help me solving this issue...
    Thanks in advance

    hi,
    this is the code i have written.
    int size = wdContext.nodeHeader().size();
           IPrivateGetView.IItemElement e1 = wdContext.createItemElement("instance");
           for(int i=0;i<size;i++)
           if(wdContext.nodeHeader().isMultiSelected(i))
               e1.setDel(wdContext.nodeHeader().getHeaderElementAt(i).getDel());
                wdContext.nodeItem().addElement(e1);
    // i am trying to add the selected rows from one table to another table.
    By using above logic i couldn't select more than one row.
    Can u help me how to select more than one row and add them to another table.
    Thanks in advance.

  • How do I create one Family account with multiple sub web sites?

    It seems like this would already have been discussed. I have searched and have not found what I am looking for.
    What I would like is:
    web.mac.com/myfamilyaccountname/family
    then I might have one for whatever reason:
    web.mac.com/myfamilyaccountname/hans
    and my wife would want hers:
    web.mac.com/myfamilyaccountname/michelle
    She has her own laptop and would like to post to her subsite but under the family account.
    Thanks

    Hans,
    You could purchase a .Mac Family Account.
    But, based on the way you have demonstrated the urls you want, all of you could use a single .Mac account and just publish to it with whatever machine you choose. Just configure each machine to the account using System Preferences, and publish to it. As long as each site is named differently, they will not overwrite one another.
    Mark

  • Search same role with multiple subprocess

    Guru's
    Using CUP 5.3 sp 11
    Is there anyway I can add same role to multiple subprocessess.
    Ex : on select role page. selected application area -
    > business process -
    > subprocess.
    We have some general roles which has to go with multiple sub processess.
    I have all my roles downloaded to spreadsheet and under sub process it is taking only one value.

    Alpesh, Thank a lot for you response.
    I will follow up with SAP because its very important that evey client has some display/general roles which will go with almost every subprocess.
    Thanks

  • XML output with multiple tags in one line

    I have not done much XML exporting with SQL. Previously I had just been ending my SQL queries with
    FOR XML RAW ('Company'), ROOT ('Companies'), ELEMENTS;
    and it formatted my query nicely in an XML output. That put every column name as a tag and the cell data within the tag.
    However, now the criteria has changed on me. I need to create a tag with multiple sub tags in it.
    Example: <Location Floor="10" Suite="512" DoorType="Metal">
    But I'll still need other tags to be normal in the XML output such as
    <Address>123 Fake St</Address>
    <City>Springfield</City>
    <Location Floor="10" Suite="512" DoorType="Metal">
    Is there any way to get this XML mixed in the output like above?
    Thank you for any help. 

    Hi, you can FOR XML PATH for a finer degree of control over your XML.  Use the @ symbol to create attributes.  Here's a simple example:
    DECLARE @t TABLE ( rowId INT IDENTITY PRIMARY KEY, [address] VARCHAR(50), city VARCHAR(30), floor INT, suite INT, doorType VARCHAR(20) )
    INSERT INTO @t VALUES
    ( '123 Fake St', 'Springfield', 10, 512, 'Metal' )
    SELECT
    [address] AS "Address",
    city AS City,
    [floor] AS "Location/@Floor",
    suite AS "Location/@Suite",
    doorType AS "Location/@DoorType"
    FROM @t
    FOR XML PATH ('Company'), ROOT ('Companies'), ELEMENTS;

  • Flash line chart with multiple lines

    Here a newbie with apex...
    Created a flash line chart with as source the following sql statement:
    select null link, year, sum(total_cost) from cost
    group by year
    a chart has been created with a single line. i wanted every year on an own line.
    The way i could do this is with multiple series like:
    select null link, year, sum(total_cost) from cost
    where year =2008
    select null link, year, sum(total_cost) from cost
    where year =2009
    But this not a good solition, cause now i've to add every year a new serie
    hope to get some help from here... txn in advanced.

    tnx for your reply...
    I will explain myself more by a picture of the wanted result, see below:
    [Click here for the example image|http://img44.imageshack.us/img44/3444/grapha.jpg]
    In your reply you wright you think i can create the graph with pl/sql process. After seeing my example you still think that's needed?
    Hope you or some else can help... tnx in advanced.
    greetings

  • Report with multiple tabs

    Hi,
    I have a report with multiple tabs in selection screen. Say material number is mandatory in the first tab. But we don't need material number in the second tab. But if I want to go to the 2nd tab, i get the error message 'Please enter the material number'. Can this be avoided?
    Thanks in advance.

    Hi Paromita,
    If I understand your problem correctly then, here is the summary of your problem -
    a) There are multiple tabs on selection screen. Out of which the first tab has a mandatory field i.e., Material Number. And then there are other tabs.
    b) So, unless and until you provide the value in first tab for the material number(which is a mandatory field), you cannot navigate to the second tab or any other tab for that matter.
    So, ideally the second and rest of other tabs are mutually dependent on the first tab's information as it has a mandatory field. Unless and until you make the first tab inactive it will not let you enter data in the second tab and so on.
    So, to ideally enable input in second tab, make the first tab inactive. Try this and let me know if it works.
    BR,
    Ravi

  • Converting a Crystal Report with Many Sub-Reports into CF Report Builder

    I am trying to rewrite a Crystal Reports report which has 11
    subreports in CF Report Builder. In the CR report, each subreport
    has it's own report footer seciton. I have not been able to find
    anything in CF Report Builder that allows me to do the same. Is CF
    Report Builder capable of producing a report with multiple
    subreports?

    Having successfully created a report with 5 or 6 subreports
    (with each sub-report containing a multiple sub-sub reports) I can
    say with confidence, "Yes you can." However the real question you
    should ask is, "
    Should I create a report with multiple sub-reports in CF
    ReportBuilder?" And the answer to that is.... NO, WHAT ARE YOU
    CRAZY!
    If you have something that works in Crystal Reports I would
    suggest you stick with that. Otherwise you're setting yourself up
    for a lot of headaches. Now maybe it was because I started using
    the report builder that came with MX7, but it seems there are still
    quite of few bugs that will leave you shaking your fist at your
    computer. If however you do continue and do the CF Report Builder
    route, be prepared for your application to crash unexpectedly, and
    for many things to not work they way you expect them to. And if you
    ever need help good luck. Take the fact that you had difficulty
    finding good documentation as a sign of how little Adobe supports
    this product.
    CF Report Builder is fine for very simple reports, but don't
    get fancy with it, you'll only regret your decision in the
    end.

  • Include multiple sub-interfaces in Cisco ASA for VPN tunnel

    I am trying to create a VPN tunnel between two Cisco ASAs where one ASA has multiple sub-interfaces.
    Say, In Cisco ASA 5550(in datacentre), I created multiple subinterfaces with VLAN ID as below:
    Inside, int0/1 : 10.1.1.0/24
    DMZ, int0/1.100: 10.1.100.0/24 (VLAN 100)
    Production, int 0/1.101 : 10.1.101.0/24 (VLAN 101)
    Management, int 0/1.102: 10.1.102.0/24 (VLAN 102)
    And another Cisco ASA 5505 is only configured with 1 x inside interface Inside, int 0/1: 192.168.1.0/24
    So far, I have only been able to provide outside access to one of the sub-interfaces as NAT rule on inside interface didn't work for VLANs. Hence had to issue Global NAT rule to be applied on Production subinterface so that production VLAN can have outside access. I have managed to establish VPN tunnel between two ASAs on Production sub-interface only, Source interface = Production subinterface
    Additional settings:
    Have ACL to allow all sub interfaces to access outsite ( lower security level)
    NAT rules is configured on Production subinterface with Source NAT Type as Dynamic PAT; when this was configured with source interface as inside, PCs behind various VLAN coun't access internet. 
    I want to establish a site-to-site VPN tunnel with multiple sub-interfaces of Cisco ASA 5550 to Cisco ASA 5505. Would you please suggest what I am missing in my configuration? I need to be able to access multiple VLANs of datacentre from remote site.

    I am trying to create a VPN tunnel between two Cisco ASAs where one ASA has multiple sub-interfaces.
    Say, In Cisco ASA 5550(in datacentre), I created multiple subinterfaces with VLAN ID as below:
    Inside, int0/1 : 10.1.1.0/24
    DMZ, int0/1.100: 10.1.100.0/24 (VLAN 100)
    Production, int 0/1.101 : 10.1.101.0/24 (VLAN 101)
    Management, int 0/1.102: 10.1.102.0/24 (VLAN 102)
    And another Cisco ASA 5505 is only configured with 1 x inside interface Inside, int 0/1: 192.168.1.0/24
    So far, I have only been able to provide outside access to one of the sub-interfaces as NAT rule on inside interface didn't work for VLANs. Hence had to issue Global NAT rule to be applied on Production subinterface so that production VLAN can have outside access. I have managed to establish VPN tunnel between two ASAs on Production sub-interface only, Source interface = Production subinterface
    Additional settings:
    Have ACL to allow all sub interfaces to access outsite ( lower security level)
    NAT rules is configured on Production subinterface with Source NAT Type as Dynamic PAT; when this was configured with source interface as inside, PCs behind various VLAN coun't access internet. 
    I want to establish a site-to-site VPN tunnel with multiple sub-interfaces of Cisco ASA 5550 to Cisco ASA 5505. Would you please suggest what I am missing in my configuration? I need to be able to access multiple VLANs of datacentre from remote site.

Maybe you are looking for

  • How do you password protect web gallery

    Iphoto is easy to protect. How do you password protect your movies in webgallery? The help menu is not very clear

  • How to share catalog between two users on one iMac?

    Using Photoshop elements 11: I built op my catalog, creating events, tagging people etc. Now I would like my girlfriend to also use this catalog. (I can build up a new catalog but then I lose all the events, tags etc). I put the pictures and catalog

  • Query to get the last added record in a table for a particular id

    T Hi, I have 2 tables A, B Table A has id,name Table B had parentid(foreignkey referring to ID in above table), record_type,created_timestamp I want to get the last added record_type from Table B for all the ids present in Table A.

  • Tab Focus of Extended Canvas Object

    I have extended the Canvas control to add some functionality; however, I now need my control to be able to be tabbed to and focused and I can't seem to get this to work. I have set the tabEnabled to true, the "focusSkin" to HaloFocusRect, the focusEn

  • Authorization for "Select Layout and Print"

    I am using Business One 8.8 PL 18.  The option under the File menu for "Select Layout and Print" is available for super-users and some other users.  We want it to be available for all users.  What authorization setting controls this function?  Thanks