CFGRID(html): editing problems

When using the html grid, to edit data, specifically the
dropdown editor - once the editing is complete, the value displayed
in the grid is the value and not the display value.
For example, if the following line is selected - <option
value="5">Five</option> - the 5 would be displayed and not
the Five.
Does anyone else experience this, and is this normal
behaviour?
many thanks
Mat Evans

Not really. You can split the clip wherever you need to create a new 'scene,' and then split it again to isolate the 60 second clip. If you just want those and not the other parts of the movie, delete the rest or move it to the clips pane and leave the wanted clips in the timeline. It is not that hard to play through 8 minutes and make these clips....sometimes I have had to watch a lot longer clip to find the part I wanted!
If you are going to create a DVD of this movie and you will use the whole 8 minutes, but just want to mark the 'scenes,' then create chapter markers at the beginning of each scene, and iDVD will create those scene selections for you.

Similar Messages

  • Html edit problems

    Ok, so I've been using Taco to edit my HTML for a while now but for some reason the edits i'm now making don't appear on the webpage anymore.
    But, if i view the html files with quickview in my site file the changes have been made. They just aren't going to the uploaded site.
    Help anyone???

    Hi Shiva,
    The first SAP note applies to other browsers and works well for IE6. The problem we face is with IE6. We are already on SPS 21 so according to the note the issue should not appear.
    Are there any other solutions for this ?
    Regards,
    Melwyn

  • CFGRID HTML named target will not open new window

    I'm finally TRYING to make the move to CF8 and honestly I
    love Cold Fusion but I encounter bug after bug without going crazy
    trying to do things. I'd appreciate any guidance here.
    In this case I am trying to switch over from applet CFGRIDS
    to HTML CFGRIDS. Right off the bat all sorts of issues.
    1) CFGRID HTML target does not work as expected. If you put a
    named window in (e.g. gridpopup) you get an error message that it
    doesn't exist. This is not the way the applet grid works in any
    version including CF8. I don't want to allow someone to keep
    opening up window after window in this case. This is a showstopper
    as I have many cases where I need to do this.
    2) A defined checkbox column displays true and false. Since
    this isn't editable I can probably change it to Yes and No but come
    on. This might be because I'm using a bit field in my Sybase
    database ?????? Not sure if it works or doesn't with other field
    types. Works fine with the applet cfgrid
    3) This one can probably be styled away, I don't want the URL
    columns underlined.

    First, I can't believe no one else is encountering this
    problem
    Here's the fix which allows you to use mixed case target
    names and will also open a non-existent target. Someone was very
    lazy when they coded this.
    Locate the cfgrid.js file e.g. ..//CFIDE/scripts/ajax/package
    Find this chunk of code
    if(_2a3){
    _2a3=_2a3.toLowerCase();
    if(_2a3=="_top"){
    _2a3="top";
    }else{
    if(_2a3=="_parent"){
    _2a3="parent";
    }else{
    if(_2a3=="_self"){
    _2a3=window.name;
    }else{
    if(_2a3=="_blank"){
    window.open(encodeURI(url));
    return;
    if(!parent[_2a3]){
    and replace with this chunk of code
    if(_2a3){
    _2a3_LC=_2a3.toLowerCase();
    if(_2a3_LC=="_top"){
    _2a3="top";
    }else{
    if(_2a3_LC=="_parent"){
    _2a3="parent";
    }else{
    if(_2a3_LC=="_self"){
    _2a3=window.name;
    }else{
    if(_2a3_LC=="_blank"){
    window.open(encodeURI(url));
    return;
    }else{
    if(!parent[_2a3]){
    window.open(encodeURI(url),_2a3);
    return;
    if(!parent[_2a3]){

  • Cfgrid (html) cfwindow and form binding

    Hi All,
    I have a page with 2 cfgrids (html). Select a value in the
    first grid populates the 2nd with appropriate records
    All works as expected.
    I also have a cell renderer on one column that opens a
    cfwindow.
    The cfwindow contains a textarea field (html), it's to big to
    display in the grid.
    All works great except for the initial value of the cfwindow
    form
    In the form I have a hidden field (id) andf the textarea
    field. I have a bind attribute on both of these to get the value.
    Can anyone tell me why the initial value does not work ??
    Ken
    What happened to the "Attach Code" Button ???
    "grid page"
    <cflayout type="vbox" align="center"
    style="height:100%;">
    <cflayoutarea overflow="scroll">
    <cflayout type="vbox" align="center"
    style="height:92%;">
    <cflayoutarea>
    <cfinclude template="inc/nav.htm">
    </cflayoutarea>
    <cflayoutarea>
    <cflayout type="hbox" align="center" padding="5">
    <cflayoutarea align="center" style="width:25%;">
    <cfinclude template="jmoGrid.cfm">
    </cflayoutarea>
    <cflayoutarea align="center" style="width:75%;">
    <cfinclude template="cbGrid.cfm">
    </cflayoutarea>
    </cflayout>
    </cflayoutarea>
    </cflayout>
    </cflayoutarea>
    <cflayoutarea>
    <cf_siteFooter>
    </cflayoutarea>
    </cflayout>
    "grid 1"
    <cfgrid
    name="gridJMO"
    format="html"
    striperows="yes"
    bind="CfC:#Request.comsPath#.jmo.getData({cfgridpage},{cfgridpagesize},{cfgridsortcolumn} ,{cfgridsortdirection},getSearchString())"
    selectMode="row"
    pageSize="14">
    <cfgridcolumn name="Employee_No" header="Emp No"
    width="80">
    <cfgridcolumn name="JMO_Name" header="Name"
    width="150">
    <cfgridcolumn name="id" header="" display="no">
    </cfgrid>
    "grid 2"
    <cfgrid name="dataGrid"
    format="html"
    striperows="yes"
    onchange="CfC:#Request.comsPath#.cbData.saveCB({cfgridaction},{cfgridrow},{cfgridchanged} )"
    bind="CfC:#Request.comsPath#.cbData.getCB({cfgridpage},{cfgridpagesize},{cfgridsortcolumn },{cfgridsortdirection},{gridJMO.ID})"
    selectmode="edit"
    delete="no"
    width="98%"
    pageSize="12">
    <cfgridcolumn name="Approved"
    header="<center>Approve</center>" width="55">
    <cfgridcolumn name="Call_Date"
    header="<center>Date</center>" width="70">
    <cfgridcolumn name="TimeIn" header="<center>Time
    In</center>" width="55">
    <cfgridcolumn name="TimeOut" header="<center>Time
    Out</center>" width="55">
    <cfgridcolumn name="Pt_MRN"
    header="<center>MRN</center>" width="65">
    <cfgridcolumn name="Caller"
    header="<center>Caller</center>" width="185">
    <cfgridcolumn name="Approver"
    header="<center>Approver</center>" width="145">
    <cfgridcolumn name="Details"
    header="<center>Reason</center>" width="55">
    <cfgridcolumn name="OverTime"
    header="<center>OT</center>" width="55">
    <cfgridcolumn name="Reason" header="" display="no">
    <cfgridcolumn name="id" header="" display="no">
    </cfgrid>
    "window form"
    <cfform name="frmUpdate">
    <cfinput type="text" name="ID" bind="{dataGrid.id}">
    <cflayout type="vbox">
    <cflayoutarea>
    <cftextarea name="fld_Message_Detail"
    bind="{dataGrid.Reason}" rows="12" style="width:90%;"/>
    </cflayoutarea>
    <cflayoutarea align="right" style="margin-left:10px;
    width:90%">
    <cfinput type="button" name="bnt_cancel" value="Cancel"
    onClick="hideRecWin('winDetails');">
    <cfinput type="button" name="bnt_submit" value="Save
    Change" onClick="updateReason();">
    </cflayoutarea>
    </cflayout>
    </cfform>

    I found that is style sheet problem , here is my workaround
    solution:
    1.) use text editor open the css file
    (...\CFIDE\scripts\ajax\resources\ext\css\ext-all.css )
    2.) find '.x-grid-dirty-cell' in the file
    3.) copy & paste my style
    /*------------------- >8 -----------------*/
    /* Start of Grid dirty cell problem - Gordon Fixed
    .x-grid-dirty-cell {
    background: transparent
    url(../images/default/grid/dirty.gif) no-repeat 0 0;
    .x-grid-dirty-cell {
    background: transparent
    url(../images/default/grid/dirty.gif) no-repeat 0 0;
    background-color:cornflowerblue;
    .x-grid-row-alt .x-grid-dirty-cell{
    background-color:cornflowerblue;
    /* End of Grid dirty cell problem
    /*------------------- >8 -----------------*/

  • Posterous blog HTML Snippet problem - not all of blog is showing up...

    Good morning all! So I was looking for a solution for our newly formed website (I'm a novice) where I could have multiple users update our blog page without having to use iWeb to do it. I read up on Posterous and it appears this would be an ideal solution. So I found some code from another Apple Discussions poster, Alancito, that would pull my Posterous blog directly into the iWeb page I created. Well it has done that, sort of...
    I see the header from the blog, but the content isn't visable. Well, actually if you highlight the header or "blog differently" and then hold down like you're scrolling down the page, the info is there. But the HTML snippet always cuts it off. Even if I expand the size of the snippet in iWeb, it ALWAYS reverts back to this same size.
    I'm in a bind here and could really use some help.
    Here's the blog page address: http://www.sporkfoodwagon.com/SporkFoodWagon/Blog.html
    And here's the code I was provided.
    <iframe height="100%" allow transparency="true" frameborder="0" scrolling="no" style="width:100%;border=none" src="http://sporkfoodwagon.posterous.com/"></iframe>
    Message was edited by: andrewrichardson

    Andrew ~ Perhaps someone will suggest a solution to the HTML Snippet problem, but meanwhile, with this recent improvement to Posterous:
    http://blog.posterous.com/posterous-unveils-pages
    ...perhaps you don't need an iWeb site at all. If you must have one, consider linking to your Posterous blog directly from iWeb's navigation bar:
    Create a blank internal page titled "Blog" (actually you can name the page whatever you want.) Then in that Blog page add an HTML Snippet with the following code:
    <script type="text/javascript">
    parent.window.location = "http://www.yourblogname.com"; // change this to your own URL
    </script>
    ...Once published, clicking on "Blog" in the navbar will immediately redirect to your external Blog page. (Thanks to Cyclosaurus for the code).
    And to return from Posterous back to your iWeb site:
    http://blog.posterous.com/pages-20-add-links-to-your-sidebar

  • Exporting sliced webpage to DM- Colums created causing editing problems

    I sliced the buttons on the menu bar and exported the home
    page to DW. However, when I add images or text in the body of the
    homepage in DW the whole document gets chopped up and misalligned.
    The colums cut across the body of the page causing this problem.
    You can see the colums only when you click on the body of the home
    page. Is there a way to make the colums that were added to the
    sliced images (upon export to DW) smaller? If there is a way to get
    rid of them totally, that would be even greater. Thanks for your
    help.

    Bad way to create a web site. Fireworks is an image
    processing program, DW
    is a HTML editing program.
    Create your web site in DW, create supporting graphics in
    Fireworks. Even
    though Fireworks will create html code, it doesn;t do it well
    and the
    results will be sloppy in any of the major browsers.
    "speets" <[email protected]> wrote in
    message
    news:eig1bo$fbh$[email protected]..
    >I sliced the buttons on the menu bar and exported the
    home page to DW.
    > However, when I add images or text in the body of the
    homepage in DW the
    > whole
    > document gets chopped up and misalligned. The colums cut
    across the body
    > of the
    > page causing this problem. You can see the colums only
    when you click on
    > the
    > body of the home page. Is there a way to make the colums
    that were added
    > to
    > the sliced images (upon export to DW) smaller? If there
    is a way to get
    > rid of
    > them totally, that would be even greater. Thanks for
    your help.
    >

  • Post html editing question

    Hi All,
    I am putting a flash music player on one of my pages. Here is the problem. I thought it would be a nice effect if I created a box for the flash player to sit it. So thats what I did, used the shapes tool, created my flash player holder, and inserted a text box in which I entered "enterhtmlhere". I published, edited the html, and republished only to find that the flash player was about 1 inch lower than the box I created for it. Normally I have had good luck with placing html edited objects on my sites, and didn't do anything different. Any suggestions? Thanks in advance.

    Sometimes for whatever reason, your coded HTML elements don't line up with the text box exactly. I don't know why. But I have seen this as well. The way I deal with this is just to compensate for the shift back in iWeb. The text box is your coded element, so if the flash object seems shifted an inch lower, then I would shift the text box an inch higher inside iWeb.
    It's not elegant, but it has worked for me.
    varkgirl...
    I found the same kind of phenomenon with YouTube videos. Then I looked closer at the embed code and found that the width dimensions that it lists by default is twice the width of the actual movie for some reason. Once I corrected this, the movie was perfectly positioned.... in case you ever get the inclination to do YouTube again.

  • Launch and edit problem from Dreamweaver to Fireworks

    > This message is in MIME format. Since your mail reader
    does not understand
    this format, some or all of this message may not be legible.
    --B_3266405159_588474
    Content-type: text/plain;
    charset="ISO-8859-1"
    Content-transfer-encoding: 8bit
    Hi
    Not sure if this is a Fireworks or Dreamweaver problem but
    here goes.
    I¹ve created a graphic in Fireworks CS3 on the Mac and
    Exported the HTML and
    related images. I open the HTML file in Dreamweaver CS3, all
    fine so far.
    Then I highlight the table and click the ŒEdit in
    Fireworks¹ button and it
    throws up a warning dialogue saying ŒCannot launch and
    edit. The Fireworks
    table could not be found in the HTML. Please export from
    Fireworks and
    re-import the HTML into Dreamweaver.¹
    What?!!
    I¹ve only just exported it from Fireworks! It¹s
    even got the Fireworks table
    code in the Code section, so what¹s going here?
    Has anyone else had this?
    Gaz
    --B_3266405159_588474
    Content-type: text/html;
    charset="ISO-8859-1"
    Content-transfer-encoding: quoted-printable
    <HTML>
    <HEAD>
    <TITLE>Launch and edit problem from Dreamweaver to
    Fireworks</TITLE>
    </HEAD>
    <BODY>
    <FONT FACE=3D"Verdana, Helvetica, Arial"><SPAN
    STYLE=3D'font-size:12.0px'>Hi<BR=
    >
    Not sure if this is a Fireworks or Dreamweaver problem but
    here goes.<BR>
    I&#8217;ve created a graphic in Fireworks CS3 on the Mac
    and Exported the H=
    TML and related images. I open the HTML file in Dreamweaver
    CS3, all fine so=
    far. Then I highlight the table and click the
    &#8216;Edit in Fireworks&#821=
    7; button and it throws up a warning dialogue saying
    &#8216;Cannot launch an=
    d edit. The Fireworks table could not be found in the HTML.
    Please export fr=
    om Fireworks and re-import the HTML into
    Dreamweaver.&#8217;<BR>
    What?!!<BR>
    I&#8217;ve only just exported it from Fireworks!
    It&#8217;s even got the Fi=
    reworks table code in the Code section, so what&#8217;s
    going here?<BR>
    <BR>
    Has anyone else had this?<BR>
    <BR>
    Gaz</SPAN></FONT>
    </BODY>
    </HTML>
    --B_3266405159_588474--

    > This message is in MIME format. Since your mail reader
    does not understand
    this format, some or all of this message may not be legible.
    --B_3266407908_747577
    Content-type: text/plain;
    charset="ISO-8859-1"
    Content-transfer-encoding: 8bit
    When you export the sliced graphics from Fireworks it places
    them into a
    table. In my instance the code says...
    <!-- fwtable fwsrc="Brands.png" fwpage="Page 1"
    fwbase="Brands.jpg"
    fwstyle="Dreamweaver" fwdocid = "325827661" fwnested="0"
    -->
    So it recognises Fireworks was the the graphics app and jumps
    back to it
    when you want to edit the image. Fireworks then displays (or
    should) a
    ŒDone¹ button over the window. You do your alts and
    press Done to update the
    HTML and graphics back in Dreamweaver automatically.
    That¹s the only table I was referring to Murray.
    On 4/7/07 3:02 pm, in article
    [email protected], "Murray
    *ACE*" <[email protected]> wrote:
    > Why would you be wanting to edit the table in a graphics
    editor, instead of
    > an HTML editor?
    --B_3266407908_747577
    Content-type: text/html;
    charset="ISO-8859-1"
    Content-transfer-encoding: quoted-printable
    <HTML>
    <HEAD>
    <TITLE>Re: Launch and edit problem from Dreamweaver to
    Fireworks</TITLE>
    </HEAD>
    <BODY>
    <FONT FACE=3D"Verdana, Helvetica, Arial"><SPAN
    STYLE=3D'font-size:12.0px'>When =
    you export the sliced graphics from Fireworks it places them
    into a table. I=
    n my instance the code says...<BR>
    <BR>
    &lt;!-- fwtable fwsrc=3D&quot;Brands.png&quot;
    fwpage=3D&quot;Page 1&quot; fwba=
    se=3D&quot;Brands.jpg&quot;
    fwstyle=3D&quot;Dreamweaver&quot; fwdocid =3D &quot;32=
    5827661&quot; fwnested=3D&quot;0&quot;
    --&gt;<BR>
    <BR>
    So it recognises Fireworks was the the graphics app and jumps
    back to it wh=
    en you want to edit the image. Fireworks then displays (or
    should) a &#8216;=
    Done&#8217; button over the window. You do your alts and
    press Done to updat=
    e the HTML and graphics back in Dreamweaver
    automatically.<BR>
    That&#8217;s the only table I was referring to
    Murray.<BR>
    <BR>
    On 4/7/07 3:02 pm, in article
    [email protected], &quot;Murr=
    ay *ACE*&quot;
    &lt;[email protected]&gt; wrote:<BR>
    <BR>
    <FONT COLOR=3D"#0000FF">&gt; Why would you be
    wanting to edit the table in a =
    graphics editor, instead of <BR>
    &gt; an HTML editor?<BR>
    </FONT></SPAN></FONT>
    </BODY>
    </HTML>
    --B_3266407908_747577--

  • Html snippet not working; created from Taco html edit Component Library

    Ok, I've searched for days on the discussion board for the answer to this one..... hopefully someone can give me a couple of pointers....
    I have a component created from Taco html edit Component Library that I cannot get to work as an inserted snippet into iWeb 3.0.2.
    Why can't I get this to work? I've seen first hand that they work on someone else's website that she constructs in html directly, not using iWeb. Any help greatly appreciated.
    Taco created three files. They are:
    TSWAccordion.css
    TSWDomUtils.js
    TSWAccordion.js
    Here is the code:
    <html>
    <head>
    <title></title>
    <script type="text/javascript" src="Scripts/TSWAccordion.js"></script>
    <script type="text/javascript" src="Scripts/TSWDomUtils.js"></script>
    <link rel="stylesheet" type="text/css" href="Scripts/TSWAccordion.css" />
    <!-- BEGIN COMPONENT Accordion - Taco HTML Edit -->
    <style type="text/css">
    #myAccordion.tswAccordion
    width: 200px;
    height: 400px;
    background-color: #f0f0f0;
    #myAccordion .tswAccordionActiveSection, #myAccordion .tswAccordionInactiveSection
    background-color: #f0f0f0;
    width: 100%;
    height: 400px;
    #myAccordion .tswAccordionHeader
    text-align: center;
    padding: 2px;
    font-family: Verdana;
    font-size: 16.0px;
    #myAccordion .tswAccordionActiveSection .tswAccordionHeader
    background-color: #7086aa;
    color: #ffffff;
    border: 1px solid #cccccc;
    #myAccordion .tswAccordionInactiveSection .tswAccordionHeader
    background-color: #f0f0f0;
    color: #000000;
    border: 1px solid #cccccc;
    #myAccordion .tswAccordionHeader
    #myAccordion .tswAccordionBody
    padding: 5px;
    </style>
    <!-- END COMPONENT Accordion - Taco HTML Edit -->
    </head>
    <body>
    <!-- BEGIN COMPONENT Accordion - Taco HTML Edit -->
    Title 1
    <!--Content for section 1-->
    Title 2
    <!--Content for section 2-->
    Title 3
    <!--Content for section 3-->
    <script type="text/javascript">
    var accordion = tswAccordionGetForId('myAccordion');
    </script>
    <!-- END COMPONENT Accordion - Taco HTML Edit -->
    </body>
    </html>

    You need to upload these three files in a folder to the root folder on your server:
    TSWAccordion.css
    TSWDomUtils.js
    TSWAccordion.js
    The folder cannot be named "Scripts" as shown in your code as you already have one of that name.
    Say it is named "Accordion". You then need to give the absolute URL to these files rather than the relative one shown in the code....
    http://www.yourdomainname.com/Accordion/TSWAccordion.css
    http://www.yourdomainname.com/Accordion/TSWDomUtils.js
    http://www.yourdomainname.com/Accordion/TSWAccordion.js

  • Font / text edit problem in photoshop CS6

    Hi there,
    I have a strange text edit problem in Photoshop CS6 running on Mavericks.
    Every time I use the text-tool in PS, write a sentence, mark it and change something like color, font size etc., the marked text vanishes.
    I have to "undo" the last step and the changed text appears again.
    Every time!
    I have a clean installed CS6 with no plugins and no other than system fonts installed.
    Everything on a new Mac Pro with OS X 10.9.5
    Any clues? Thanks.

    Do you have the latest updates for photoshop cs6?
    You can use Help>Updates from within photoshop cs6 to check if there are any available.
    Also, if you go to Help>System Info from within photoshop cs6, you can see the Photoshop Version in the top line.
    You should be on version 13.0.6
    See if turning off Dictation solves the issue.
    Go to System Preferences ---> Dictation and Speech -----> select OFF radio button .

  • How to change the textarea to html editer in knowledge maintenance page ?

    Hi, experts,
    When we maintain the knowledge, we typed infomation into the textarea.
    Now we want to use html tags to show the knowledge info, so that the text can be shown in html table.
    how to change the textarea to  html editer ?
    Thanks.
    Oliver.

    closed.

  • Html link problem...

    Hey!
    Just wanned to say to those who answered my post on html link problems, that the problems I had were actualy because of the jdk version! I had jdk1.2 and now I have 1.3 and it works just fine.
    thanx a lot to everyone who tried to help!!!

    hehe i saw the topic "html link problem" posted by amidala and i thought " oh my god is she still struggling!" ;P
    Kewl 'twas not a problem!

  • Premiere Pro 7.1 serious Multicam Editing problems

    Hello, I am posting here because the bug report I filed one week ago to Adobe didn't give a result -no response at all from the bug department.
    I have two serious Multicam Editing Problems.
    PC Configuration: Core i7950, Asus P6TD Deluxe, 12GB DDR3 1600MHZ, Quadro K4000, SSD for the system, Seagate Constellation 7200rpm for video editing.
    1. When multicam mode is on at the program monitor, I press play and the program doesn't respond at all. The timeline plays till the end and the program just doesn't let you do anything but wait until playback of the whole timeline is over. Then the program works again (no "not responding" message in Windows).
    2. Sometimes the waveform doesn't even appear at the multicam audio clip. I read in other forums that this problem is found specifically at Premiere Pro version 7.1 (October release).
    I would be grateful with your help.
    Thank you,
    Stavros Symeonidis

    The media is always a combination of HD .MOV (dSLR footage and .MTS (from my Sony Vg-30). However, I also tested it with .mpeg files created by "match sequence settings". GPU acceleration is always on, as I use nVidia Quadro K4000 with the latest drivers (331.82).
    I always create the multicam sequences manually and the problem occurs with any amount of camera angles.
    The problem was not solved by reinstaling Windows (7 and 8). In general, I have no other issue with my PC system, except from this specific one.
    It doesn't appear always, however it will definitely happen if you press twice or three times the letter L, to fast forward the preview of your Multicam Sequence.
    I remind you that this only happens when multicam monitor is toggled at the program monitor.
    Did all these help at all to even reproduce this situation?
    Thank you,
    Stavros Symeonidis

  • How to html edit/ enter browser-window-title

    how to html edit/ enter browser-window-title?
    harpo

    I think this is what you mean any way hope it helps.
    open the .html file in text edit for the page you want to change. then look for
    <title>whatever your title is</title>
    and just change the text whatever your title is for whatever you want. the line of code is located at the top of the page under the line that reads
    <meta name="Generator" content="iWeb 1.1.2" />
    not sure if this was the answer to your question but i hope its helped.
    steve

  • FC studio2 editing problems with western digital my book home for mac

    hi--bought a 1TB WD my book home for mac coupla years ago because it seemed like a good deal for so much space, and provided and eSATA hookup, too. Worked ok for a while. Now, with a growing Motion project that I bring into FC for overall color/levels/export adjustments, I'm getting a long-term beachball every time I try to do anything with it. Just did a complete reinstall of FC studio (after running Techtool pro 5 rebuild and optimizing files and volume), trashed the project and recreated it incase the file itself was corrupted, but the beachball keeps showing up once i try to get past a particular edit and play the file through -- something I haven't had problems with before. Have read this harddrive is a real POS/PIA for many because of its internal "sleep" setting and other weaknesses, and am thinking of cracking the drive out of its case and putting it into a plain eSATA/FireWire enclosure. Anybody else tried this or heard of it working? Money's a big issue right now (too many slow/no pay clients), so can't just run out and get a new drive and transfer w/out trying cheaper route first. Would appreciate feedback, cuz this is makin' me lose what little hair i got left!
    Message was edited by: jayvee56
    Message was edited by: jayvee56

    My question says: "Final Cut Studio 2 editing problems"; I formatted the drive for the mac when i bought it: journaled HFS+, Apple Partition Map; 2 partitions (and connected via eSATA); which has been working fine as is up till now. The sequence and settings are those in which I've worked on many projects for years with no problems up until now. I am also completely up-to-date with all my app and system updates. I did begin to wonder after posting if the reinstall might be the source of my problems, but it was the interminable beachball waits that prompted the reinstall in the first place.

Maybe you are looking for

  • TV Screen Effect

    I want to do an effect, whether I do it directly in Keynote or wherever. I want to insert a picture of an LCD panel and play video on the "screen". So for example, I can take a stock picture of an LCD panel off the Internet. Then I create a shape tha

  • MacBook pro doesn't see camera memory card

    I have a problem with my new MacBook Pro and my Konica Minolta Dynax 7d. When I connect the camera to the MacBook with USB cable, I can't read the memory card, che doesn't appear on the desktop. When I am on windows 7 on Bootcamp, it work well, but w

  • Need to create a program to test the object

    Hi All, My requirement is to create a program which similarly to SLIN i.e Extended check This should show all the syntax error , warning error and etc..... Regards, Reni

  • Extend tablespace issue

    Hi Experts, We are facing an issue with extending tablespaces using BRTOOLS. As you can see in [this|http://tinypic.com/r/2hx5ydc/4] screen shot, the previous BASIS guy tried to extend the tablespace which caused these errors. Can you please guide me

  • Full flash websites likes pandora does not switch with ctlr tab

    switching between tabs with crtl + tab does not work in some sites with full flash content, such as pandora.com == URL of affected sites == http://www.pandora.com