"Shadow" next to cursor question

Hello.
Very basic question I'm sure but I only bought FCE as I couldn't adjust very well to the i-Movie change.....
Anyway, I was happily dragging clips into the Timeline, putting some transition effects on them, adjusting, rendering and moving to the next bit. Very basic but what I needed to do.
Now I must have changed some sort of mode as the cursor now has a small dark shadow to the right of it and I can no longer just grab a chunk on the Timeline and move it or adjust an effect in the same way as before.
Blowed if I can find what I did or even where to start in the manual.
Any help appreciated.
Many thanks.
Alastair

I tripped over something similar a while back. I will describe mine and see if it matches yours. I have dozens of clips scattered over a few video tracks. I can select an individual clip then click select it and the 4 way move arrow shows up. I can then drag his clip anywhere. NOW here comes the tricky part.
1 IF you choose to put this new clip on any particular track you will notice either a right arrow ( NOTE how your tracks are split into 2 parts by a long horizontal gray bar) if your cursor is above the horizontal divider the cursor showsa right arrow --OR a down arrow if your cursor is below that horizontal divider.
Right arrow means insert ie it will drop your clip right there and shove everything on every unlocked track to the right
Down arrow means superimpose - it will write over anything on the track you are dropping it onto. Nothing else gets shoved out of the way.
THe fact it showed up in the middle of a project is bogus --- it may have showed up after you added enough effects etc to have not enough space to put your clip neatly in without over writing what is under it . I jsut tried it and i always see the 2 arrows when i move things around .
In re only one frame transition i cant help you -- you can set those timers up in some place i cant find right now --
-- ALso groping around ...

Similar Messages

  • XY graph as a chart cursor question

    I have several XY graphs that are behaving as a chart. On the graph when a user moves the cursor to a peak I read in the X and Y values. I also want to be able to follow that peak until the user moves the mouse again.
    Currently when a new data point comes in the cursor stays in the same X location and I get updated data. What I want is, let's say the user moves the cursor to time 8:00:01. When the next update comes along the cursor should stay on time 8:00:01, but right now the cursor stays in position and I am reading in time 8:00:02. Does anyone know how to do this, without using property nodes? As I write this I realize that I can do this with an event structure and property nodes.

    By far the best way will be with property nodes etc. The only other idea I had would be to somehow actually plot data as the cursor, therefore when more data comes in the "cursor" actually moves with it. However even to accomplish this I think you would still be using property nodes. So I would say use the property nodes to move a real cursor.

  • PL/SQL cursor question (possible to pass in the table name?)

    I want to pass the name of a table to a cursor and select from that,
    Is this possible in PL/SQL?
    CURSOR get_rows(table_name IN VARCHAR2) IS
    SELECT * FROM table_name;
         The actual sql statement that will be used is more complex.
         I have 18 tables for which the same query would work varrying only in the name of the table.
    I get an error when I try to do the above.

    >
    I am not quite sure how you can derive anything from the design given the example that has all other details stripped out
    >
    What Justin said is pretty clear
    >
    If you are really doing a SELECT * and you have 18 different tables, it seems unlikely that all tables would always have exactly the same set of columns. If they do, that is almost certainly an indication that the data model is incorrect.
    >
    A data model that includes 18 tables with the same set of columns has something wrong with it. You explained that by clarifying that it is only TWO columns in each of the 18 tables that is the same. Perhaps the tables have one-to-many relationships and the two columns are the key columns. That is different.
    >
    The 'select *' will actually pull back only two columns, both of which are primary keys (long). I need to select all rows into a data structure that is global that I can iterate through at a later time. So given that I can use a ref cursor and have a dynamic table name, how would I select into a data structure that is of two primary keys and make that global to be used in another method at a later time?
    >
    Why not use an actual table to store the column data? An index-organized table would be perfect for that use and won't use up valuable user memory.
    And by global do you mean the data needs to be accessible by a different session than the one that collected the data?
    And what do you mean by 'later'? Tomorrow or next week?
    The use case you describe sounds like you are having to update primary key values in tables that have parent-child foreign key constraints. Is that what you are doing? Can you do this offline and defer or disable the constraints, perform an update (rather than insert/delete) and then reenable the constraints?

  • Ref cursor question

    Hi,
    I have stored proc that takes pl/sql table as IN parameter and returns a ref cursor.
    Data from pl/sql table is separated into two table type objects ... oType1 and oType2 based on some condition.
    following works fine...
    If oType1.Count > 0 then
         OPEN list_out FOR
         select col1, col2, col3, col4 ..... col20
         from TABLE(CAST(oType1 AS obj_table_t)) a,
         t1,
         t2
         where a.colvalue = t1.colvalue
         and etc....
    UNION ALL
         select col1, col2, col3, col4 ..... col20
         from TABLE(CAST(oType1 AS obj_table_t)) a,
         t3,
         t4
         where a.colvalue = t3.colvalue
         and different conditions etc....
    I have 4 UNION ALL's. Had to use this because of different where coditions.
    end if..
    The problem is with oType2......
    If oType2.Count > 0 then
    -- getting data from different database using dblink along with values from present database.
    -- resultset columns will be same as above
    -- Question is how to send these results in same refcursor.
    end if;
    Thanks for your time.

    Hi,
    I think that a plsql table is what you want and not a ref cursor. If you have a plsql table based on your user defined type you can keep assigning all the values you want to it and then pass it out of your procedure.
    null

  • Oracle cursor question

    Hello,
    When using cursors, is it the same thing if i issue:
    cursor c is .....
    r c%rowtype;
    begin
    for r in c loop .... end loop;or
    loop
    open c;
    fetch c into r;
    exit when c%NOTFOUND;
    -- do some actions....
    end loop;?
    Or is it any difference?
    Thanks
    Edited by: Roger22 on 23.06.2010 10:59

    user13165454 wrote:
    I understand both are almost same process to iterate through the result set. One is iterating the cursor result set while the other one is using for loop iteration.There is no such thing as a "+cursor result set+" - this creates the illusion that a physical set of results are created by the cursor and the client is fetching rows from this data set.
    Does not work like this. Where would such a result set lives? In database memory? What then about scalability? Such a result set can potentially contain millions of rows. A database server can be required to service 1000's of open cursors at the same time.
    Such a result set approach cannot scale as it will make a huge demand on memory.
    The results of a cursor is the output of a cursor. The cursor (the set instructions to find the relevant rows) are executed by the server. Rows are found. These are output. And the process repeats with each fetch where the cursor finds the next set of rows (based on Oracle multi version concurrency control model) to output to the client.
    As for the difference between a FOR cursor loop and a FETCH cursor loop - simply one of implicit versus explicit cursor variable management. There is no difference in how the server-side SQL cursor is used.
    E.g.
    -- FETCH loop                 -- FOR loop
    open c;                       for varBuffer in (...)  -- cursor is implicitly opened
    loop                          loop
      fetch c into varBuffer;          -- n.a. as the fetch is implicitly performed into the buffer variable "varBuffer"
      exit when c%notfound;            -- n.a. as loop will automatically terminated when %notfound
      .. process ..                    .. process ..
    end loop;                    end loop;     
    close c;                     -- n.a. as cursor is implictly closedWhich one is faster? Neither really. Both do the same things..
    a) open a cursor on the Oracle server
    b) fetch from the cursor
    c) close the cursor
    Whether that is implicitly or explicitly done, is irrelevant in terms of performance in this case.
    What is important is how the cursor on the client side acts. The FOR loop does an implicit bulk collect of a 100 rows (10g and later). With the FETCH loop one needs to manually code the bulk collect. But there one has more flexibility as one can also use bulk processing (i.e. a FORALL DML). This is not possible in the FOR loop as it does not provide access to the implicit collection used for the bulk fetch.
    On the Oracle side.. both will use the VERY SAME CURSOR for the same source SQL statement. It is important to note that "cursor performance" is not really relevant on the Oracle server side. Whether the client uses a ref cursor, DBMS_SQL cursor, implicit cursor, explicit cursors.. the Oracle server side does not know, does not need to know and does not care.
    This is a client side method for interacting with the cursor in the server.. and how "fast" that interaction (e.g single fetch vs bulk fetch) is with the cursor on the server is a client issue.

  • I see a shadow of the cursor

    Hi,
    On some of my slides I can see a square shadow of cursor when
    it is moving. This usually occurs after I have duplicated a slide
    and made minor adjustments to the screen shot, by either deleting
    part of the screen by merging a white text box into the background
    or add a popup image ontop of the screen shot.
    This occurs even when the slide property is set to high
    quality.
    any ideas?

    Hi Lisa
    Any chance of posting this somewhere so we can see?
    Also, does it happen on other projects? For example, if you
    just create a new and small project? It could be something that has
    gone a bit sour inside the existing project. In this case, you may
    need to re-create by opening two instances of Captivate and
    carefully copying objects and slides from one instance to the
    other.
    Cheers... Rick

  • Voice Over : Mouse pointer moves VO cursor Question

    Hi!!
    I have low vision, and i want to use the voice over with my mouse and/or trackpad. Im able to see where the text is but i cant read it well. When I enable the Voice Over I select "Mouse pointer moves Voice Over cursor in the preferences. This works fine for me, vut i noticed that when i drag the pointer over the finders sidebar it select the folders without me clicking on them. Something similar happens in Safari when scrolling the web page. There is any way to avoid this?? The Voice Over with the keyboard is very nice but  sometimes I rather use the mouse.
    Thanks in advance!!

    ladislavfromcygnet wrote:
    Thank you Shootist007. I cannot do even Update now. I probably should have spent the same amount of money on a new IMac!
    No not really. If this is a brand new Macbook Pro take it back for a refund. Apple has a 14 day No Questions Asked return policy for Full refund.
    Take it back, get the Full Refund (DO NOT LET THEM TRY TO FIX IT. YOU BOUGHT A NEW COMPUTER NOT ONE THAT HAS BEEN WORKED ON OR NEEDS TO BE FIXED) and then decide whether to buy another Macbook Pro or the iMac. Or you could return it, get the Full refund and buy some other brand computer.

  • Cursor Question

    Hi
    I have a multi-tab form and in the first tab block (B1) one of the field's values is used to populate an NBT field in another multi-record tab block (B2). When tab B2 fields are filled in, the last value is populated automatically with the value from B1. I had thought that if the value in B1 is subsequently changed then I would like the form, in B2, to update the field(s) (if any) with the new value input in B1.
    DB relation is B1 parent, B2 child.
    I thought the best option would be to use a cursor to loop through the records in B2 when:
    B1 field's system record status is 'CHANGED'
    And PK(s) in B2 are present i.e. records are present and need updated.
    So i've not really get much experience using cursors so thought this would be ideal opportunity to learn it. I created the following cursor:
    IF :system.record_status = 'CHANGED' AND :B2.ID IS NOT NULL THEN
    DECLARE
         v_mod_id NUMBER := :B2.FK; --variable used for join condition in cursor
         v_cvs_val VARCHAR2(100) := :B1.UpdatedValue; Passes updated B1 value into variable so it can be used to update B2
         CURSOR c_cvs IS
    SELECT B2_PK, B2_current_val --Current value to be updated
         FROM B2 table
         WHERE B2_FK = v_mod_id;
         B2_Table_rec c_cvs%ROWTYPE; --declares record of cursor type
    BEGIN
         OPEN c_cvs;
         LOOP
              FETCH c_cvs INTO B2_Table_rec;
              EXIT WHEN c_cvs%NOTFOUND;
              :B2.field_requiring_B1updatedValue := v_cvs_val; Passes updated value into --each field in the block B2
         END LOOP;
         CLOSE c_cvs;
    END;
    END IF;
    What I am a bit confused about is what trigger to use this in. I have used it in when validate item in B1, so when I update value the cursor should go through the records in B2 to update them, and it does, but only does it once, and only does it to the record in B2 that I left focus in; so if I was on row 2 in B2 and went and changed value in B1 it would only update row 2 in B2.
    I would appreciate if anyone can offer any advice as to where i'm going wrong, either in the cursor statement itself or in what trigger I should put it.
    thanks
    Andrew

    http://asktom.oracle.com/pls/ask/f?p=4950:8:3983328209686210967::NO::F4950_P8_DISPLAYID,F4950_P8_CRITERIA:5241391331097
    Rgds.

  • Graph Cursor Question

    I have a cursor on a XY-graph that I'm trying to adjust (x position) via controls on the front panel.  I have one control that works great and adjusts one number at a time (ex. 500 to 501, etc).  I'd like to have two controls one like I have that would be a fine adjustment (I believe) and another for coarse adjustment that would adjust the value by 50 or whatever.  Hence this would be adjusted first (ex 550) and then the other control would be adjusted for fine tuning (ex to say 551 etc). 
    I'm having trouble figuring this out, and was hoping someone could giv eme some tips or ideas as to what to do.  I thought this might be something fairly common, but maybe not.
    Thanks in advance...
    Using Labview 7.0 and 2010 SP1 with Windows XP and 7.

    LabVIEW 8.0 would make these things much easier, because we have events for cursor movements! .
    In LabVIEW 7.0, you need to code around it. For example, you could place the cursor reads into a timeout event which is only active when the mouse is down on the graph (enable timeout with mouse down, disable with mouse up event).
    The attached shows one simple possibility (I don't think you need the course control).
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    DualCursorControl3.vi ‏64 KB

  • Loop cursor question

    Hi all...
    Really stuck here. So, I have two tables.... one is passenger info, the other is flight info. The passengers have id numbers. When I enter a correct passenger num and flight num my program works fine. What Im trying to do is cause an error to appear if I enter an invalid flight or passenger number. I have a cursor set up for flight and one set up for passenger. I believe my error may be in the fetch? Can someone take a look?
    Thanks in advance
    CURSOR pass_cursor IS
    SELECT pnum, name, age FROM passengers
    WHERE pnum=V_pnum;
    CURSOR flights_cursor IS
    SELECT flnum, dest, hours, cost FROM flights
    WHERE flnum=v_flnum;
    OPEN pass_cursor;
    LOOP
    FETCH pass_cursor INTO v_pnum, v_name, v_age;
    EXIT WHEN pass_cursor%NOTFOUND;
    IF flights_cursor%ISOPEN THEN
    CLOSE flights_cursor;
    END IF;
    OPEN flights_cursor;
    LOOP
    FETCH flights_cursor INTO v_flnum,v_dest,v_hours,v_cost;
    EXIT WHEN flights_cursor%NOTFOUND;

    You don't need to loop through the cursors if you just need a validation on primary or unique keys.
    DECLARE
    CURSOR pass_cursor IS
    SELECT pnum, name, age
       FROM passengers
    WHERE pnum=V_pnum;
    CURSOR flights_cursor IS
    SELECT flnum, dest, hours, cost
       FROM flights
    WHERE flnum=v_flnum;
    -- <variable declaration>
    BEGIN
    OPEN pass_cursor;
    FETCH pass_cursor INTO v_pnum, v_name, v_age;
    IF pass_cursor%NOTFOUND THEN
    DBMS_OUTPUT.PUT_LINE('Invalid passenger id entered');
    CLOSE pass_cursor;
    -- RAISE exception;
    END IF;
    CLOSE pass_cursor;
    OPEN flights_cursor;
    FETCH flights_cursor INTO v_flnum,v_dest,v_hours,v_cost;
    IF flights_cursor%NOTFOUND THEN
    DBMS_OUTPUT.PUT_LINE('Invalid flight id entered');
    CLOSE flights_cursor;
    --RAISE exception;
    END IF;
    CLOSE flights_cursor;
    EXCEPTION
    WHEN OTHERS THEN
    -- Logic if any exception is raised 
    END;

  • Keyboard,cursor question.

    when the cursor in the textArea,how to forbit(ignore) the keyboard input,
    and how locate the cursor's position,(for example i press a button,
    then will show some text in the current cursor's position)
    Thank in advance.

    Add a keylistener to your textarea and consume all keypresses you do not want. Something on the line of this:
    public class numericTextField
        extends javax.swing.JTextField {
      public numericTextField() {
        super();
        this.addKeyListener(new java.awt.event.KeyAdapter() {
          public void keyTyped(java.awt.event.KeyEvent e) {
            char c = e.getKeyChar();
            if (!((Character.isDigit(c) ||
                   (c == java.awt.event.KeyEvent.VK_BACK_SPACE) ||
                   (c == java.awt.event.KeyEvent.VK_DELETE)))) {
              getToolkit().beep();
              e.consume();
    }Hope this helps.
    Kisses,
    Mink

  • Basic cursor question

    When does the select statement in a cursor get execute?
    Is it when the program gets parsed during execution or when the cursor is opened.
    Thanks
    MD

    FrancisC_1 wrote:
    Would both queries for c1 and c2 be executed? Maybe it's more subtle than that and the queries might be parsed but no data actually fetched?
    I don't know if it matters, but I'm on version 9i.
    Any insight will be appreciated.In short. No.
    The cursor definitions in the declaration section do not cause "execution" of the cursors. This only happens when, you open the cursor, which in your case is done when the relevant FOR loop is started.
    Example:
    SQL> ed
    Wrote file afiedt.buf
      1  CREATE OR REPLACE PROCEDURE p1 (param1 IN VARCHAR2) IS
      2    CURSOR c1 IS
      3      SELECT empno
      4      FROM emp
      5      WHERE empno = to_number(param1);
      6  BEGIN
      7    DBMS_OUTPUT.PUT_LINE('Pre-Open');
      8    FOR r IN c1 LOOP
      9       DBMS_OUTPUT.PUT_LINE(r.empno);
    10    END LOOP;
    11    DBMS_OUTPUT.PUT_LINE('Post-Close');
    12  EXCEPTION
    13    WHEN OTHERS THEN
    14      DBMS_OUTPUT.PUT_LINE('Exception');
    15      RAISE;
    16* END;
    SQL> /
    Procedure created.
    SQL> set serverout on;
    SQL> exec p1('7788');
    Pre-Open
    7788
    Post-Close
    PL/SQL procedure successfully completed.
    SQL> exec p1('77xx');
    Pre-Open
    Exception
    BEGIN p1('77xx'); END;
    ERROR at line 1:
    ORA-01722: invalid number
    ORA-06512: at "SCOTT.P1", line 15
    ORA-06512: at line 1
    SQL>As you can see, when an invalid number was passed in, this didn't cause an exception to happen within the declaration section, but only when the FOR loop was started, so the actual execution of the query (that would try to convert the parameter to a number) only happened then, not during the declaration.
    As your procedure is designed to run one FOR loop or the other depending on the parameter, only the one relevant query will be executed.

  • Mouse cursor question....

    On pages, how do i type where the mouse cursor is? On Word you can double click and start typing where the mouse cursor is. Anyone have any ideas??
    Thanks
    -Dave

    Dave,
    I haven't used Word for years, but it never worked that way for me, if I understand what you are getting at, and Pages doesn't work that way.
    If you want to type just anywhere on a blank page, Insert > Text Box and position the box so the upper left corner is where you want to start. Then begin typing.
    Jerry

  • Text cursor question

    Recently moved from OS9 to OSX 10.5.8... and I've having a devil of a time with the text cursor and effectively selecting text (releasing the mouse usually releases the selected text and I seem to have to select text way under the line to actually get it to stick consistently).
    Back in the day, cursors had a "hot spot", which was the actual active pixel within the cursor's image.
    Has the "hot spot" changed a bit in the OS X text cursor, compared to OS 9?
    I'm having the same problems in almost every app.
    Am I barking up the wrong tree here?
    If not, is there some utility that can allow me to adjust the "hot spot"?
    Thanks!

    Are you using a mouse with your Macbook Pro? Are you using the Mighty Mouse or a 3rd party mouse? Have you checked your mouse settings through System Preferences or if using a 3rd party mouse the Preference Pane within System Preferences?
    is there some utility that can allow me to adjust the "hot spot"?
    Check Versiontracker, Macupdate and Google.

  • Re: g6t-2000 loading circle next to cursor will not stop blinking

    I have the same problem.I got a blinking circle on my screen and every time this circle show up, i have to turn off my pc because don't let me do nothing. Any solution for that issue? My pc:HP ENVY Recline TouchSmart All in One - 27-k350 (ENERGY STAR)Número de modelo: J4W47AA

    Hi again Andieco, It is good to hear back from you! If your computer is not freezing when you are referring to a white circle, there may be an issue with the touch screen software installed on your computer. To correct this, I suggest re-installing all of the original software and hardware drivers that first came with your computer. This can be done by following the steps in this document on Using Recovery Manager to Restore Software and Drivers (Windows 8), and then update the software by Using HP Support Assistant (Windows 8). If the white cursor will not stop blinking after performing the steps in the documents above, I recommend returning your system back to a previous restore point to before the issue occurred. This can be done by following the steps in this document on Using Microsoft System Restore (Windows 8).
    Should the problem continue, I suggest performing a backup and recovery of your operating system. This can be done by following the steps in this resource on Backing Up Your Files (Windows 8), as well as Performing an HP system recovery (Windows 8). This should return your system back to factory defaults.
    If the issue persists, please call our technical support by clicking the link below to get the support number for your region.
    www.hp.com/contacthp/
    I hope this helps!
    Regards

Maybe you are looking for

  • Importing projects into iMovie '11

    Hi. I've been trying the last couple of days to get my old projects, wich i made on my iMac in iMovie '08, inro iMovie '11 on my MacBook Pro. I've tried to use the "Import iMovie HD-Project" function, but i can't mark the files. I've tried to jut ope

  • How to get the name of tag or variable

    Hi everyone, I am a newbie, I have problem on getting the name or tag of the variable from OLE for Processing Control(OPC) server, could anyone tell me how I can get the name of tag or variable from writting vb codes or please direct me to any helpfu

  • Upgarde from Macbook to Pro

    I will be upgradeing from a macbook (Intel) to a Macbook pro. I am use to a windows system where I have to install all my applications again from scratch. Do I have to do this on my mac? Here are some of the applications I have. ILIFE 09, IWORK 09, A

  • Populate HTML LIST ITEM with a query

    Hello, I've a problem, I'm building a portlet based on an html form. In this forms there are several list items, How can I populate an html list item with a dynamic query based on a db table?

  • Query VM for number of object instances, possible?

    I have a super duper java guru question: Given a class object (or equivalently a class name and it's respective class loader), is there a way to determine if any instances of this class exist in the VM? I don't care how many, I just want to know if t