At end of timeline cursor returns to beginning and starts over?

I am sure there is an easy fix to this very minor issue.
When I get to the end of any timeline the cursor automatically jumps back to the beginning and starts over.
How do I get it to just stop at the end of the timeline?
It used to stop and just started doing this somewhow? To my knowlege I have not made any changes to sequence settings, user preferences, etc.
Many Thanks,
Peter Mallamo

If it was a snake it would have bit me!
Thanks Michael. I guesss I somehow hit control L.
Thanks again,
PM

Similar Messages

  • My Macbook pro was stolen 09/12, the police just returned it to me. I want to remove all the data and start over. Format the drive's etc. I have windows 7 on 1 partion and mountain lion OSX on the apple partition. How is the best way to do this?

    My Macbook pro was stolen 09/12, the police just returned it to me. I want to remove all the data and start over. Format the drive's etc. I have windows 7 on 1 partion and mountain lion OSX on the apple partition. How is the best way to do this?

    Have a look here...
    what-to-do-when-your-hard-drive-is-full.html

  • I have used firefox for 3 or 4 years, today it would not open. I had to reinstall and start over from the beginning. I lost a lot of bookmarks and preferences.

    Adobe installed an update, which restarted my desktop pc. After restarting I was unable to open Firefox browser. So, I clicked on Firefox, and then run as... first I tried running as... and chose my name. Firefox browser still would not open. Then I chose administrator which opened Firefox browser, but, as a new Firefox installation. It did contain add-ons, but not book marks, history, downloads or preferences. Now i have started over from the beginning. Is there any way I can restore lost bookmarks and preferences? Do you think system restore would help?

    Are there still JSON backups in the bookmarkbackups folder?
    *http://kb.mozillazine.org/Lost_bookmarks
    You can use this button to go to the Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder

  • When typing the cursor will stop typing and you willhaveto click again where you stopped and start over

    When in a program (IE 11 or Word, Outlook, etc..) my User will begin typing. After a few characters the system will just stop accepting the typing. The User will have to Click in to the field to get the cursor back to the correct point & begin typing
    from that point.
    This seems to happen very frequently for all my users.  We recently deployed new PCs with Win 7 32-byte on them to everyone.  Has anyone seen this happen and have any remedy for it?
    I have replaced the keyboard thinking that is the issue but upon further research I am leaning more toward it being a Windows 7 issue.
    Les Rose Network Administrator

    Hi,
    This issue may be caused by the below reasons:
    The mouse. The cursor missing from the current page may be caused by the mouse lost its focus point, this may because of the mouse itself or some other elements(Mouse pads and mouse drivers) which may affect
    the function of the mouse. If laptops, please try to disable touch board.
    Other applications. Please check if there are any applications(Usually some virus or scripts) running automatically when typing, some applications may call the cursor out when it starts.
    Network connection. If you use the wireless network, please make sure the connection is well configured on the client side, check WLAN NICs and the driver.
    The printer driver. In addition to this, please also verify the PC have all the other drivers up-to-date.
    Please take a health check and update the anti-virus databases, if possible try a clean boot , also change a mouse and check the other aspects and see if the problem still exists.
    Hope this may help,
    Best regards
    Michael
    If you have any feedback on our support, please click
    here.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • How to wipe everything and start over from the beginning in Lightroom 4

    i had photos all over the place including in Lightroom I moved them all to an external hard drive now I want to reinstall Lightroom but can't find the disc. How to wipe everything and just restart.

    Creating a new catalog and reimporting to it is the easiest way to start over. However, you should be aware that by doing so you will lose any editing and organizing that you have done because unless you have exported edited versions the edits are no more than entries in the old catalog - the photos are unchanged. If you do want to retain your work, a better route would be to revise the old catalog and bring it up to date with the new folder and photo locations, as explained here: Can I simply move my main pictures folder to External Hard Drive?

  • Javadoc Comments Begin and End Offset, Line number etc...

    Hello Everyone,
    I was wondering if there is a method that return the begin and end offsets, and line number of source code comment. I know this is possible to get the line number for Doc, MethodDoc, ConstutorDoc etc... with the position() method. I was unable to get the locations of comments corresponding to the actual source code. Also, I found that when asking for the position of constructors the value returned was that of the class, is this a known bug?
    Thanks in Advanced,
    Nick

    nkhamis wrote:
    Just out of curiosity, what do the folks at sun use for Java Parsers?They didn't need to go too far. The Java Parser must be a part of any Java compiler itself! Therefore, it is a part of any JDK. Obviously, they have some internal API of their Java parser and, I guess, Javadoc uses it to build the Java code model provided via the Doclet API. But Sun had never published the full API to their Java parser. (At least, I don't know such.) Although, it would be very useful indeed...
    FYI, a parser for a high-level programming language (like Java) is a software module that inputs a program written (by humans) as text in that language and converts it into some object representation (model) "understandable" to computer. That object representation must be a sort of tree representing all the language constructs found in the program. Typically, that tree is accessible via a certain API, which I call here a Parser API (although, other terminology may be used).
    Other software modules may use that object representation of the program for various purposes, for instance:
    - To generate an executable machine (or byte-) code by it
    - To transform the initial program in order to optimize it (this is used by compilers) or to do other things (e.g. refactoring)
    - To generate documentation (that's what Javadoc does)
    Besides generating the program object representation, another job of a parser is to provide diagnostics about various syntactical errors found in the initial program source (a well as possibly some semantic warnings).
    A parser is rather sophisticated piece of code. To develop it properly, one needs to learn first some theory about this, e.g. a formal grammar that describes the given programming language and how to deal with it. I know, there have been attempts to create some universal parsers that can be adjusted to parse any programming language (within a certain range) by specifying to them some formal grammar of that language. That topic was particularly beloved by university guys, so there must be many scientific articles about this.
    thomas.behr wrote:
    Well, if you are developing an Eclipse plugin, have you considered working with Eclipse' Abstract Syntax Tree (basically an object model for Java code) instead of the Doclet API?Interesting stuff... Looks like this might be that very Java parser API I am talking about here.
    Leonid Rudy
    [http://www.docflex.com|http://www.docflex.com]

  • How to calc the begining and end of every month (leap year)

    Hi all,
    I'm looking for a method that returns the begining and end of next month.
    example:
    today is 2005-10-04
    so the method suppose to return:
    2005-11-01
    2005-11-31 //as it ends on the 31
    I came up with the code below - but I don't like it as I can't get the end of month + it's not safe.
    any suggestions.
    Thanks
    Peter
    Calendar gcToday = Calendar.getInstance();
              int month = gcToday.get(Calendar.MONTH);
              int year  = gcToday.get(Calendar.YEAR);
              month+=2;
              if(month>12) //beacuase of month+=2;
                   year++;
                   month=1;
              String nextMonth;
              if (month<10)                         
                   nextMonth=year+"-0"+month+"-01";
              else
                   nextMonth=year+"-"+month+"-01"; 

    Look at using the methods getActualMaximum() and getActualMinimum() in the Calendar class. Basically what I would do is set the calendar to the 15th of the month (well, really anything between 1 and 28) and then add() one to the current month. The Calendar will roll over the dates as needed.

  • Scanjet 4890 light bar travels to end of scanning glass and will not return to beginning

    My ScanJet 4890 sometimes does not work properly.  In the preview mode, the light bar will sometimes travel to the end of the scanner with light on and not return back.  The motor gets a high pitched whine.  I have to turn the scanner off and back on the get the light bar to return to the starting position.  Sometimes it does work properly.    How do I fix my scanner?
    This question was solved.
    View Solution.

    I found an unusual solution to my own problem.  I drilled a hole in the front of the scanner case.  Then when the light bar gets stuck, I poke a pencil through the hold and give the light bar a shove.  The bar moves on it's own and returns to it's parked position. Then,  I can continute without turning the scanner on and off.  I suspect that the motor needs to be replaced, which I may eventually do if I can find the right one.

  • Ipod nano 5th gen, when listening to audiobooks, ipod does not advance to next part when previous part ends, it returns to beginning of previous part

    when listening to audiobooks, when a part finishes, i.e., part 1, ipod starts over at beginning of part just finished instead of advancing to the next part, i.e., part 2.  Is there some setting I can change so it advances to next part instead of repeating the part I just finished?

    iPod Nano 5th Gen. User Manual 

  • How to find if cursor returned rows

    If i have a procedure like
    create procedure test as
    cursor cur_test is
    select col
    from table;
    begin
         delete from tab1 a;
         for var_cur_test in cur_test
         loop
              insert into temp
              values(var_cur_test.col);
         end loop;
         commit;
    end;
    How do I check if the cursor has returned any rows?
    I dont want to delete from tab1 if cursor 'cur_test' does not return any rows and I want to exit out of the proc.
    If the cursor returns rows > 0 then I want to delete and do the insert.
    Thanks for the help.

    The scenario is like this.
    There is a schema A which has to run a process and populate its tables and at the end of the process(java program) run the procedure which is in schema B to pull data from schema A and populate the tables in schema B. If there is a case where Schema A's process fails( then Schema A's tables end up with no data), the process is still running the procedure in schema B and deleting the data in tables with no data being inserted.
    So, I have to check in the procedure if the tables in Schema A have any data before the process can run the proc.
    I tried the solution you provided but it returns no data
    CREATE OR REPLACE PROCEDURE MMA_TEST
    VAR_CONTRACT_ID VARCHAR2
    AS
    CURSOR CUR_TEST IS
    SELECT CMS_CONTRACT_ID,CMS_PLAN_ID
    FROM MMA_PLANS
    WHERE CMS_CONTRACT_ID = VAR_CONTRACT_ID;
    BEGIN
         for var_cur_test in cur_test
         loop
              if (cur_test%rowcount = 1) then
              delete from temp ;
              end if ;
              insert into temp
              values(var_cur_test.cms_contract_id,var_cur_test.cms_plan_id);
         end loop;
    end;

  • Creating a function having a ref cursor returned

    I get an error message for the following code below. I am trying to create a function that allows the users to pass in a certain parameter which is used to invoke a specific query for the paramented passed in. Once the query is invoked, it should return a ref cursor. Please help. I am still using pl/Sql developer.
    create or replace package TEST2 is
    type rec_DropDownList_Item is RECORD(
    TEXT_TYPE VARCHAR2(200),
    xsVALUE VARCHAR2(200));
    TYPE cur_DropDownList IS REF CURSOR RETURN rec_DropDownList_Item;
    FUNCTION Getprocedure_yearreportdisplay (need_type in VARCHAR2) RETURN cur_DropDownList;
    end TEST2;
    create or replace package body TEST2 is
    FUNCTION Getprocedure_yearreportdisplay (need_type in VARCHAR2)
    RETURN cur_DropDownList IS
    my_ref_cursor cur_DropDownList;
    BEGIN
    OPEN my_ref_cursor FOR
    SELECT vehicletype, vehicledescription
    FROM cars where vehicletype = need_type;
    return my_ref_cursor;
    END Getprocedure_yearreportdisplay;
    end TEST2;

    user13046875 wrote:
    a simple example might help because I am having a difficult understanding the reply. Thank you.
    create or replace package TEST2 is
       type rec_DropDownList_Item is RECORD(
       TEXT_TYPE VARCHAR2(200),
       xsVALUE VARCHAR2(200));
       TYPE cur_DropDownList IS REF CURSOR RETURN rec_DropDownList_Item;
       FUNCTION Getprocedure_yearreportdisplay (need_type in VARCHAR2) RETURN cur_DropDownList;
    end TEST2;
    create or replace package body TEST2 is
    FUNCTION Getprocedure_yearreportdisplay (need_type in VARCHAR2)
    RETURN cur_DropDownList IS
    my_ref_cursor cur_DropDownList;
    BEGIN
       OPEN my_ref_cursor FOR
       SELECT 'column1', 'column2'
       FROM dual;
       return my_ref_cursor;
    END Getprocedure_yearreportdisplay;
    end TEST2;
    TUBBY_TUBBZ?variable x refcursor;
    TUBBY_TUBBZ?
    TUBBY_TUBBZ?exec :x := TEST2.Getprocedure_yearreportdisplay('dummy');
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.01
    TUBBY_TUBBZ?print :x
    'COLUMN 'COLUMN
    column1 column2
    1 row selected.
    Elapsed: 00:00:00.03
    TUBBY_TUBBZ?Is an example of running in SQLPLUS (you may want to get your own copy, it's free and available on OTN).

  • How to read my cursor that is ref cursor returning user defined type

    Hi
    I have types defined as follows:
    TYPE MY_RECORD IS RECORD (
    COL1 TABLE1.COL1%TYPE,
    COL2 TABLE1.COL2%TYPE
    TYPE MY_CURSOR IS REF CURSOR
    RETURN MY_RECORD;This is used as return type in a stored procedure.
    I have a pl/sql block where I make a call to the SP that returns this cursor.
    How can I read individual values being returned from SP?

    SQL> create or replace package pkg
    as
       type my_record is record (col1 emp.empno%type, col2 emp.ename%type);
       type my_cursor is ref cursor
          return my_record;
       procedure p (cur out my_cursor);
    end pkg;
    Package created.
    SQL> create or replace package body pkg
    as
       procedure p (cur out my_cursor)
       as
       begin
          open cur for
             select   empno, ename
               from   emp
              where   rownum <= 2;
       end p;
    end pkg;
    Package body created.
    SQL> declare
       cur     pkg.my_cursor;
       e_rec   pkg.my_record;
    begin
       pkg.p (cur);
       loop
          fetch cur into   e_rec;
          exit when cur%notfound;
          dbms_output.put ('Empno: ' || e_rec.col1);
          dbms_output.put_line ('; Ename: ' || e_rec.col2);
       end loop;
       close cur;
    end;
    Empno: 7369; Ename: SMITH
    Empno: 7499; Ename: ALLEN
    PL/SQL procedure successfully completed.

  • What is a good way to check if sql select basd cursor return anything

    Hello everyone,
    I am trying to find a good way to identify that a SQL select based cursor return nothing.
    I know that or we use exception when no data found, or count(*) to check how many rows are returned.
    I have a cursor based on quite a long select statement.
    Like
    CREATE OR REPLACE PROCEDURE aaa (v_input IN NUMBER, v_output OUT VARCHAR2)
         CURSOR long_cursor IS
              --long select statement(with input variable) ;
    BEGIN
         Select count(*)
         Into v_count
      From
      -- a long select statment with input again ;
      IF v_count > 0 then
        For record in long_cursor loop
         --Get information from cursor
            --other processing for output
        End loop;
      END IF;
    END;Is there any other way than the above ?
    I would love to reduce the amount of typing. I know that repetition in code is not good.
    Thanks in advance,
    Ann
    Edited by: Ann586341 on Feb 28, 2013 2:29 PM

    >
    Not sure I understand your point. I am still a new bie here.
    >
    A flag is just a piece of data. By itself it doesn't prevent anyone from changing the data. And in a multiuser system anything you try to check is based on the COMMITTED data in the system. Two users can be changing two different rows at the same time but neither user will see the other change.
    So if you try to count how many rows meet a particular condition you may get a count of 8 but after the other user commits the count might be 7 or 9. So if you use 8 it may not be valid for very long.
    >
    But the app we use is Oracle Application Express 4.0.
    I assume when the data is read, there will be some kind of lock on these rows so other users cannot change it, right ?
    Or should I use SELECT for update even I do not update anything here.
    >
    I can't help you with that one. That would be a question for the application express forum.
    Oracle Application Express (APEX)
    You don't need to use FOR UPDATE if you don't plan to change the data. But, as explained above, you can't rely on any data you query being the same because another user could be changing it while you are looking at it.

  • How do i pause the timeline cursor at the point where i press the spacebar

    Right now the cursor always goes to the start of the timeline after i press the spacebar.

    You have received 40 or so views in less than an hour. Sometimes it takes days for other suers to drop by and your post is arriving during the start of a long holiday weekend in the Sates so it might not be till next week befor someone who really knows how to answer this shows up. Your post is being viewed by people who want to know if you are serious but have no help to offer. Woudl you rather they posted nonsense? I have never had AE jumpt back to the start of the timeline and posting that information does not help you. I can assume you have a some sort of pref incorrectly set or your keyboard has been tweaked at the OS level to interpret a spacebar in AE as a Media Start command.
    From the AE help system:
    To modify keyboard shortcuts, use the KeyEd Up script from Jeff Almasol, which is available on the Adobe After Effects Exchange website.
    Sebastien Perier provides instructions on his website for assigning keyboard shortcuts to scripts so that you can run a script with a single keystroke. This technique relies on the KeyEd Up script.
    For information on remapping keyboard shortcuts for keyboard layouts other than the standard US English layout, see Jonas Hummelstrand’s website.
    For a reference of keyboard shortcuts, see Keyboard shortcuts reference.
    Note: On Mac OS, some keyboard commands for interacting with the operating system conflict with keyboard commands for interacting with After Effects. Select Use System Shortcut Keys in the General preferences to override the After Effects keyboard command in some cases in which there’s a conflict with the Mac OS keyboard command.
    Time navigation (keyboard shortcuts)
    Go to specific time
    Alt+Shift+J
    Option+Shift+J
    Go to beginning or end of work area
    Shift+Home or Shift+End
    Shift+Home or Shift+End
    Go to previous or next visible item in time ruler (keyframe, layer marker, work area beginning or end)
    Note: Also goes to beginning, end, or base frame of Roto Brush span if viewing Roto Brush in Layer panel. 
    J or K
    J or K
    Go to beginning of composition, layer, or footage item
    Home or Ctrl+Alt+Left Arrow
    Home or Command+Option+Left Arrow
    Go to end of composition, layer, or footage item
    End or Ctrl+Alt+Right Arrow
    End or Command+Option+Right Arrow
    Go forward 1 frame
    Page Down or Ctrl+Right Arrow
    Page Down or Command+Right Arrow
    Go forward 10 frames
    Shift+Page Down or Ctrl+Shift+Right Arrow
    Shift+Page Down or Command+Shift+Right Arrow
    Go backward 1 frame
    Page Up or Ctrl+Left Arrow
    Page Up or Command+Left Arrow
    Go backward 10 frames
    Shift+Page Up or Ctrl+Shift+Left Arrow
    Shift+Page Up or Command+Shift+Left Arrow
    Go to layer In point
    I
    I
    Go to layer Out point
    O
    O
    Go to previous In point or Out point
    Ctrl+Alt+Shift+Left Arrow
    Command+Option+Shift+Left Arrow
    Go to next In point or Out point
    Ctrl+Alt+Shift+Right Arrow
    Command+Option+Shift+Right Arrow
    Scroll to current time in Timeline panel
    D
    D
    To the top 
    Previews (keyboard shortcuts)
    Start or stop standard preview
    spacebar
    spacebar
    RAM preview
    0 on numeric keypad*
    0 on numeric keypad* or Control+0 (zero) on main keyboard
    RAM preview with alternate settings
    Shift+0 on numeric keypad*
    Shift+0 on numeric keypad* or Shift+Control+0 (zero) on main keyboard
    Save RAM preview
    Ctrl-click RAM Preview button or press Ctrl+0 on numeric keypad*
    Command-click RAM Preview button or press Command+0 on numeric keypad*
    Save RAM preview with alternate settings
    Ctrl+Shift-click RAM Preview button or press Ctrl+Shift+0 on numeric keypad*
    Command+Shift-click RAM Preview button or press Command+Shift+0 on numeric keypad*
    Preview only audio, from current time
    . (decimal point) on numeric keypad*
    . (decimal point) on numeric keypad* or Control+. (period) on main keyboard
    Preview only audio, in work area
    Alt+. (decimal point) on numeric keypad*
    Option+. (decimal point) on numeric keypad* or Control+Option+. (period) on main keyboard
    Manually preview (scrub) video
    Drag or Alt-drag current-time indicator, depending on Live Update setting
    Drag or Option-drag current-time indicator, depending on Live Update setting
    Manually preview (scrub) audio
    Ctrl-drag current-time indicator
    Command-drag current-time indicator
    RAM preview number of frames specified by Alternate RAM Preview preference (defaults to 5)
    Alt+0 on numeric keypad*
    Option+0 on numeric keypad* or Control+Option+0 (zero) on main keyboard
    Show current frame on video preview device
    / (on numeric keypad)
    / (on numeric keypad)
    Toggle Output Device preference between Desktop Only and video preview device
    Ctrl+/ (on numeric keypad)
    Command+/ (on numeric keypad)
    Take snapshot
    Shift+F5, Shift+F6, Shift+F7, or Shift+F8
    Shift+F5, Shift+F6, Shift+F7, or Shift+F8
    Display snapshot in active viewer
    F5, F6, F7, or F8
    F5, F6, F7, or F8
    Purge snapshot
    Ctrl+Shift+F5, Ctrl+Shift+F6, Ctrl+Shift+F7, or Ctrl+Shift+F8
    Command+Shift+F5, Command+Shift+F6, Command+Shift+F7, or Command+Shift+F8
    Note: Some shortcuts are marked with an asterisk (*) to remind you to make sure that Num Lock is on when you use the numeric keypad. 

  • Ref cursor returns login ids

    I have this ref cursor that returns login ids from a procedure.
    While I can define the ref cursor as sys_refcursor; I want to use strongly typed ref cursor ( for improved readabilty of code).
    But I guess I can not define the cursor that returns %type.
    e.g. Type return_login_id IS REF CURSOR return tab1.login_id%type;
    On compilation the package threw an error saying the return type should be record.
    I need to define a record with one column and use that as return type ?
    any other way around ?
    TIA
    S

    Btw, why you need to use REF Cursor?
    You can use just a cursor:
    SQL> declare
      2  cursor c1 is select empid from emp;
      3  TYPE my_id IS TABLE OF emp.empid%type;
      4  myid my_id := my_id();
      5  BEGIN
      6  OPEN c1;
      7  FETCH c1 BULK COLLECT INTO myid;
      8  CLOSE c1;
      9  END;
    10  /
    PL/SQL procedure successfully completed.
    SQL>

Maybe you are looking for

  • Personalization preview okay but doesn't show for end user

    Hi, I've built a folder structure for iviews, pages, worksets, and roles and then delta linked across the standard ESS iviews into my new iview folder. I've done the same with the pages and then updated the page with the copied iview and from there b

  • Can't acess music

    I had a problem with my ipod and now all my music is gone. I mean it's not gone but I can't have acess to it, and when I start Itune, the space still ocupied by it, but appear has "other". Is there any way to get my music back has music?

  • WLST script to change Endpoint URI

    Is it possible to change endpoint URI using WLST. If yes please provide the sample script for this. It is very urgent to implement in my project. Regards James

  • Price correction issues using VA01 for credits/debits

    All, What would cause a user to not be able to enter a manual pricing condition on a credit/debit document type?  The scenario is that we need to enter a price adjustment but when we go to the line item conditions tab of VA01 the screen does not allo

  • Where can I find...

    Now that I have my spinning menu perfected, many thanks and kudos to forum user: muho_tr for helping me simplify a process using arrays and variables. I need to progress. http://www.magiccamera.com/MagicFlashTest.html The Adobe documentation assumes