Can you see a timeline of a sequence you've loaded into the viewer?

Greetings Finalcutters,
OK, another query about how to access an Avid feature in Final Cut --
I find it very useful to edit from one sequence onto another. But I want to be able to do this in a frame-accurate manner. Best would be to have the sequence timeline available when it's loaded in the viewer.
Right now, to edit only part of a sequence onto another, I must load the sequence into the canvas, make in and out points on the timeline, then load it into the viewer, bring up new sequence, and make the edit.
But what if I then want to tweak my in and out points? Groan.
Any ideas, or is this just another thing to tell Apple about in their feedback page?

I just started getting this message too.  Just started the last couple of days.  It doesn't give a time that it was used.  All it says that "appleid" was used to sign in to facetime on Macbook.  My Macbook is not named "Macbook."  It also doesn't correlate to times when computer is being used.

Similar Messages

  • Where can I see my camera roll's photos which already backup into the icloud on my win7 pc ? I tried open in icloud control panel but only can see my photo's stream

    Where can I see my camera roll's photos which already backup into the icloud on my win7 pc ? I tried open in icloud control panel but only can see my photo's stream

    leonsee94 wrote:
    Where can I see my camera roll's photos which already backup into the icloud on my win7 pc ?
    You cannot see photos backed up in iCloud on your computer.
    Camera Roll photos backed up to iCloud are still in your Camera Roll on your iPhone.
    You need to regularly sync the photos to your computer. (then you can see them on your computer).
    -> http://support.apple.com/kb/HT1296
    then delete them from your Camera Roll.
    You can sync the photos you want on your iPhone back to your iPhone using iTunes.
    -> http://support.apple.com/kb/HT4236

  • MSVS-2010 users: Can you *PLEASE* verify whether the "View Call Hierarchy" feature works for you?

    I recently decided to educate myself in the intricacies of plugin development and have been experimenting with the set of Samples provided. Supposedly, Visual Studio 2010 (the official IDE for this development) has a very useful feature named "View Call Hierarchy", as described here:
    http://dhondiyals.wordpress.com/2011/07/20/call-hierarchy-a-handy-feature-in-visual-studio -2010/
    My problem is that that feature never works for me in C/C++ projects. Regardless of what function name I right-click, I always get this error message:
           "A function with the name 'xyz' could not be located"
    Note: For C# projects, the feature works perfectly.
    I have seen on the net some suggestions, from "remove the SDF (Intellisense) files" to "Reinstall Visual Studio".
    I have 5 Visual Studio Pro installations in different computers and the feature does not work ever, in any one of them. I have tried with the Adobe source code, I have tried to create a basic MFC project and the feature does not work. I have tried C and C++ and it does not work.  Well, you get the idea.
    Can you folks share your experience with this issue?
    TIA

    Karl Heinz Kremer wrote:
    Based on the Acrobat XI SDK documentation, MSVS 2010 is NOT supported for
    plug-in development:
    http://livedocs.adobe.com/acrobat_sdk/11/Acrobat11_HTMLHelp/Plugins_Cr eatingSimplePlug.34.2.html
    Karl Heinz Kremer
    From your link:
    "The project files for the sample applications are created and supported only in the listed compiler versions."
    The above is wrong. I have dowloaded the following:
    - Acrobat SDK 9.1: Comes with Visual Studio 2008 project files.
    - Acrobat SDK X:    Comes with Visual Studio 2009 project files.
    - Acrobat SDK XI:   Comes with Visual Studio 2010 project files.

  • Can you help me interpret the following lines in UPDATE rule?

    Hi,
    Can you help me interpret the following lines in UPDATE rule?
    1. What is the role of role of u201CCHANGING RESULT.u201D and u201CCHANGING lc_local_value.u201D?
    2. What is the role of the CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY', in particular the Exporting and Importing parts?
    3. Can I say that u201CCOMM_STRUCTURE-ORDER_VALu201D in the subroutine is passed to u201Clc_document_valueu201D in the u201CFORM loc_curr_convertu201D; and further passed to u201Cforeign_amountu201D in the u201CCALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY'u201D?
    4. Finally, what becomes of my original u201CActual Goods receipt quantityu201D( 0GR_QTY ) which I am writing the routine for? I donu2019t see any where in the code that it is being referred to? Do any of these codes affect the value of 0GR_QTY?
    5. Also, if there are 3 different subroutines in the INCLUDE and I am making the change described in #4 above, how do I know which of the 3 subroutines to call?
    ===============================
    ===============================
    So I am reviewing a transfer routine in for u201CActual Goods receipt quantityu201D and routine an INCLUDE statement: INCLUDE RS_BCT_MM_UPDATE_RULES.
    The update rule also includes the following properties to run the following subroutine in the Include:
    IF u2026..
    perFORM LOC_CURR_CONVERT
               USING    COMM_STRUCTURE-ORDER_VAL
                        COMM_STRUCTURE-DOC_DATE
                        COMM_STRUCTURE-ORDER_CURR
                        COMM_STRUCTURE-LOC_CURRCY
                        COMM_STRUCTURE-EXCHG_RATE
               CHANGING RESULT.
    I verified in the INCLUDE (RS_BCT_MM_UPDATE_RULES) and the subroutine is as follows:
    FORM loc_curr_convert
      USING    lc_document_value
               lc_date
               lc_document_currency
               value(lc_local_currency)
               lc_rate
      CHANGING lc_local_value.
    conversion of lc_rate from floating-point to decimal. Necessary for *
    call of CONVERT_TO_LOCAL_CURRENCY.
    data lc_rate_dec type p decimals 5.
    lc_rate_dec = lc_rate.
      IF lc_document_currency = lc_local_currency
      no conversion necessary -> Main case 1
        AND NOT ( lc_document_currency IS INITIAL
               OR lc_local_currency IS INITIAL ) .
        lc_local_value = lc_document_value.
      ELSEIF NOT ( lc_document_currency IS INITIAL
      OR lc_local_currency IS INITIAL OR lc_date IS INITIAL ) .
      conversion necessary with lc_date -> Normally not possible
        CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY'
          EXPORTING
            date                 = lc_date
            foreign_amount       = lc_document_value
            foreign_currency     = lc_document_currency
            local_currency       = lc_local_currency
            rate                 = lc_rate_dec
          IMPORTING
          EXCHANGE_RATE        =
            local_amount         = lc_local_value
          EXCEPTIONS
            NO_RATE_FOUND        = 1
            OVERFLOW             = 2
            NO_FACTORS_FOUND     = 3
            NO_SPREAD_FOUND      = 4
            DERIVED_2_TIMES      = 5.
        IF sy-subrc NE 0.
      message a802 with lc_date lc_document_currency lc_local_currency
                        sy-subrc.
        ENDIF.
      ELSE.
      if conversion not possible -> assign target values
        lc_local_value = lc_document_value.
        lc_local_currency = lc_document_currency.
      ENDIF.
    ENDFORM.

    HI,
    Thanks so much the explanations.
    I just verified again on our dev system and the update rule for 0GR_QTY (Actual goods receipt quantity) include the following:
        perFORM QUANTITY_CONVERT
           USING    COMM_STRUCTURE-CPQUAOU
                    COMM_STRUCTURE-po_UNIT
                    COMM_STRUCTURE-base_uom
                    COMM_STRUCTURE-numerator
                    COMM_STRUCTURE-denomintr
           CHANGING RESULT
    Now, in the include, I also found:
    FORM QUANTITY_CONVERT
      USING    QC_SOURCE_VALUE
               QC_SOURCE_UNIT
               VALUE(QC_TARGET_UNIT)
               QC_UMREZ
               QC_UMREN
      CHANGING QC_TARGET_VALUE.
    i.  Does it mean it actually does quantity conversion?
    ii. If you have access to the INCLUDE I will appreciate some hints on what the subroutine QUANTITY_CONVERT is doing. It does not appear do to be saying anything about quantity conversion; but it is supposed to be doing something with the parameters being passed from the update routine.
    iii. In your response to #5, after all the computation in the INCLUDE, what comes back to the Update rule  i.e. what comes back to become the value of 0GR_QTY?
    Is it the u201CRESULT.u201D in the update rule or u201CQC_TARGET_VALUE.u201D in the subroutine in the INCLUDE.
    iv. So, am to create an Update rule for 0PSTNG_DATE and the source is BUDAT; and I need to write a routine using the include INCLUDE RS_BCT_MM_UPDATE_RULES.
    I looked through the INCLUDE and identified all the subroutines in this INCLUDE as follows:
    QUANTITY_CONVERT
    LOC_CURR_CONVERT
    GET_WEEK
    WEEK_DAY
    QUARTER_DAY
    --Does it mean that to use this subroutine, I can only use the USING parameters of one of these listed subroutines?
    --Also, does it mean that because 0PSTNG_DATE is a date, I can only use one of
    GET_WEEK
    WEEK_DAY
    QUARTER_DAY
    --Or, are there other includes to be used for 0PSTNG_DATE
    Thanks

  • Can you play Diablo with the PC disk or is there a separate disk just for Mac?

    Can you play Diablo with the PC disk or is there a separate disk just for Mac?

    Hi DJNIKKo,
    I have the Diablo III install DVD - it's both Mac & PC install.
    But warning - many players (on a PC board) dislike the game & stopped playing it already...
    I played thru all the chars on 'normal' and started playing the 2nd difficulty, but running away (=being chased) by enemies is NOT my style of playing a game...
    Check some youTube videos & see if that's what you want to do...
    The ratio of hit points (HP) for enemies is:
    1. normal - 20 HP
    2.nightmare - 6000 HP
    3.**** - 150 000 HP
    4.inferno - 1 000 000 HP
    This is for the same enemy...
    (I have the Diablo 3 walkthru guide).
    So this game is't for me...

  • Can you print labels to the side on stacked bar charts in Crystal

    can you print labels to the side of the bars on stacked bar charts in Crystal?

    Hi Ginger,
    I don't see an option to do that in CR. Is there a specific reason why you want them on the sides or is it just a client requirement?
    Try posting this to the Crystal Reports Idea Place.
    -Abhilash

  • My touchscreen blacks out while on a call so I can't multitask. If I am on a call and a new call comes in, I can't see who is calling or even think of answering because the screen is blacked out.

    My touchscreen blacks out while on a call so I can't multitask. If I am on a call and a new call comes in, I can't see who is calling or even think of answering because the screen is blacked out.

    Thank you so very much! My husband is in Afghanistan and calls at different times. If I am on a call and can't answer him it could be days before I hear from him again. I never thought to just restart my phone! Duh...this is my first smartphone so I am learning. All day people were calling while I was on the phone but I couldn't answer. Thank GOD none of the calls were my husband because it would break my heart if I missed his call. Thank you again and GOD bless you! Ashley Combahee

  • Can you tell me about the iphone which imei is 35**********976. That is locked or unlocked iphone?

    Can you tell me about the iphone which imei is 35**********976. That is locked or unlocked iphone?
    <Personal Information Edited by Host>

    This is a user-to-user support forum. We can't tell you anything. However, if you call AppleCare, they should be able to tell you. See the Contact Us link at the bottom right of every page.

  • Hello, we have both Creative Cloud and Creative Cloud for teams. Can you help me with the difference and if i need to have both?

    Hello, we have both Creative Cloud membership and Creative Cloud for team. Can you help me with the difference and if i need to have both? We have 9 employees that are using it. Just not sure if i'm paying for something i don't need.
    Thank you

    Please refer to Creative Cloud Help | Creative Cloud / Common Questions
    CC is for retail use with 20 GB of storage space, CCT is where number of seats are purchased & assigned by one program admin where each seat gets 100GB of storage space.
    You can not have both the CC & team in one account as it will only provide you added storage space of 120 GB but you can activate the CC any of them or either of them twice as CC is based on Adobe ID.
    Regards
    Rajshree

  • Can you help me understand the use of the word POSITION in TR and CFM?

    Hi,
    I am trying to have a view of typical BI reports in TR and TM/CFM so through my research I came to the following link:.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/62/08193c38f98e1ce10000000a11405a/frameset.htm
    My problem on this link and other postings on this site seem to be the same. Can you help me understand the use of the word POSITIONS in these context:
    1. Our client has asked for financial transaction reports in BW, such as position of Borrowings, Investments and Hedge Operations (TM data).
    2. I have a requirement on, some reports related to Money Market (Fixed Term Deposits, Deposits at Notice) something on FSCM-Treasury and Risk Manager. These reports will be similar to that of Loans, i.e. Position statement, flow statement, etc.
    3. The set of position values for a single position or a limited amount of positions can be reported by transactions TPM12 and TPM13 in R3.
    4. 0CFM_C10 (Financial Positions Cube)
    Do you have some simple report outputs to help clarify how the word POSITION is used in such environments?
    Thanks
    Edited by: AmandaBaah on Feb 15, 2010 4:39 PM

    If I future buy 10 shares in company at £1 per share - at the end of the day my potential value is £10
    The next day the shares drop tp £0.9 per share - I have a negative position - my shares are only worth £9
    I haven;t bought them yet - but I have a negative position - ie if things stayed as they are - I am going to realise (ie end up with)  a loss
    Now you can use this for loans and foreign exchange banks as well...

  • How can you delete songs off the ipod without deleting songs off your itunes library?

    How can you delete songs off the ipod without deleting songs off your itunes library?  My son's ipod automatically synced all the songs in my library to his ipod which he now wants to get rid of.  Is there a way to delete them all without me having to erase my library?

    Do not select the songs to sync, then sync.

  • Can you please CLEAN up the podcasts that are no longer in service or being maintained? It's very tedious to click on someone's podcast to find that it hasn't been updated in 3 years.

    Can you please CLEAN up the podcasts that are no longer in service or being maintained? It's very tedious to click on someone's podcast to find that it hasn't been updated in 3 years.

    This is a user forum and it is best to post these inquiries to Apple Feedback: 
    http://www.apple.com/feedback/
    You are right, a lot of older dead podcasts do not belong in the podcasts section. But there is still a lot of these podcasts that have good information and deserve to still be listed. For example there is quite a few photography lesson based podcasts in which you can get good information from different sources.

  • I have an ipod touch and the contacts icon is missing.  How can you add it to the home screen?

    I can't find the contacts icon... How can you add this to the home screen

    Every iPod touch has a contacts icon. It might be hiding. You can try Settings > General > Reset > Reset Home Screen Layout.

  • How can you add cds on the new i-tunes

    Like a idiot I uploaded the new i-tunes softwear. Its ******* **** and now cant add any new cds to my libary of 3500 cds. You cant create new folders to name after the artist or add the new cd to the folder. I dont use use i-tunes downloads as will only buy physical albums. Can you down load the old i-tunes softwear.

    In preferences advanced there are 2 options
    Preference
    Explanation
    iTunes Media folder location
    To change where songs and other files you import into iTunes are located, click Change.
    To change back to the original location for files (Home/Music/iTunes), click Reset.
    Keep iTunes Media folder organized
    Automatically put imported music into folders for album and artist.
    Copy files to iTunes Media folder when adding to library
    Copy an item to the iTunes Media folder when you drag the item to the iTunes window or choose File > “Add to Library.”
    If you want items to appear in iTunes but also remain in their original location, deselect this checkbox. For example, you can keep music imported from CDs on your computer’s hard disc, and save your video files on an external hard disc.
    Pressing the Option key while dragging temporarily reverses the current checkbox setting.

  • How can you get back to the registration screen to change information once registration is complete

    how can you get back to the registration screen to change information once registration is complete?

    You don't have to. Just go to Apple's Express Lane and add products.

Maybe you are looking for