Just can't figure out X

Not sure this is a question.  I've been editing for 30 years.  I've learned mulitle linear systems, media 100, Premiere, Avid, Final Cut 7, plus After effects, Photoshop etc.  I've edited 3 projects with Final cut X and still feel like I'm going crazy fighting with it.  They have created something that in their efforts to help they make it virtually impossible to make easy changes on a project that has a lot going on.  I'm leaving for a internationl shoot tomorrow and rather than getting ready, I'm fighting with making the simplist changes to a project.  Is Apple going to leave us with this product as is??????

your in the wrong forum, the folk here, tend not to be interested in FCP X
there are plenty resources for tutorials for FCP X on the web  > IZZIVIDEO
go here  for specific help   > FCP X

Similar Messages

  • Bizarre Server syncing quandary that I just can't figure out! Help?

    My work computer has been a PC, and it is on its last leg (the blue screen of death). Acting proactively, I went out and bought a new computer (an iMac). All of my computers are Mac's, so I was quite happy to transition at work from PC to Mac.
    I had our IT Department set the new iMac up on their server (mail, files, etc), so that all my files remain backed up as they always were when I was using my PC. Our IT Department does not have a lot of background experience setting Mac's up on their server, but alas, they were able to do it, and all was perfect (or so I thought). My mail works fine, my MobileMe syncing works fine, etc. When reviewing my files (Office Documents), however, I found an interesting anomaly that I can't seem to understand. Btw, the software issue in question is Office for Mac 2011.
    I decided to check the effectiveness of the syncing by opening both my PC and my iMac. I modified a "Word" file on my PC (all files live on the work server), and as soon as I clicked "save", I was able to watch the file instantly update on my iMac as well (thus insuring me that the server was doing as it was supposed to and syncing my documents between the two computers). I'm still using the PC as I need to finish up a few things with it (hopefully before it crashes on me permanently).
    Here is where the oddity comes in. While this updating and synchronization appears to work perfectly for all "Word" files, the same is not so for "Excel" files. In fact, after modifying an Excel file on my PC, I again watched the iMac to see if that same file would update and sync. It did not. For some odd reason, "Word" files modified on my PC will instantly sync and modify on my iMac, however, when modifying Excel files on my PC, they will not update and sync with the iMac. Not sure why I am having this issue?
    If none of my Office files were syncing, than I'd probably question whether or not our IT Department set me up on their server correctly. However, given that all "Word" files appear to sync appropriately, I'm not sure I understand why the same is not true for "Excel" files.
    I thought I'd throw the question out here, so that perhaps I can go into work tomorrow with some answers when I re-approach our IT Department with this problem. Any help would be appreciated.
    Thanks in advance,
    Dan

    Problem resolved. I figured out the problem. Naturally it was a PC issue. Now that I no longer have a PC, all problems are resolved!

  • Simply if-statement I just can't figure out...

    Well, It's late and I'm very tired... so I just can't get the simpliest of things working right now... so, please, if you can get my brain to understand the following:
    Why can't I compare the string object right?! I just can't get it true in some cases where I thought I could... is it because it an object?! What am I comparing really?!?!
    I've forgot how to code... to many sad news...
    Please, see below for the examples... thanks!
    String test="1";
    if((test)==(test)) { // true }
    String test="1";
    if((test+1)==(test+1)) { // NOT true here!!! WHY?}
    char test='1';
    if((test+1)==(test+1)) { // true }
    int test=1;
    if((test+1)==(test+1)) { // true }
    String test="1";
    if(((test.concat("1").toString()))==((test.concat("1").toString()))) {
         // NOT true here!!! WHY?
                        

    [soapbox]
    The == should only be used to compare primitives and actual object instances (ie. "address" of the object).
    The equals() method should be used to compare objects of any other type (if implemented).
    [soapbox]

  • I want to replace code between 2 comments on many files Just can't figure out to do it.

    There is code between 2 comments I want to replace. For example <!-- #header --> CODE <!-- #/header -->
    The problem is that there is some discrepancy in the code in each and every file. Its a header I wanted to change on a html website I thought the best way would to to use the replace function
    But each file is a little different in the code. So Its just not working. All the code between these two comments have to be changed to the same block of code.
    I tried using regular expression I just can't understand it.
    I tried you /w /W but it just wont work.
    Why is there not simpler option. Like <!-- #header --> * <!-- #/header --> and it replaces everything in between The help file should have atleast given an example of various possibilities.

    ((\s|.)*?)
    (...) - Locigal grouping of the expression
      \s  - Matches any white-space character
      |   - Logical OR
      .   - Any character (except \n newline)
      *   - Match at least 1
      ?   - Forces minimal matching
    See this cheat sheet http://www.cheatography.com/davechild/cheat-sheets/regular-expressions/

  • Help, I just can't figure out this code or what to do to make it work

    ok, what i'm trying to do is the following: I created a class called Enrollement, in that class I put in an array of 30 objects to hold the places of 30 names that I used Scanner to bring in from a text file. Ok, that part of the code alone works fine. After that, I know want to write a function that will count the number of times each letter (a-z) appears in the first and last names in the class that are held in that array. I have been working on this for a while making changes doing a bunch of stuff but i keep getting errors with the second part that I honestly don't know how to fix or what i'm doing wrong. I am very new to Java. IF/when anyone responds, please dumb down your answers as much as possible so that I can understand what you are saying, I just have no idea what the errors mean or how to make this program work. my code is below:
    import java.util.Scanner;
       import java.io.File;
        class Enrollment{
           public static void main(String [] args)throws Exception{
             Person [] name = new Person [30];
             Scanner sc = new Scanner(new File("names.txt"));
             while (sc.hasNext()){
                String lastName = sc.next();
                String firstName = sc.next();
                sc.nextLine();
                System.out.println("Name: " + firstName + " " + lastName.substring(0,lastName.length()-1));
           public int chararcterCount(char c){
             int count = 0;
             for(int i = 0;i<30;i++){
                Person p = Person ;
    count = count + p.charCount(c);
    return count;
    public static void main(String [] args)throws Exception{
    Enrollment e = new Enrollment();
    e.print();
    System.out.println("Letter a appears " + e.characterCount('a') + times);
    keeps telling me that public static void main.... is already defined and i know that but once i delete that part from program i just keep getting more errors later and i just have no clue how to make this all work

    the program is supposed to count the number of times
    a certain letter appears in the first and last names
    of the class.I was asking about the particular code snippet you posted, not about the program.
    ....p.charCount is supposed to count the
    number of times that character appears, or at least
    that's what i want it to do, Does it do that? Did you test it? You should write a main method that just constructs a Person object and then call its charcount method for vairous characters--one that appears zero times, one time, and multiple times--and see if you get the right results.
    i'm not too sure of the
    rules aorund here and i don't know if this is taboo,
    but would it be possible tot talk to you in real time
    on AOL Instant Messenger or somethingNo, most people here (myself included) will not do that. It denies others the chance to learn from your problem, and prevents others who might help you from participating in the conversation.

  • How do I clear apps after I've updated them. They show open, I just can't figure out how to clear them...

    Updated to ios7, but now I can't clear them out of the apps file.

    Currently, there is no way to remove them from the App Updates tab of the App Store. It seems that this is normal and expected behavior in iOS 7 now.

  • We want to transfer the music library on our Mac to a second ipad without transfering any other data.  we share an itunes account and I just can't figure out how to get the music onto the new pad

    Hello friends
    We are trying to move our music library stored on the Mac to a second ipad.  We have already set up the second ipad and are only interested in getting select music onto the second ipad.  When we plug the ipad into the imac and connect to iturnes it wants to set up or restore the second ipad.  We're afraid if we do this it will remove all current information on the second ipad.  Thanks

    Did you ever resolve the iCloud problem.I am in the same position and its driving me mad!!! If you have a link to an solution I would appreciate it.

  • Can't figure out how to use home sharing

    Since the latest couple iTunes updates, my family and I can not figure out how to use home sharing. Everyone in our household has their own iTunes, and for a long time we would just share our music through home sharing. But with the updates, so much has changed that we can no longer figure out how to use it.
    I have a lot of purchased albums on another laptop in the house, that im trying to move it all over to my own iTunes, and I have spent a long time searching the internet, and everything. And I just can't figure out how to do it. So.... how does it work now? I would really like to get these albums from my moms iTunes, onto mine. I would hate to have to buy them all over again.
    If anyone is able to help me out here, that would be great! Thanks!

    The problem im having is that after I am in another library through home sharing, I can't figure out how to select an album and import it to my library. They used to have it set up so that you just highlight all of the songs you want, and then all you had to do was click import. Now I don't even see an import button, or anything else like it. So im lost... I don't know if it's something im doing wrong, or if our home sharing system just isn't working properly.
    Thanks for the help.

  • Can't figure out what is the code

    Hi
    I got following macro that will help me to run certain transaction.
    I just can't figure out where comments ends and where code starts so I was unable to run it for like 3 hours now.
    In other words
    I am trying to use Excel Macro that will get to active transaction in SAP and do waht I have recorded.
    'SAPGUI Macro for updating SAP from Excel data 'Prerequisites: '1. Script Recording and Playback from the SAPGui must be enabled by admin '2. The Excel list must be set up from top left corner of a worksheet '3. The worksheet with data must be the active sheet '4. There is no error handling. Build it yourself! '5. The script will update the active (current) SAP transaction'Instructions for use 'Record a macro of your update actions. 'Paste the session.findById stuff between the <== and ==> markers'Edit the literal values and replace with Trim(CStr(objSheet.Cells(x, y).Value)) 'where x and y are the row and column counters'Open up your Excel sheet with data (row 1 is ignored here) 'Fire the macro! '===========BEGIN BOILERPLATE=================== REMSet up connection to the SAP screen: If Not IsObject(application) Then Set SapGuiAuto = GetObject("SAPGUI") Set application = SapGuiAuto.GetScriptingEngine End If If Not IsObject(connection) Then Set connection = application.Children(0) End If If Not IsObject(session) Then Setsession = connection.Children(0) End If If IsObject(WScript) Then WScript.ConnectObject session, "on" WScript.ConnectObject application, "on" End If REMSet up connection to the Excel data to be keyed into SAP: Dim objExcel Dim objSheet, intRow, i Set objExcel = GetObject(,"Excel.Application") Set objSheet = objExcel.ActiveWorkbook.ActiveSheet session.findById("wnd[0]").maximize
    '===========END BOILERPLATE=====================
    'REM Example: Mark material for deletion in Plant using MM06 For i = 2 to objSheet.UsedRange.Rows.Count     'Assuming there is a header rowREM Find a cell and put its value in: REM Note: The section of the Script shown below can be recorded ' and edited to pick data from the Excel sheetstrCN = Trim(CStr(objSheet.Cells(i, 1).Value)) strWerks = Trim(CStr(objSheet.Cells(i, 2).Value)) '<== session.findById("wnd[0]/usr/ctxtRM03G-MATNR").text = strCN session.findById("wnd[0]/usr/ctxtRM03G-WERKS").text = strWerks session.findById("wnd[0]/tbar[0]/btn[0]").press session.findById("wnd[0]/usr/chkRM03G-LVOMA").selected = false session.findById("wnd[0]/usr/chkRM03G-LVOWK").selected = truesession.findById("wnd[0]/tbar[0]/btn[11]").press 'session.findById("wnd[0]/tbar[0]/btn[0]").press '==> Next

    Ok macro works and triggers actions from recorder. I was doing it with hope I will select data in SAP and paste in Excel AND/OR export file from SAP with data.
    If I record select column and then copy it. Script is recorded until selection . It ignores copy (i tried use mouse right click and copy AND manual alt+F12 and then copy from context menu)
    When I export recorder does open export window but does not writes the line relevant to clicking save.
    I found such bits
      'Choose the export format
      session.findById("wnd[1]/usr/subSUBSCREEN_STEPLOOP:SAPLSPO5:0150/sub:SAPLSPO5:0150/radSPOPLI-SELFLAG[1,0]").select
      session.findById("wnd[1]/tbar[0]/btn[0]").press
    'Choose the export filename
      session.findById("wnd[1]/usr/ctxtDY_FILENAME").text = "test.txt"
      session.findById("wnd[1]/usr/ctxtDY_PATH").text = "C:\Temp\"
    'Export the file
      session.findById("wnd[1]/tbar[0]/btn[0]").press
    But they dont seem to be relevant to my previous macro.
    Any quick fix to get data out of Excel

  • I downloaded a book on iTunes with my MacBook Pro and can't figure out how to open on my computer.  How do I do this?

    I downloaded a book on iTunes with my MacBook Pro and want to read the book on my computer.  Just can't figure out how to do it.  Do I need a program to read books on the MacBook first or is this something I can get in the app store?
    Any help is much appreciated.
    Thanks!

    You need an .epub reader.

  • Can't figure out how to insert an html within my template

    I've searched, but perhaps I am not using the correct terminology. I apologize if this has been addressed elsewhere.
    We have a vendor who is trying to mimic my webpage for our customers who sign on to her service. My problem is that I don't like having versions of our webpage outside our organization because I'll have to get them to update every time I make a change to our page. I know it will be forgotten at some point. What I'd like to do is set up a page on our site and insert their html content page within my template framework. There is a form that needs to link to their site so it needs to live on their server. I tried inserting an html, but it didn't work. I know in the olden days I used to be able to do this in PageMill. Now, I just can't figure out how to do it. Does anyone know the secret?
    Here is a sample page on my site showing what I'm trying to do: http://www.franklinebranch.com/TEST.html. I'm using DW CS5.
    Thanks for any suggestions. Anna

    That's what I was afraid of. Is IFrame a separate program?
    This is the vendor page: https://secure.powerpay.biz/r/fsb.aspx

  • Back to My Mac - can't figure out NAT stuff

    So I'm far from technical...I just can't figure out how to get Back To My Mac (BTMM) to work. I am setting this up from home now...
    I have walked through the BTMM manual:
    I start in AirPort Utility and select my Base Station.
    To be able to see the "Internet" button at the top (and AirPort, Printers, Disks and Advanced), I need to first select "Manual Setup".
    I click "Internet" as it says to do in the BTMM manual. Then there is only an "Internet Connection" tab. So to get DHCP and NAT to appear, I need to change the Connection Sharing drop-down from "Off (Bridge Mode)" to "Share a public IP address". Once I do that, the NAT tab appears.
    So I click NAT and then make sure 'Enable NAT Port Mapping Protocol' is checked (it is already).
    Then I click the Update button in the lower right.
    What I get then is a notice:
    'Correct the 4 problems below before updating this base station.
    Problem:
    DHCP Beginning Address
    DHCP Ending Address
    Allow SNMP over WAN
    Allow configuration over Ethernet WAN port'
    Then when I select any of those 4 problems, different notices appear at the bottom. Thing is, I have no idea how to fix any of them, and the BTMM manual gives no clues how to fix this.
    Does anyone have any advice?
    Thanks!

    I have the same problem. From as far as I can see, there isn't any reason to have the SNMP over WAN option checked. The DHCP beginning and ending addresses have something to do with how the airport assigns IP addresses to the computers on the network. I have a theory, but I need some backup. I think if I disable the DHCP on my modem and use the Airport as my DHCP server and enable NAT, it should work. Can anyone help out with this?!

  • Can't figure out whats wrong with this IF statement

    Hey.
    I must be tired cause I just can't figure out why this IF statement doesn't work. It's probably something silly but please help me get it right. The user is prompted with a form (textfield) and I'm gonna check if its the right password (this is not the reason im doing this but it works good for this example).
    if(displayable == form){
              String correctPassword = "abcd";
              System.out.println("Input: " + textfield.getString());
              System.out.println("Correct: " + correctPassword);
              if(textfield.getString() == correctPassword) {
                   System.out.println("Password is correct");
                   Display.getDisplay(this).setCurrent(mList);
              else {
                   System.out.println("Wrong password");
                   destroyApp(true);
                   notifyDestroyed();
    }Even though i enter the correct password, it still thinks it is incorrect. This is how the WTK compiler outputs the above statement.
    Input: abcd
    Correct: abcd
    Wrong passwordObviously the passwords DO match, so what am I doing wrong?

    The == comparison operator returns true for equal primitives OR for variable references to the same object.
    Classes (usually) override the .equals (Object obj) method inherited from Object to return true when objects of the class are essentially equivalent.
    Run this java code segment and try to understand the output.String aStr = "A string";
    String bStr = aStr;
    if (aStr == bStr) System.out.println ("== true");
    else System.out.println("== false");
    if (aStr.equals (bStr)) System.out.println (".equals true");
    else System.out.println(".equals false");
    System.out.println();
    bStr = new String ("A string");
    if (aStr == bStr) System.out.println ("== true");
    else System.out.println("== false");
    if (aStr.equals (bStr)) System.out.println (".equals true");
    else System.out.println(".equals false");
    System.out.println();
    bStr = new String ("Some String");
    if (aStr == bStr) System.out.println ("== true");
    else System.out.println("== false");
    if (aStr.equals (bStr)) System.out.println (".equals true");
    else System.out.println(".equals false");Ask again if it's not clear enough. But first, read the API for Object.equals (Object obj) to understand the contract of .equals (...)
    db

  • Instapaper- can't figure out how to read page offline

    Can anyone help me with how to read a web article offline with Instapaper Free? I used the Instapaper "read later" bookmarklet, which appeared to save the story, but I can't figure out how to access the text version offline.

    Hi, thanks for taking time to reply, and I'm sorry for confusion of the two types of script. The only reason I am using shell script to test IP is I haven't figured out how to test it with Applescript. I will use only Applescript once I get it all figured out, as I undeerstand shell script even less than I understand Applescript.
    The begining script writes user name and email address to a plist from user input, then runs the above script to test and send mail. I just can't figure out how to have mail "make new message" with the "username" and "emailaddress" values already contained in the plist. I have seen that I can't use "property list file" unless it is directly under "tell application system events", but I am stuck on how to do this, and have mail use the values. Thanks again
    tell application "Mail"
    set theName to value of property list file item "username" of p_list --this is what I've been trying to figure out.
    set theAddress to value of property list item "emailAddress" of p_list --p_list path is at the begining of script.
                                 set newMessage to make new outgoing message with properties{visible:true, subject:"Your IP Address has changed",content:"Your Current IPAddress is: " & Current_ipAddress}
                              tell newMessage
      make new to recipient at end of to recipients with properties {name:theName,address:theAddress} --This is where I'm trying to use them
                              end tell

  • If I open a photo in "preview", multiple photos open. I just want to open one, but can't figure out how to do it.

    I keep multiple photos in a desktop folder to be quickly accessed by using Preview. But when I try to open ONE photo, it opens multiple photos. Can't figure out how to display just the single one that I select.  OS 10.7.2

    This is the resume feature of Lion. The last state of the application is saved when quitting (i.e last pictures viewed in Preview, last videos viewed in Quicktime etc).
    You can switch it off for Preview by copy and pasting the following in to the terminal application
    defaults write com.apple.Preview NSQuitAlwaysKeepsWindows -bool false

Maybe you are looking for

  • Scanning from HP 6500A+ to MacBook Pro

    I have a new HP 6500A+ all-in-one printer and cannot get the scanning option to work.  I spent a long time on the phone with the very patient HP support guy who had me installing and uninstalling and reinstalling drivers and software, but he could no

  • Selective Polling in the Sender File Adapter

    Hi, I have the following requirement 1) File X is placed in the directory which is the source file for the sender adapter to poll 2) File X is appended regulary with data until it is polled. During this appending the sender adapter should not poll th

  • MBAM - SCCM 2012 Reports - Error: the 'MBAM Policy' view does not exist

    Hi I have installed MBAM with SCCM 2012 integration. A single server install with SQL server 2012. Mostly it has gone smoothly and laptops are being encrypted and pins stored and recoverable. The problem I have is reports are not showing. I get the f

  • Migration from SRM 5.0 Classic to SRM 7.0 ECS Pricing & Taxation Strategy

    Hello All, We are Upgrading from SRM 5.0 Classic to SRM 7.0 Extended Classic Scenario now. In SRM 5.0 Classic scenario pricing and taxation taken care by R/3 system. Now as part of ECS migration taxation and pricing to be moved from R/3 to SRM as lea

  • Aggregate Functions and Difference

    I had posted this question earlierRCOUNT and RSUM but if that was too many details, let me simplify it here. Month_Number -----Count(Orders)----------Increase In Sales 1-------------------------100------------------------- - 2------------------------