What is the best way to merge a file content into log file

What is the best way to merge a file content into log file.
In worst case, I will read the file line by line as string, then use
logger.info(lineString)to output to log file.
However, is there better way to do this?
The eventual log file will be something like:
log message 1
log message 2
content from file line 1
content from file line 2
content from file line 3
log message 3
log message 4Thanks

John618 wrote:
Thank you and let me explain:
1. What do you mean by better?
I would like to see better performance. read line by line and log each line as string can be slow. Did you measure this and determine that it is actually a problem for your application? Or are you guessing?
Regardless of what you do you are still going to need to read the file.
>
2.The only better way I can think of is not having to do it, but I assume you have a very good reason to want to do this.
Yes, I have to do it beacuse the requirement is to have that file content be part of logging.
Any idea?How is it supposed to be part of it? For example which of the following is better?
        File AAA - contents
                   First Line
                   Second Line XXX
        Log 1
                2009-03-27 DEBUG: Random preceding line
                2009-03-27 DEBUG: First Line
                2009-03-27 DEBUG: Second Line XXX
                2009-03-27 DEBUG: Random following line
        Log 2
                2009-03-27 DEBUG: Random preceding line
                2009-03-27 DEBUG: ----- File: AAA -------------
                First Line
                Second Line XXX
                2009-03-27 DEBUG: Random following lineBoth of the above have some advantages and disadvantages.
The first in a mult-threaded app can end up with intermittent log entries in between lines, so having log lines with thread ids becomes important.
The first can be created by reading one line at a time and posting one at a time.
The second can be created by reading the entire file as a single string and then posting using a single log statement.

Similar Messages

  • What is the best way to use wi-fi to transfer pdf files from an ipad to a mac mini, not using an internet, just wi-fi.

    What is the best way to use wi-fi to transfer pdf files from an ipad to a mac mini, not using an internet, just wi-fi?

    If the Mac use Lion (10.7) you can use Airdrop for that.
    With Mac's not using Lion you may set up a computer to computer (ad hoc) connection.
    How to --> http://docs.info.apple.com/article.html?path=Mac/10.6/en/8339.html
    Lupunus

  • What's the best way to convert a current website into a Fluid Grid Laout?

    As the title says....
    What's the best way to convert a current website into a Fluid Grid Laout?

    See "Using Fluid Grid Layouts (video)"
    http://tv.adobe.com/watch/learn-dreamweaver-cs6/using-fluid-grid-layou ts/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • What's the best way to merge, restore or reconstruct iPhoto and Aperture libraries to resolve images that are not found/offline?

    Hey there, Apple Support Communities.
    To start, I'm working on a MBP Retina 15" with a 2.3GHz i7 processor and 16 GB of RAM.  10GB free on a 256GB SS HD.  Attached are two external HDs - one 1TB Western Digital portable drive from 2011, one 2TB Porsche LaCie non-portable drive from 2013; both connected via USB.  All photo libraries in question are on the external drives.
    I have Aperture 3.5.1 and iPhoto 9.5.1.  I prefer to work in Aperture.
    The Issue(s)
    Over the years, I have accumulated a number of iPhoto libraries and Aperture libraries.  At one point, I thought my WD drive was dying so I purchased the LaCie and copied all libraries over the the LaCie drive.  (Turns out, there's probably an issue with my USB port reading drives, because I can once again see the WD drive and occasionally I can't see the LaCie drive.)
    So now I have old version of some libraries on the WD drive, and new versions on the LaCie drive.
    When I was moving things, I ran the software Gemini to de-dupe my iPhoto libraries.  Not sure what effect that may have had on my issues.
    In my main Aperture library and in some iPhoto libraries, I get the image-not-found badge or exclamation point.  I've dug through the hidden Masters folders in various libraries to find the original image.  In some cases, I have been able to find the original image, sometimes in a different version of the iPhoto library.
    My Question(s)
    1.  For Aperture libraries that have missing originals, is there some magical way to find them, or have they just disappeared into the oblivion?
    2.  For iPhoto libraries that have missing originals and I have found the original in another iPhoto library, what is the best way to proceed?
    3.  Are there quirks to merging iPhoto and Aperture libraries (by using the Import->Library) feature that I should be aware of?
    TL;DR: Too many iPhoto and Aperture libraries, and not all the original pictures can be found by the libraries anymore, though some originals still do exist in other libraries.  Steps/process to fix?
    Thank you!  Let me know if you need add'l info to offer advice.
    With appreciation,
    Christie

    That will not be an easy task, Christie.
    I am afraid, your cleaning session with Gemini may have actually removed originals. I have never used this duplicate finder tool, but other posters here reported problems. Gemini seems to replace duplicate original files in photo libraries by links, and this way, deleting images can cause the references for other images to break. And Aperture does not follow symbolic links - at least, I could never get it to find original files this way, when I experimented with this.
    1.  For Aperture libraries that have missing originals, is there some magical way to find them, or have they just disappeared into the oblivion?
    You have to find the originals yourself. If you can find them or restore them from a backup, Aperture can reconnect them. The reconnect panel can show you, where the originals are supposed to be, so youcan see the filename and make a Spotlight search.
    For iPhoto libraries that have missing originals and I have found the original in another iPhoto library, what is the best way to proceed?
    Make a copy of the missing original you found in a folder outside the iPhoto library. You can either open the iPhoto library in Aperture and use "File > Locate Referenced file" to reconnect the originals, or simply reimport them. Then Lift&Stamp all adjustments and metadata to the reimported version.
    See this manual page on how to reconnect originals:  Aperture 3 User Manual: Working with Referenced Images  (the paragraph:  Reconnecting Missing or Offline Referenced Images)
    Are there quirks to merging iPhoto and Aperture libraries (by using the Import->Library) feature that I should be aware of?
    References images will stay referenced, managed will remain managed. You need to unhide all hidden photos in iPhoto - this cannot be done in Aperture.
    and not all the original pictures can be found by the libraries anymore, though some originals still do exist in other libraries.  Steps/process to fix?
    That is probably due to Gemini's replacing duplicate originals by links, and your best cause of action is to fix this before merging the libraries. Reconnecting can be done for your iPhoto libraries in Aperture.

  • What's the best way to check whether a user is logged in or not?

    I have a question about basic session handling.
    I'm running Tomcat 5.0.30 and have a web application where users can register with a username and password, and then log into a "member site".
    What is the best way of making sure that a user actually has logged in or not?
    What I've done in previous applications I've made is that I've just put a simple variable into the users session after he has successfully entered his password (i.e. Boolean loggedIn=true). Then I just test if this flag is true to grant him access to the member site. Is that a smart way of doing it?
    Are there any libraries I can use which handles sessions for me in a secure way?
    All comments and suggestions are appreciated!

    Maintain a flag using session attributes it to one when the user is logs in set it to value.... and change set it zero or invalidate that session... when the user is logged out...
    use something like this while user had logged in
    session.setAttribute("flag",<unique_number>);
    for checking whether the user had logged in or not...
    if(Integer.parseInt(session.getAttribute("flag").toString())=!<unique_number>){
    out.println("The session had expired");
    out.close();
    }

  • What's the best way to detect that text fits into ContainerControllers without scrolling?

    Hi.
    Question
    What's the best way to detect that text typed by user (or added programmatically) exceeds available container space and find out where starts truncated part? Is there available some other (than described bellow) easy way to detect it or disallow set of controllers to receive more characters that can be displayed in given composition area?
    My partialy failed attempt (simplified)
    For example lets say that I've got an editable textflow with attached two instances of ContainerController.
    var flow:TextFlow = createSomeFlowFromGivenString(sampleText),
        firstController = new ContainerController(firstSprite, 100, 30),
        lastController = new ContainerController(secondSprite, 600, 30);
    flow.interactionManager = new EditManager(new UndoManager());
    flow.flowComposer.addController(firstController);
    flow.flowComposer.addController(lastController);
    flow.flowComposer.updateAllControllers();
    With enabled vertical scroll policy I can compare height of the composition in last controller with height of the content:
    var bounds:Rectangle = lastController.getContentBounds(),
        overflow:Boolean =  lastController.compositionHeight < bounds.height;
    trace('Content does not fit into given area?', overflow)
    But when I switch vertical scroll policy off (lastController.verticalScrollPolicy = ScrollPolicy.OFF) - unfortunately this no longer works...(In my case scrolling should be dissabled, since text areas might have only one line with restricted width)
    Use case
    I want to create fillable form. Field might have a single or multiple lines. One field might start in the middle of the page, continue in the next line where it spreads through whole page and end in the - quarter of page width long  - third line. Text typed by the user can't exceed given area since it might cover some static text that sits right after/below field.
    Something like ascii image bellow:
    |                <PAGE>                    |
    |                                          |
    |                                          |
    |                                          |
    |               [Field starts here........ | 
    | ........................................ |
    | ........................................ |
    | Ends here..]                             |
    |                                          |
    |                                          |
    | [Another field] xxxx  xxxx xxxxxxxx x xx |
    | xxxxxxxxxxxxxxxxxxx                      |
    |                                          |
    |                              [One more.. |
    | .....]                                   |
    |                                          |
    |                                          |
    |                                          |
    |                                          |
    |                                          |
    |                                          |
    |                                          |
    |                                          |
    Info:
    [......]  <-- form fields starts with '[' character, and ends with ']'
    xxx       <-- sample, static text
    | and _   <-- page borders

    I've tried something like that previously, but it didn't work because then I've got vertical scroll policy to set to 'auto'. After changing verticalScrollPolicy to ScrollPolicy.OFF  in the last container it worked like a charm.
    Thanks zhen bian

  • What is the best way to plug my iPhone 5 into a mixer for live music performances?

    I'm thinking of performing live with my iPhone 5 or maybe an iPad that I haven't bought yet. What is the best way to get the sound for the device to a mixer or PA? I'm wondering if anyone has any experience with wireless options. I'm wondering if it is stable enough for live performance. There doesn't seem to be any audio interface options yet.

    there is always the 3.5mm minijack out connector sure it's analogue but a cable with male minijack in 1 and and 2 rca in the other would work with most mixers and or pa's

  • What is the best way to get PATHS from one Photoshop psd file to another?

    Hi! New on the site, and I signed up specifically to ask the best way to import one .psd file into another, including the paths on the paths palette.
    Almost all of my Photoshop drawings make heavy use of vector paths, which I then stroke using using PS natural-media brushes and the "stroke paths" function (usually with "simulate pressure" checked.) Also, my .psd files tend to be, um, HUGE... and I typically break up a whole drawing into separate PS files and then assemble all of them into one final finished graphic.
    I have no trouble moving raster stuff from file to file. Just put all the layers I want to transfer into a group and drag the group to the other .psd. Works fine, including layer masks. But I have not found a good way to get vector paths from the Paths palette of one .psd to another. Of course I can select paths and copy them to the Win clipboard, switch to the other .psd, and paste them back in. The drawback to that method is that I lose the correct size relation between the results of previously done "stroke paths" operations (on raster layers) and the paths that generated them. Sometimes the copied-in paths are way too large, sometimes way too small, never Just Right.
    As I'm sure most of you know, if you resize an entire Photoshop document from within PS, any paths it contains are correctly resized along with everything else. That's no longer true after grouped raster layers are dragged over to another document but paths are copied and pasted in. The size connection is lost. (Location placement, too.)
    I WANT those paths! After I bring a piece of a drawing into the full final drawing, what looked good when I was working on it separately often doesn't look right any longer and I want to re-stroke those paths using different brush diameter, opacity, etc., or maybe even a completely different brush.
    I've tried bring outside .psd files in as smart objects with the Place command but either that doesn't work or I'm not doing it right. Using Place, the paths in the Placed document don't come in at all.
    I'll be very grateful for any hints or strategies any of you knowledgeable folks can give me. Thanks very much!
    Jim
    Note, PS CS3 extended on Win 7 pro.

    Denny
    1. Connect the two macs - firewire, ethernet, sneakernet as suits you - and copy the iPhoto Library Folder from Old Machine to New Machine. Drag it from Home/Pictures to the same location on the new machine.
    2. Because all the files 'belong' to the account on the old machine, you have to update the file permissions: hence Download BatchMod from
    http://macchampion.com/arbysoft/
    And apply it to the iPhoto Library Folder using the settings found here:
    http://homepage.mac.com/toad.hall/.Pictures/Forum/BatChmod.png
    (Credit to Old Toad for this one).
    Note: This must be run on the new machine after copying the files over.
    3. Then launch iPhoto on the new machine.
    Regards
    TD

  • What is the best way to remotely stream iTunes content?

    Hello,
    I have a rather large iTunes library (approximately 1TB) made up of Videos (iTunes and non-iTunes) and audio (iTunes and Audible) currently sitting on a 3TB external drive. I was wondering what is the best ie. most effieicent/affordable method to access my iTunes library, on my laptop, when I'm not at home?
    I've tried iTunes Match in the past yet, unfortunately, iTunes Match has always succeeded in destroying parts of my iTunes library forcing me to restore from backup (which takes several hours). The only other options that I've been able to find are either 1) Buying a 1TB+ portable external drive and puting my iTunes library on it (costs around $150 for 2TB) or 2) Buying a Slingbox 350 ($180, not sure if a service subscription is required) and watch my iTunes Library through my 3rd Gen Apple TV.
    Given that iTunes Match was so problematic for me in the past, are these my only other options? Does anyone know of a better solution as to how I can do this?
    Any assistance with this will be greatly appreciated.

    I have a large iTunes library, 600Gb of Music and 20TB odd of video.
    I tried a few different things while I was on the road.
    The VPN back was Ok, but I was looking for ways to run video to hotel rooms and 3G / Hotel WIFI wasn't doing it for me.
    For Video I ended up using AirVideo from my iMac to my iPad, and that was Ok, Pex can do the same now, so will try that as well.
    For music I ended up creating a new login on my iMac and loaded the music that meant the most or was new into iTunes up to 25k songs and shared it using Music Match, that work well for me.
    My guess is that Plex will let you share and remote access all your audio video, I haven't tried it yet though.

  • What is the Best Way to reimport my iPhoto library into Aperture 2?

    I used the Aperture 1.5 trial version and imported my iPhoto library (most of it anyway).
    I then bought Aperture 2 and I want to reimport my iPhoto library but don't want to screw it up and erase projects and things I've done in Aperture 2.
    Also, I don't like or know how to change the Aperture 2 "folders" under Projects that reference my photos. I want to reimport the photos with dates or something to show what they are (wish Aperture had Events on the left like iPhoto).
    Can anyone tell me the best way to do this so I don't screw up the photo changes (extensive) and projects that I have made in Aperture? I think I just reimport and make sure I don't import duplicates, etc. but I would like some reassurances.
    Also, I have no idea what a vault or a stack is in Aperture.
    Thanks for the help!

    There isn't a way to reimport the iPhoto library yet have it maintain the changes you made to images in Aperture. Now you can upgrade to 2.1 and Aperture will upgrade your current library keeping your changes intact.
    Aperture and iPhoto go about their organization based on different principals. Apple thinks you'll use iPhoto for the snaps from your kids graduation or the family BBQ, hence the events. Aperture, being a professionally oriented program, is based on the idea of projects. That's why they don't have the same structure on the left.
    You can get something similar to iPhoto's events in Aperture however, by clicking on "All Projects" under your library.

  • What's the best way to load FieldPoint measurement data into PI System?

    I am finding the best way to load data collected by NI Field Point (FP2220) into the PI system of our power plant.
    I found pieces of information about FieldPoint OPC server in NI.com. Not sure if it comes with Field Point Hardware, sold by NI as a separate product or it is actually non-standard NI products. Anyway, I know that there exists a thing called FieldPoint OPC server.
    The PI system I mentioned has a OPC client software called PI-OPC interface. It is able to communicate with standard OPC DA server. If that FieldPoint OPC server is a standard OPC DA server provide data collected by Field Point complying to OPC standard, than that's perfect.
    Anyone familar with PI system and NI product, please help if the above is going to work or if there is a better way to put Fieldpoint data into PI.

    Hi Eric,
    This information really helpful, thanks. Regarding to the NI OPC server for NI FieldPoint, I have the other query.
    In my setup, there are two sets of FieldPoint located in two different locations on my ethernet network. They are going to be controlled by a single PC. If I am going to connect both my FieldPoint sets with OPC standard, how many NI OPC server for FieldPoint do I need to connect to? Are there two NI OPC servers each serves one FieldPoint set? Or there is only NI OPC server which serves both FieldPoint sets?
    I am concerning about the number of NI OPC server instances running, because the number of OPC client license I need to purchase depends on how many OPC server I need to connect to. If one NI OPC server serves both my FieldPoint sets, I only need to buy one OPC client license; otherwise, I need to purchase two. In the future, I am going to have another two sets of FieldPoint sets, so the answer of my query determines how many OPC clients I need to purchase eventually - One or four. A huge price difference.
    Looking forward to your reply.
    Regards,
    Roger

  • What is the best way to integrate an ER diagram into BPA?

    Hi,
    In the context of a conversion project, trying to understand what is the lighter and easier way to import an ER diagram into BPA. The tools I'm currently using allow me to generate any xml/text data from current models... but trying to understand the minimal effort so the main semantic of models get kept (not a big deal if fonts, positioning, layout things are lost on the way)
    Attached is an example problem, would be great to see what textual representation denoting the same semantic can be accepted by BPA
    My example model:
    Product(prod_id (pk), name) ---* Order({prod_id, cust_id} (pk), quantity_ordered) * --- Customer (cust_id (pk), cust_name)
    A customer can have 0 to many orders
    A product can be ordered by 0 to many customers
    A order is made for 1 product and 1 customer, and for each order we know the quantity of the product ordered
    if someone has already run integration of large ERds into BPA would be fantastic help to have some hints/feedbacks on your approach best practices
    kind regards
    Frederic

    There is a thrid party product that con convert data models between most tools, including BPA. You can find information about it here: http://www.reischmann.com/. If you just want to migrate the main objects and their characteristics and the diagram is not as important you could look at using Excel as a data transfer medium. The report "Import Data in Excel Format" allows you bring information into BPA quickly, however it is a one time conversion and won't accomodate updates. You could also look at the macro "Process Generator" which also allows for objects to be imported from an Excel SS. Either of the SS solutions will require some configuration.

  • I am wondering what is the best way to merge a very large iphoto library (from my MBP) to my new iMac (which has a few hundred photos on it now), and then upgrade to Aperture?

    I have about 50GB of photos on my old MBP iphoto library.
    I have a new iMac with a few hundred photos that I've uploaded since I bought it last December.
    The iMac is where I want to keep everything stored as my main photo library, and manage it with a new Aperture installation. 
    Before I go and do this, and possibly muck it all up,
    I would like to figure out the proper steps.
    I am not too familiar with how to transfer files in the first place, so any help for a beginner would be much appreciated.
    Starting from how to safely move the files from the MBP to the iMac, if anyone could walk me through this process.
    I've been searching around but I have a specific goal (with getting everything into Aperture) so I don't want to get crossed up. 
    Thanks for your help!!

    I have about 50GB of photos on my old MBP iphoto library.
    To be able to merge your libraries, your Aperture version and iPhoto version must match. For basic reading see: Aperture 3.3: Using a unified photo library with iPhoto and Aperture
    and Aperture 3.3: How to use Aperture to merge iPhoto libraries
    Assuming you are running the latest Aperture and iPhoto versions:
    Before merging libraries ensure that your iPhoto Library has no issues. While still on your old mac run the "library first aid tools" on your iPhoto Library. Hold down the key combination ⌥⌘ and double click your iPhoto Library, then select "Repair database".
    Make sure you have a backup of your current Aperture Library and iPhoto library.
    Do both macs have a FireWire port? Then you could connect your macs in Target Disk Mode:
    See OS X Lion: Transfer files between two computers using target disk mode
    This way your new mac could see your old mac as an external disk and you could copy directly between the macs.
    Otherwise copy your iPhoto library by drag-and-drop to an external disk (on your old mac) and connect that disk to your new mac. Check, if the external drive is formatted for mac (MacOS X Extended (Journaled)). Otherwise reformat it, before you copy the iPhoto library to that drive.
    When your iPhoto Library has been moved to your new Mac launch Aperture and use the command "File > Import > Library" from the main menu bar. If there are duplicates in the Aperture library (if you imported earlier from iPhoto) you may be prompted if you want to "Add" or "Merge". If you have lots of duplicates, pick "Merge", otherwise "Add".
    Post back, if you need more detailed instructions.
    Good Luck.
    Léonie

  • I have a newer Sony FS100,  What is the best way I can get my footage into a workable format?

    It does not appear as an available camera during import mode, and when I try to import my video files any other way they are dimmed out and i can't even click on them. I should hope there will be support in the near future for this camera but until then, is there another application that anyone can suggest that will let me at least work with the video I have?

    Nick -
    This was my first "big" problem for the last 3 days with iMac and FCProX and my new Sony FS100. To make a long story short: Buy the latest versions of ClpWare amd install it (se end of this note). I got it yesterday after a lot of not-useful inreaction  - an then some *very useful interaction* - on this forum.... (and solution came after I began writing to the makers, Divergent.com) -  they knew IMMEDIATELY what was to be the solution for me - and told me/lined me to a (new?) version available that, when I got it, fixed all my SONY FS100U import / AVCHD/MTS problems. I was really overjoyed.
    To get there took almost all day. But I'm a giant step closer, now. Honestly. That is STEP ONE: get the proper version to import your files...it gets MUCH easier to work with the product once you have the native import issue resolved. Lots...
    So, I imported everything from the hi-speed SanDisk 32Gb card, finally, and in beautiful quality, just using the defaut "REWRAP" settings. (I have yet to try to import via the Pro Res or ProRes Proxy settings - but mabe today I will try...time and ENERGY permitting). I feel I need a day off from all of this, completely, after 3 days of angst and disappointment...but ultimately all which lead to a GREAT outcome. So for me it's [next] onto STEP 2: experimenting more with the product features, mastering more of them; outputting the size clips w/effects. etc and quality I want.
    This IS a different animal. But I still suppport it and its advent.
    One thing at a time...it is a huge learning curve since I am actually  working with 3 new technologies all at once (actually more  - that have nothing to do with FCProX video, directly...just indirectly....which I won't get into) - but again, below is the link to a FAST middleware transcoder (ClipWrap) that will get your AVCHD files into your Mac. Hopefully it's a fast Mac.
    I benchmarkd yesterday on both my Intel core5 iMac (very fast) vs. a slower MacBook Pro Core 2 Duo (?) - both have 8 Gb DRMM;  anyway - while the import worked just as well on either machine -  seemilngly just about as quickly on the MBPro, too...the playback from that laptop wasn't as [quite] perfect after rendering a clip, out with defaut settings (to keep things simple, for now)....but that ALSO may be because I decided to play devil's advocte while I was at it and imported/exported both the same AVCHD files to an Firewire 800 external HD on the MBPro, and secondly, re-imported. re-rendered and re-expoerted same clip to the MBPro *internal drive*...just to see what might happen in quality or playback speeds of a re-render. While both worked, the playback (via the "422 and H.264 codec output" experiments I did with the same, short 1.06 min. clip - but with  NO EFFECTS/transitions with that one, (unlike the iMac verison wich I loaded down, every few seconds, with numerous transitions) - the 1.06 min. test clips WERE, not surprisingly, different in playback. The AVCHD imported to and exported from the MBPro internal HD was a bit more "acceptable" in quality...but the import/export from my much faster iMac (internal HD)  tops everything. Hands down. If I do get a Thunderbolt machine...which I MIGHT, God willing and back account still permitting...I hope that new TB 15" fully-qoutfittd MacBook Pro I now have my eye on will result in still-better throughput - and NOT introduce a whole new layer of problems. God - I hope not...then there is LION coming...sheesh! What [new] problems might THAT indroduce???
    One needs to experiment a lot here, but once you are able to get the files in from the cam (finally, and easily) - things start to get way better. After that...it's the learning curve of what input / output settings/decsions suit your needs. That is the NEXT BIG curve ahead...for me at least.
    I really do like FDProX a lot..a REAL lot...but obviously, like allof us, I am still learing it.
    There is a lot to learn, obviously..just read along in this forum! FCProX has its own big "internal" curve to master, when it comes to details.
    I found and have been able to use the Precision Editor.. got a first-ever finally and easily) import of several AVCHD native clips "edited"...but got jumbled up - somewhere - (?) in the Precision Editor  - and over-duped/dubbed some of the part of the clips I cut up to see what would happen. So the end results with that clp were messed up to say the least...but it did output beautifully...I am still confused about the auto/background renderering and o-going "transcoding and analysis" issue....I sotp it and render out to QT format anyway..it seems to work...tho I id end up with the last moments of the PRditor version misssing the last few seconds...which I did OT deliberatelu splice out and delete!!
    Just plain old trial and error...now. Obviously I did something wrong (easy to do in a program as new as FCProX)....but again : I have YET to print out the manual or even read a page of it. So for that - considering how far I've gotten (a "surface scratch" only, still, to be honest) - it's a testament to what the program DOES do by iteself for you that helps you SOME with that learning curve...it's refining the editing/final cut output process for me, now - getting past the kinks or not-obvious pitfalls...I get there...we all will and we'll help one another along....and getting an output that looks and works the way I/we planned for in the final analysis.
    We're all stil learning here. Esp. me. I am out of energy. I've been asleep for the last 6 hours...and am headed back to bed. In 10 minutes!
    Here is the link to purchase the apparently tweaked and PROPER ClipWare version ($50  - worth it!) - and comment from Divergent; as noted: so, in review - I purchased it yesterday, that solved my AVCHD 1080p60 FS100 SONY cam/raw clip import issues and SAVED THE DAY - for now:
    (https://store.divergentmedia.com)  - "you'll receive a serial number which will unlock it after you buy it. It'll automatically update to the final release of 2.4.2 when we release that (after Lion ships)", from what I was told by Divergent.
    Best of luck,
    Mike

  • What is the best way to save and share Captivate software simulation files in Connect?

    File sizes (of 9mb zipped) appear to be causing problems. I've tried to share this short video any number of ways and I have not been successful.

    Thank you. I have tried publishing directly to Connect and many other ways. I was able to upload a ppt converted SWF, so I know I can do it, but I'm not doing something correcly with the simulation, and I'm not sure what. I can add the file to my Content and it appears to want to upload in Connect, but I just get the wait screen and no controls to play the file. I've also aggregated the ppt SWF and the simulation SWF, and it won't recognize this either. I'm close, but I'm just missing something.

Maybe you are looking for

  • Red hue to iPhoto 08 prints?

    I just recently upgraded my MacPro's iPhoto to the new 08 version. All my images are shot with a Canon 20D and printed on a Canon i960. Since the upgrade, all the photographs that I print from iPhoto on photo paper (Canon's plus glossy) have a major

  • Database.close not closing database?

    I've a singleton holding onto open (read-only) database handles, the environment and catalog DB handles. I'm using a StoredMap.get() to pull specific data items by their keys. Everything works fine, except in my JVM shutdown hook. The shutdown hook i

  • Use Members on Data Form is unvalid if the Run on Save setting is not on

    Hi, I found a problem of the setting Use Members on Data Form is unvalid if the Run on Save setting is not on. It will just get the default value of the variables but not the form members, I don't know whether it is a bug or a normal behavior. Does a

  • From CS to CS3 upgrade, too slow to open a New File

    my PC: Intel E4500 4GB DDR2 800 Windows Vista ultimate 250GB HD 768MB ram disk i've just upgrade the photoshop CS to CS3 when i open a New File, the photoshop become slow and finally no response after 1-2 mins, the New File open ... how to solve this

  • Close Old sales order

    HI!      I need help to close old sales order.      We are working with the make to Order process in our company and we have a some old sales order that we need to close. These sales order weren't shipped but were manufactured. We can't use "REJECT R