Paste not enabled after copy.

Hallo,
if I select a slide in a slideshow, choose "Copy attributes" from the context menu, then select another slide show, select a slide there and try to paste the attributes, the command is disabled in the context menu.
Why can't I copy and paste attributes from one slide show to another. I don't see why it shouldn't be possible.
Different question: Why can I select an slide show in the project window, and copy it, but not paste it. I thought that maybe this way I could "clone" a certain slide show, and modify the copy as I need.
Did the developers just forget to disable the copy command in this case?
I would like to produce a set of very similar slide shows in my project. There's a black image, blending into the "main" image. This image stays for some time, then it fades to black. After that the black image is shown again for some seconds.
I could create each slide show the fast way by selecting the black image and the main image, then selecting "New->slide show". The last black image at the end would be missing though. Therefore I'd have to import a copy of the black image.
But then still the new slideshow wouldn't have the transitions and effects that the formerly created slide shows have.
Is there an easier way to copy a slide show?
Regards,
Christian Kirchhoff

Thanks for that answer.
Regarding the attributes: I copied attributes from a first slide and tried to insert them in a slide show where I only inserted one slide so far. But because transitions are not possible when there is no following (second) slide, Encore DVD disabled the paste command because the attributes in the clipboard also contained a transition. I admit that Encore's behaviour was correct, though it would be nicer to just insert the attributes that are possible and skip the rest.
Regarding the slideshow: I just thought that maybe Encore DVD was copying something else that I didn't know, like object from another window or a text representation of the slide show. But doing a paste in a simple text editor led to nothing. When you copy a sprite or a cast member in director, some text info about that object is copied into the clipboard as well, which can be inserted into a text editor.
Best regards,
Christian

Similar Messages

  • XML Updating not possible after Copy Paste

    Hi all
    I have a problem with updating large financial tables. The tables are generated from Excel into XML, then placed via JavaScript on ID pages. I can get up to 10 tables some containing 100 rows by 8 cols data.
    All formating is done by the combination of Tags, Styles and Scripts.
    Should the people that generate the financial tables in the first place update the Excel file, we re run the process and the layout tables in ID update no problem.
    Now come the layout artists and copy paste the table they need onto the layout where additional background stories and images combine into the final layout.
    The XML tree of the data they copy also copies into the layoutfile. All good so far.
    Now an update via Excel arrives and I need to update the final layout file.
    But the link is no longer in the Links palette. As soon as I do the copy paste it is gone.
    How do I update the relevant subset of XML on the final layout file, from the complete XML dataset given to me.
    Any ideas where I went wrong?
    Romano

    I do not think is possible to copy links between documents.
    I think the only way to create a link is to Import XML and Create Link.
    Therefore, you should try to adopt a workflow that does not result in copy and pasting the XML to a new document:
    Several choices present themselves:
    1. Adjust your script to import the XML into the final layout file directly.
    2. After you have copy-and-pasted the XML, open the structure pane, select the XML root, and re-import the XML file by hand, creating a link.
    3. Cut and paste the final layout into the layout with the link.
    4. Pages (panel) > Move Pages the pages from the final layout into the layout with the linked XML content, and then move the linked XML around in that layout onto the pages where it matters
    Good luck!

  • Commit operation not enabled after createinsert in detail table

    Hi Everybody,
    After clicking createinsert operation for detail table in master detail, i got unique contraint error from db.after rectifiying the data for newly created row..commit operation not enabled to save the data.
    Please find the code i used in my jsf.
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1">
          <af:messages id="m1"/>
          <af:form id="f1">
            <af:panelBox text="PanelBox2" id="pb2">
              <f:facet name="toolbar">
                <af:group id="g2">
                  <af:commandButton actionListener="#{bindings.Delete1.execute}"
                                    text="Delete1"
                                    disabled="#{!bindings.Delete1.enabled}"
                                    id="cb4"/>
                  <af:commandButton
                                    text="CreateInsert1"
                                    disabled="#{!bindings.CreateInsert1.enabled}"
                                    id="cb3"
                                    action="#{backingBeanScope.MyIndustryBean.cb3_action}"/>
                  <af:commandButton actionListener="#{bindings.Commit.execute}"
                                    text="Commit"
                                    disabled="#{!bindings.Commit.enabled}"
                                    id="cb5"/>
                  <af:commandButton actionListener="#{bindings.Rollback.execute}"
                                    text="Rollback"
                                    disabled="#{!bindings.Rollback.enabled}"
                                    immediate="true" id="cb6">
                    <af:resetActionListener/>
                  </af:commandButton>
                </af:group>
              </f:facet>
              <af:table value="#{bindings.IndustryEOView1.collectionModel}"
                        var="row" rows="#{bindings.IndustryEOView1.rangeSize}"
                        emptyText="#{bindings.IndustryEOView1.viewable ? 'No data to display.' : 'Access Denied.'}"
                        fetchSize="#{bindings.IndustryEOView1.rangeSize}"
                        rowBandingInterval="0"
                        filterModel="#{bindings.IndustryEOView1Query.queryDescriptor}"
                        queryListener="#{bindings.IndustryEOView1Query.processQuery}"
                        filterVisible="true" varStatus="vs"
                        selectedRowKeys="#{bindings.IndustryEOView1.collectionModel.selectedRow}"
                        selectionListener="#{bindings.IndustryEOView1.collectionModel.makeCurrent}"
                        rowSelection="single" id="t1" width="448"
                        inlineStyle="height:193px;" partialTriggers="::cb3 ::cb4">
                <af:column sortProperty="IdDesc" filterable="true" sortable="true"
                           headerText="#{bindings.IndustryEOView1.hints.IdDesc.label}"
                           id="c2">
                  <af:inputText value="#{row.bindings.IdDesc.inputValue}"
                                label="#{bindings.IndustryEOView1.hints.IdDesc.label}"
                                required="#{bindings.IndustryEOView1.hints.IdDesc.mandatory}"
                                columns="#{bindings.IndustryEOView1.hints.IdDesc.displayWidth}"
                                maximumLength="#{bindings.IndustryEOView1.hints.IdDesc.precision}"
                                shortDesc="#{bindings.IndustryEOView1.hints.IdDesc.tooltip}"
                                id="it2">
                    <f:validator binding="#{row.bindings.IdDesc.validator}"/>
                  </af:inputText>
                </af:column>
                <af:column sortProperty="IdPlace" filterable="true" sortable="true"
                           headerText="#{bindings.IndustryEOView1.hints.IdPlace.label}"
                           id="c1">
                  <af:inputText value="#{row.bindings.IdPlace.inputValue}"
                                label="#{bindings.IndustryEOView1.hints.IdPlace.label}"
                                required="#{bindings.IndustryEOView1.hints.IdPlace.mandatory}"
                                columns="#{bindings.IndustryEOView1.hints.IdPlace.displayWidth}"
                                maximumLength="#{bindings.IndustryEOView1.hints.IdPlace.precision}"
                                shortDesc="#{bindings.IndustryEOView1.hints.IdPlace.tooltip}"
                                id="it1">
                    <f:validator binding="#{row.bindings.IdPlace.validator}"/>
                  </af:inputText>
                </af:column>
              </af:table>
            </af:panelBox>
            <af:panelBox text="PanelBox1" id="pb1">
              <f:facet name="toolbar">
                <af:group id="g1">
                  <af:commandButton actionListener="#{bindings.Delete.execute}"
                                    text="Delete"
                                    disabled="#{!bindings.Delete.enabled}"
                                    id="cb2"/>
                  <af:commandButton
                                    text="CreateInsert"
                                    disabled="#{!bindings.CreateInsert.enabled}"
                                    id="cb1"
                                    action="#{backingBeanScope.MyIndustryBean.cb1_action}"/>
                  <af:commandButton actionListener="#{bindings.Create.execute}"
                                    text="Create"
                                    disabled="#{!bindings.Create.enabled}"
                                    id="cb7"/>
                </af:group>
              </f:facet>
              <af:table value="#{bindings.IndustryRatinEOView1.collectionModel}"
                        var="row" rows="#{bindings.IndustryRatinEOView1.rangeSize}"
                        emptyText="#{bindings.IndustryRatinEOView1.viewable ? 'No data to display.' : 'Access Denied.'}"
                        fetchSize="#{bindings.IndustryRatinEOView1.rangeSize}"
                        rowBandingInterval="0"
                        filterModel="#{bindings.IndustryRatinEOView1Query.queryDescriptor}"
                        queryListener="#{bindings.IndustryRatinEOView1Query.processQuery}"
                        filterVisible="true" varStatus="vs"
                        selectedRowKeys="#{bindings.IndustryRatinEOView1.collectionModel.selectedRow}"
                        selectionListener="#{bindings.IndustryRatinEOView1.collectionModel.makeCurrent}"
                        rowSelection="single" id="t2"
                        partialTriggers="::t1 ::cb1 ::cb2 ::cb7">
                <af:column sortProperty="RatingId" filterable="true" sortable="true"
                           headerText="#{bindings.IndustryRatinEOView1.hints.RatingId.label}"
                           id="c5">
                  <af:selectOneChoice value="#{row.bindings.RatingId.inputValue}"
                                      label="#{row.bindings.RatingId.label}"
                                      required="#{bindings.IndustryRatinEOView1.hints.RatingId.mandatory}"
                                      shortDesc="#{bindings.IndustryRatinEOView1.hints.RatingId.tooltip}"
                                      id="soc2" autoSubmit="true">
                    <f:selectItems value="#{row.bindings.RatingId.items}" id="si2"/>
                  </af:selectOneChoice>
                </af:column>
                <af:column sortProperty="RatingSubId" filterable="true"
                           sortable="true"
                           headerText="#{bindings.IndustryRatinEOView1.hints.RatingSubId.label}"
                           id="c6" partialTriggers="soc2">
                  <af:selectOneChoice value="#{row.bindings.RatingSubId.inputValue}"
                                      label="#{row.bindings.RatingSubId.label}"
                                      required="#{bindings.IndustryRatinEOView1.hints.RatingSubId.mandatory}"
                                      shortDesc="#{bindings.IndustryRatinEOView1.hints.RatingSubId.tooltip}"
                                      id="soc1" partialTriggers="soc2">
                    <f:selectItems value="#{row.bindings.RatingSubId.items}"
                                   id="si1"/>
                  </af:selectOneChoice>
                </af:column>
                <af:column sortProperty="Place" filterable="true" sortable="true"
                           headerText="#{bindings.IndustryRatinEOView1.hints.Place.label}"
                           id="c4">
                  <af:inputText value="#{row.bindings.Place.inputValue}"
                                label="#{bindings.IndustryRatinEOView1.hints.Place.label}"
                                required="#{bindings.IndustryRatinEOView1.hints.Place.mandatory}"
                                columns="#{bindings.IndustryRatinEOView1.hints.Place.displayWidth}"
                                maximumLength="#{bindings.IndustryRatinEOView1.hints.Place.precision}"
                                shortDesc="#{bindings.IndustryRatinEOView1.hints.Place.tooltip}"
                                id="it3">
                    <f:validator binding="#{row.bindings.Place.validator}"/>
                  </af:inputText>
                </af:column>
                <af:column sortProperty="RatingDesc" filterable="true"
                           sortable="true"
                           headerText="#{bindings.IndustryRatinEOView1.hints.RatingDesc.label}"
                           id="c3">
                  <af:inputText value="#{row.bindings.RatingDesc.inputValue}"
                                label="#{bindings.IndustryRatinEOView1.hints.RatingDesc.label}"
                                required="#{bindings.IndustryRatinEOView1.hints.RatingDesc.mandatory}"
                                columns="#{bindings.IndustryRatinEOView1.hints.RatingDesc.displayWidth}"
                                maximumLength="#{bindings.IndustryRatinEOView1.hints.RatingDesc.precision}"
                                shortDesc="#{bindings.IndustryRatinEOView1.hints.RatingDesc.tooltip}"
                                id="it4">
                    <f:validator binding="#{row.bindings.RatingDesc.validator}"/>
                  </af:inputText>
                </af:column>
              </af:table>
            </af:panelBox>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>

    Hi,
    Need to set partialSubmit true for CreateInsert and partialTrigger attribute for Commit button(Select Createinsert button for partialTrigger )

  • Executables not  found after copying oracle home

    Hi,
    I am cloning E-Business 11.5.10.2 on newly installed Red Had Linux 4.4. After copying oracle hoem frpm production server to test, i did not find executables in oracle_home/bin directory including sqlplus. I tried copying sqlplus from production server and then run sqlplus and found that their are libraraies missing from oracle_home/lib direcotyr.
    please help resolving this problem.
    Regards

    Hi hussein,
    recieved below error while relinking
    [oracle@ebiztest4dr scripts]$ cd $ORACLE_HOME/rdbms/lib
    [oracle@ebiztest4dr lib]$ make -f ins_rdbms.mk install
    /usr/bin/ld: skipping incompatible /san/apps/oracle/drtestdb/10.2.0/lib//libirc.a when searching for -lirc
    /usr/bin/ld: skipping incompatible /san/apps/oracle/drtestdb/10.2.0/lib/libirc.a when searching for -lirc
    /usr/bin/ld: cannot find -lirc
    collect2: ld returned 1 exit status
    thanks for your help.

  • Profit Center should not change after copying from Template

    Hi,
    I have a scenario wherein there is an operative project which has a profit center maintained at the project definition level. I copy the WBS structure on to the 2nd level from a template which has a different profit center maintained at the WBS level. My requirement is that the profit center maintained in the template should remain as it is after i copy the template to the operative project.
    As of now after copying the template the profit center changes to the one maintained at the project definition level after i save the operative project. Is there a way by which i can restrict the system from copying the profit center maintained at the project definition level to the 2nd level WBS (which is copied from the template)?
    Regards,
    Gokul

    Hi Mohamed,
    Thanks for your response but i already checked that note and it seems that it doesn't cater to my requirement. Presently i am checking with my ABAPer if we can use some user exit and get this done which i think will require considerable amount of time. In case you have any other suggestions please suggest.
    @ Abdul Khader : - I already tried all the possibilities using substitution. Would appreciate if you could suggest something else.
    Regards,
    Gokul

  • Message states that Camera Raw is not enabled after transferring data to a new MacbookPro

    Using photoshop and Bridge CS6.
    When I attempt to open a photo in Camera raw I receive this message Camera Raw is not enabled.
    "Camera raw requires that a qualifying product has been launched at least once to enable this feature.

    had to wipe and reload

  • UDEV touchpad not enabling after removing mouse

    Hi and thanks for reading,
    I have created udev rules
    ACTION=="add", SUBSYSTEM=="usb", ATTRS{idVendor}=="045e", ATTRS{idProduct}=="00cb", ENV{DISPLAY}=":0.0", ENV{XAUTHORITY}="/home/john/.Xauthority", ENV{ID_CLASS}="mouse", RUN+="/usr/bin/synclient TouchpadOff=1"
    ACTION=="remove", SUBSYSTEM=="usb", ATTRS{idVendor}=="045e", ATTRS{idProduct}=="00cb", ENV{DISPLAY}=":0.0", ENV{XAUTHORITY}="/home/john/.Xauthority", ENV{ID_CLASS}="mouse", RUN+="/usr/bin/synclient TouchpadOff=0"
    Now it works as expected when I plug in the mouse the touchpad disables. However when uplugging the mouse the touchpad does not enable again. I cannot for the life of me figure out why?

    Never mind, I have solved the problem. Searched "Synaptics" in My Computer. Opened up a folder labelled Synaptics. Selected InstNT. Right-Clicked; chose "run as administrator". Problem solved.

  • OIM 11g - User Not enabled After the job "enable user after start date"

    Hi,
    I have a future hired user in OIM whose start date is set in OIM. The status of the user in OIM is 'Disabled Until Start Date'.
    After the start date has passed and the scheduled job 'enable user after start date' is run, I see that the user is still in the status 'Disabled Until Start Date'. I re-run the scheduled job 'enable user after start date', this time manually, still the state of the user remains unchanged.
    Please help in troubleshooting as to find out the root cause of the issue and a workaround/solution, if possible.
    This issue is intermittent and has happened with quite a number of user. Any pointer would be helpful.
    Regards,
    Sudipto S.

    I agree with Nayan.
    One alternative approach can be to write your own custom scheduler which can overcome the limitation of OOTB scheduled job 'enable user after start date'. Let the OOTB job get executed first. After it, your custom scheduler should fire a simple SQL Query:
    SELECT USR_KEY, USR_STATUS FROM USR WHERE (USR_START_DATE > SYSDATE -1) AND USR_STATUS='Disabled Until Start Date';
    //Means those users who are supposed to get enabled today and are still not yet enabled and are in 'Disabled Until Start Date'. May be 2-3 user keys at max will come...
    As you said it happens only intermittently and not for all users... So, let the OOTB scheduled job take care of most of such users... And after it has finished, if any user still remains in 'Disabled Until Start Date', your custom scheduler should enable it via using tcUserOperationsIntf.enableUser(userKey);
    Using API is always better than database update... Because APIs trigger downstream provisioning workflows as well and not just updates OIM Database...
    Keeping your constraints in mind, I think it is the correct answer.

  • Runtime Service not Available after Copy

    Hi
    OWB 10g,
    Oracle DB 8.1.7.4.12
    I'm trying to copy the whole database, including all OWB and Runtime Repository and reload to another server.
    After that, OWB client works fine but when I try to connect Deployment Manager, the error massage shows: Runtime Service not Availabe. ( the Runtime connection properties are changed to match the new server). I then tried to manually start the runtime service, the error massage shows: Not available. And I then run Service_Doctor, it shows "Platform Service Not Available".
    For what I searched from metalink and here, the solution is always saying 'Reinstall the Runtime Service'.
    Is there any idea that I can make it work without reinstall because I don't want to start from scratch to redeploy and reload all of my data?
    I'm waiting on line.
    Thank you,
    Daming

    Hi Igor,
    I manually change table wb_rt_servuce_nodes with the proper hostname, service name, OWB home name. Also check the value in OWBRT_SYS.OWBRTPS, no problem. But Runtime service still not started. So I give up and then try to do it from scratch.
    I tried to reinstall all the repositories (OWB and runtime ) on the new server and still got the same problem.
    What I've done is drop all the repositories via Runtime Assistant and then done 'drop user rtr cascade' from sqlplus for all the target schemas and rtr/rtu. Then create new reopositories again. After that I restart the database , runtime service not started. Then I tried manually start it, failed.
    Anyidea? Should I reinstall the software?
    Thanks,
    Daming

  • Illustrator Files do not open after copying

    Hi there.
    I have a Power Mac G5. I had a problem with the machine, it was running too slow. So I copied all the data from the Hard Drive to an External Hard Drive. Formated the machine and again copied the data from the External Hard Drive to the Hard Disk.
    Now, the Illustrator files won't open up. I was using Illustrator CS3 before formatting and same after format.
    The error I get is " The file 'test.ai' is in an unknown format and cannot be opened."
    Is there anything that can be done to open the files... Cause I nearly have 100GB of .ai file.
    Thanks in advance.
    P.S.: If needed I can upload one of the .ai files here.

    Well this might have been done a little carelessly it may not have also but how long did it take to copy the 100 GB of files? If it took about an hour your are probably alright but if it took like four or five minutes then that would not be normal.
    The important thing when you do this type of copying as it is always noted that you back up your data that is copy it to your external hard drive and of course at the same time archive it to other types of media as you should be doing anyway.
    So of course you have copies on cd or dvd disks from which you can copy, correct? As of course you know that it is not unheard of for a disk to fail in which case you can lose your data.
    I know you did not do any of this and I am not rubbing it in just point out you should have it was not a joke all of us have had such difficulties but we were all afraid of losing our data so we back everything up.
    The good news is you can send even the reformatted disk to a disk recovery service like Apple and for about $1,000 and they can actually restore your disk even though you have reformatted it. Break a serious federal law and the Feds will do it free and use it as evidence in court.
    I am serious about services that can recover your data even though you have reformatted your disk it would cost you money.
    I make a suggestion for your future use do not reformat your disk next time but instead simply back it u and then remove it from your computer and store it somewhere buy a new more modern version and use that they are usually faster and hold more and they tend to crash less.

  • I got error 8: vi resource not found After copy the project to another location

    I copied the project folder in C: to D:
    I opened a .vi file in D: then closed LabView.
    I try to open the same .vi file in C:   I got :"LabVIEW Load Error Code 8 -   Could not find VI resource".
    I checked all the files in C:  no file have been modified.
    I'm using LabView 5.1 with Windows NT.
    Any help would be greatly appreciated.

    Suesong,
    This KB seems to suggest that the erro you are getting is a result of the Vi in question being compiled in a newer version of LabVIEW:
    http://forums.ni.com/ni/board/post?board.id=170&message.reply_to_id=240257
    Did you open it up in a newer versions and save it?
    Xaq

  • I Can't Paste Sequential Numbers After Copying

    Hi,
    So I have a PDF of numbers so when I select all, copy and paste it onto an excel sheet-all the numbers go into the first column and continue down.
    I run into issues when 2 numbers follow eachother. For example, if the first column of numbers goes like 1,2,3,4,5,6,7,8 and the 2nd column 9,210,11,12,13- when I copy this and paste it into excel, it copies into column A as 1,2,3,4,5,6,7,8,9,10,11,12,13 (going into cel A1,A2,A3 etc).
    I run into issues when the column on the PDF is 1,2,3,3,4,5,6,6 etc this pastes into column A of excel as 1,2,33,4,5,66 etc.
    Anyone else come across this before?
    Cheers

    See it doesn't happen on every computer. I do this logging into several computers in our network. Most computers are fine. Could it be a windows version issue?

  • QTPro shows reg# but not enabled after archive install

    I bought QT Pro when it was 7.0.3 & Pro features worked fine. Then I recently 'archive & installed' my OSX to fix other bugs. Now QT doesn't launch as Pro, even though my 7.0.3 registration # does come up in the registration section. I have not upgraded QT since then, not going to re-buy Pro over and over, and can confirm that it is still 7.0.3 I'm running. Any ideas? Please help.

    I think I figured it out. My ATI 9600Pro video card was missing some drivers after the archive/install. I read somewhere that archive/install doesn't necessarily archive eeeeverything.
    Anyway, when I launched the ATI monitor program (on a lark) it said 'yo, I'm missing a few things, load up that DVD driver disk again." So I did and badabing, problem appears to have been solved.
    QT still doesn't technically SAY it's pro still, but all the features are still there. So that's still a little wierd, but probably a different issue.
    So thanks all for the efforts. Hopefully this'll help someone else someday.

  • Bitlocker not enabled after deployment (Dell systems)

    I have been deploying to Dell systems, the TPM chips are active on the machines, these are OOB machines, do the deployment to Enable Bitlocker using TPM Only (SCCM 2012 w/MDT 2012 UDI) but when the machines boot up, it says Bitlocker protection is suspended,
    and if I go to turn it on, the Wizard fails to initialize, saying one or more drive protector keys needs to be available, etc.
    Not sure what's missing in my task sequence to get Bitlocker to encrypt the drive correctly.

    Hi,
    Please check smsts.log to find more information.
    The following blogs might help you to configure the Task Sequence.
    http://blogs.technet.com/b/simonmay/archive/2013/02/05/enable-and-activate-tpm-for-bitlocker-pre-provisioning-in-winpe.aspx
    http://en.community.dell.com/techcenter/os-applications/w/wiki/how-to-enable-trusted-platform-module-using-a-configmgr-2007-task-sequence.aspx
    (Note: Microsoft provides third-party contact information to help you find technical support. This
    contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.)
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Clips not playing after copy

    Hi,
    I maxed out an internal drive and copied all my iMovie events and projects to an external hard drive. I used the Finder to copy the files which I now realize was not the way to do it. The clips and projects are there in iMovie, but when I go to play a clip it turns black and doesn't play and the projects can't find the source video. What is the easiest way to resolve this issue. I don't have the original files from the internal drive as I trashed them. Help.
    Thansk,
    Ray

    Hi
    Moving Event's and Project's
    Connection - Either connect one Mac in Target mode to the other via FireWire. Or use an external hard disk !
    (Target-Mode - Start one Mac e.g. laptop - BUT keep T-key down during full up-start - Now a FW-symbol is jumping around the screen and it will work as an external hard disk when connected to the other Mac)
    A. The External Hard Disk - MUST BE - Mac OS Extended (hfs) formatted to work for Video. UNIX/DOS/FAT32/Mac OS Exchange works for most other things but not for Video whatever program is used (iMovie or FinalCut)
    B. Should be a FireWire one as USB/USB2 performs badly to me and especially when filling up
    C. Do never Move or Alter any folder named
    • iMovie Event's - or -
    • iMovie Project's
    on DeskTop/Finder - as this will result in iMovie losing connections to them and repair can be anything from hard to impossibly
    D. Moving and Copying must be done within iMovie application and Events to Events - and - Project's to Project's.
    E. Moving Project's to Event's - Do not work for me - I have to export project as a QuickTime movie then Import this into Events.
    Event's window can show two faces
    Like this
    or like this
    from one hard disk Event - You can move it to the other hard disk
    You can not (at least not me) move Event to Project or other way around only
    Event to Event and Project to Project
    Yours Bengt W

Maybe you are looking for

  • MyFi?? You need a special card for Verizon "3G" - Don't waste time, get ATT

    I spent time in line and got a Verizon 3G Ipad2 today. I was told at the store, "plug it into a computer with Itunes and select your plan..." My Ipad2 wont do that, I don't have a Wifi signal. So, after 5 hours on the phone with both Apple and Verizo

  • DVD OK on computer, not on DVD player

    Here is what I did: - Created a project in iMovie - Trashed iDVD preferences: /Users/YourName**/Library/Preferences/com.apple.iDVD.plist - Restarted the computer - More than 100G of disk space available on internal disk - Exported the project to iDVD

  • How will the Apple iMessage work?

    Hello everyone!!!!! I am just wondering how the imessage will work?  Will there be a user name/password? Do I need to have my iphone contacts mobile number listed under "iPhone" vs. "mobile" ? I contacted Apple last night but they are very closed mou

  • BA00 output type

    hello. with requirement 2, upon order confirmation output type BA00 can automatically be issued.  is there a setting so that everytime an order is changed, BA00 is automatically re-issued? thanks.

  • Itunes support? does it exist?

    I have spent too much time trying to find support for itunes. Both videos I have downloaded skip and crash. I am running windows vista, I DO NOT HAVE problems with any other videos, JUST VIDEOS I download from itunes. I paid 15 bucks for this "video"