Move out of table using keyboard

When editing the contents of a table in Design view, is it
possible to move the insertion point out of the table using only
the keyboard--that is,
without having to click the mouse somewhere outside the
table.

This, from DW's F1 help, certainly works for me -
To exit the table, press Control+A three times if the
insertion point is in
a cell, twice if the cell is selected, or once if the table
is selected, and
then press the Up, Left, or Right Arrow key.
Murray
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"Jeff Jansen" <[email protected]> wrote in
message
news:f7ggmt$g2i$[email protected]..
> When editing the contents of a table in Design view, is
it possible to
> move the
> insertion point out of the table using only the
keyboard--that is,
>
without having to click the mouse somewhere outside the
table.
>

Similar Messages

  • Generic Extractors with Fm / Finding out tables used

    Hello Gurus,
    for a requirement, i would like to find out the table used in a generic extractor with function module.
    I can see the structure with the objects used but not the tables where they are from.
    How can i find that out?
    Thank you
    Pat

    Hi Gilo ,
    The best way to find out the tables used in the function module will be to analyze the code . Check all your Select Statements in the code and see the tables being used there .
    Sometimes in the code , we use standard function modules from the ECC. Check those standard FMs also and see what table they are using .
    Hope the above reply was helpful.
    Thanks & Regards,
    Ashutosh Singh

  • Using keyboard commands to move an object

    Hello, I am trying to make a quasi-asteroids program. I'm trying to move a ship around using keyboard commands. If I put the keyboard commands in the same class as the ship it does fine. Now I'm trying to put all the keyboard commands in their own class. This is where I am starting to have trouble. Here's the code for the commands class and ship class.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Ship implements KeyListener
         ImageIcon ship;
         final int WIDTH = 300;
         final int HEIGHT = 225;     
         final int JUMP = 5;
         private int     x,y;          
         private int iWidth, iHeight;
         public boolean movingLeft,movingRight,movingUp,movingDown;
         public Ship ()
              ship = new ImageIcon ("ship.gif");
              iWidth = ship.getIconWidth();
              iHeight = ship.getIconHeight();
              x = WIDTH/2-10;
              y = HEIGHT/2;
         public void move ()
              if (movingLeft)
                   x -= JUMP;
              if (movingRight)
                   x += JUMP;
              if (movingUp)
                   y -= JUMP;
              if (movingDown)
                   y += JUMP;
         public void draw (Graphics page)
              page.drawImage (ship.getImage(),x,y,null);
    import java.awt.*;
    import java.awt.event.*;
    public class DirectionListener implements KeyListener
         private Ship s1;
         public DirectionListener ()
              s1 = new Ship ();
         public void keyPressed (KeyEvent event)
              switch (event.getKeyCode())
                   case KeyEvent.VK_DOWN:
                        s1.movingDown=true;
                        break;
                   case KeyEvent.VK_UP:
                        s1.movingUp=true;
                        break;
                   case KeyEvent.VK_LEFT:
                        s1.movingLeft=true;
                        break;
                   case KeyEvent.VK_RIGHT:
                        s1.movingRight=true;
                        break;
         public void keyReleased (KeyEvent event)
              switch (event.getKeyCode())
                   case KeyEvent.VK_DOWN:
                        s1.movingDown=false;
                        break;
                   case KeyEvent.VK_UP:
                        s1.movingUp=false;
                        break;
                   case KeyEvent.VK_LEFT:
                        s1.movingLeft=false;
                        break;
                   case KeyEvent.VK_RIGHT:
                        s1.movingRight=false;
                        break;
         public void keyTyped (KeyEvent event) {}
    The problem is obviously trying to communicate between the classes. Why can I not assign the boolean variables in the Ship class from the DirectionListener class? Thanks in advance.

    A program is worth a thousand words, er a ... well whatever ...
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Ship extends JFrame {
      ImageIcon ship;
      final int WIDTH = 300;
      final int HEIGHT = 225;
      final int JUMP = 5;
      private int x,y;
      private int iWidth, iHeight;
      private boolean movingLeft,movingRight,movingUp,movingDown;
      public Ship() {
        ship = new ImageIcon ("ship.gif");
        iWidth = ship.getIconWidth();
        iHeight = ship.getIconHeight();
        x = WIDTH/2-10;
        y = HEIGHT/2;
        this.getContentPane().addKeyListener( new DirectionListener() );
        // You'd add the DirectionListener to whatever component you want.
      public void move() {
        if (movingLeft)  x -= JUMP;
        if (movingRight) x += JUMP;
        if (movingUp)    y -= JUMP;
        if (movingDown)  y += JUMP;
      public void draw (Graphics page) {
        page.drawImage (ship.getImage(),x,y,null);
      class DirectionListener implements KeyListener {
        public DirectionListener() {
        public void keyPressed(KeyEvent event) {
          switch (event.getKeyCode()) {
            case KeyEvent.VK_DOWN:
              movingDown=true;
              break;
            case KeyEvent.VK_UP:
              movingUp=true;
              break;
            case KeyEvent.VK_LEFT:
              movingLeft=true;
              break;
            case KeyEvent.VK_RIGHT:
              movingRight=true;
              break;
            default: break;
        public void keyReleased(KeyEvent event) {
          switch (event.getKeyCode()) {
            case KeyEvent.VK_DOWN:
              movingDown=false;
              break;
            case KeyEvent.VK_UP:
              movingUp=false;
              break;
            case KeyEvent.VK_LEFT:
              movingLeft=false;
              break;
            case KeyEvent.VK_RIGHT:
              movingRight=false;
              break;
            default: break;
        public void keyTyped(KeyEvent event) {
      public static void main(String[] argv) {
        new Ship();
    }... I made it an inner class, because you want to do very program specific stuff. I don't know really if I like this approach either, but I can't see what else you'd mean to do with the code you posted, what with the DirectionListener class doing such specific kinds of things.
    Some general critique: You forgot to add the 'default' keyword to your switch statements; and you really don't want to make the booleans public.
    ~Bill

  • How to find out the tables related to CRM datasources?

    How to find out the tables related to CRM datasources? For example, the table related to 0CRM_OPPT_H.
    Regards,
    R.Ravi

    Hi Ravi,
    To find out all tables used go into the CRM source system to transaction RSA3 and prepare the selections for extraction of your datasource.
    In a parallel session execute transaction ST05 and press the button 'Activate Trace'
    Go back to the extracor checker and execute the extraction.
    Switch sessions and subsequently 'Deactivate Trace' and 'Display Trace'.
    This will list all tables used.
    regards,
    Olav

  • Gas Billing G 685, CONDET, THGDATUM and Move-Out Processing

    Hello,
    according to G 685 the THGDATUM of a meter reading result should be set to the last day of the previous month,
    or of the month before that (if no gas factors are available for the previous month). The customer has implemented
    an exit in EDMMR002 which does exactly that - each result gets an appropriate value in THGDATUM.
    Each? Not each! For Move-Outs, the exit is not called and the move-out-date is used. This is not necessarily a date
    for which we already have gas factors. In the Consumption Storage we only get an "Incomplete" entry instead of
    a "Complete" one, and if there are later readings we cannot give them an earlier THGDATUM than the one found in
    the move-out, meaning that they are also incomplete.
    We have the impression that G 685 rules are not properly implemented in IS-U. Have others here encountered the
    same problem, and how did you handle it? Or are we just overlooking something?
    Thanks,
    Bernd

    Hello,
    first let me apologize for replying only now, but I was out of the office for some time.
    Meter readings are stored as 09 here as well, and have their THGDAT adjusted. Some problems could be
    eliminated by fixing an incorrect customizing in TE125 (allowed deviation of THGDAT), but still the move-out
    processing overwrites the date, i.e.:
    Move-out date 1.11., move-in 2.11.
    Both readings are received before the UTILMDs arrive, so 2 readings with reason 09 are stored.
    The THGDAT for both is 31.10.
    The move-out UTILMD is received and assumes a THGDAT of 1.11. (I also noticed this when debugging a manual
    move-out some time ago, so it does not appear to be a problem with the UTILMD processing). As the UTILMD does
    not carry a meter reading, the exit to adjust the date is not called. However, the wrong THGDAT is then saved.
    When the move-in is received and processed, it finds a reading with a THGDAT 30.10. which is not later or equal
    than the THGDAT 1.11. of the move-out reading.
    I have opened a call with SAP to get a clarification - IMO either the THGDAT of the existing reading should be used,
    or the exit should be called.
    Kind regards
    Bernd Wolff

  • Movieclip.x movement using keyboard event

    Hi, im working on a game project and i have a question about movie clip movement using keyboard event.
    Basicly i have a character on screen and it can move on the x axis using the left and right buttons.
    Im making my charater move by changing the x value of the character movieclip but i find very it laggy and not smooth and if im going point by point
    then it's too slow.
    Whats the best way to make the character move so that the transition will be smooth.

    Ok obviously you've left out where you add your eventListener, i'll assume that's a KEY_DOWN event. When the user holds down a key, that key event is triggered once immediately and then after a pause it is triggered at regular intervals. Check this out by holding down the up/down arrow and watching this browser window scroll.
    That's not the movement you'd be looking for when moving a character in a game. Instead, you'd be setting a variable on KEY_DOWN to indicate the character direction - it could be an integer for example that you increase by 1 if the user pressed RIGHT or decrease by 1 if the user pressed LEFT.
    In addition to your KEY_DOWN eventListener, you could have an ENTER_FRAME and  KEY_UP eventListeners set up:
    The enterFrame event handler could move the character in the direction specified in your direction variable. This is where you might ensure your character doesn't go beyond its limits in both directions.
    In the keyUp event handler, you could do the converse of what you did in the keyDown handler(increase by 1 if the user released LEFT, decrease by 1 if the user released RIGHT).

  • How to find out the Non Partitioned Tables used 2Gb on oracle

    Hi team
    how to find out the Non Partitioned Tables used > 2Gb on oracle where not is sys & system
    regards

    heres 1 I made earlier
    set pagesize 999
    set linesize 132
    col owner format a25
    col segment_name format a60
    select owner,segment_name,segment_type,(bytes/1024/1024)"MB size"
    from dba_segments
    where owner not in ('SYS','SYSTEM','XDB','MDSYS','SYSMAN') -- edit for taste
    and segment_type = 'TABLE'
    having (bytes/1024/1024) > 2000
    group by bytes, segment_Type, segment_name, owner
    order by 4 asc

  • Query to find out the list of tables used in a package

    hello,
    can anyone please help me out with a query; i want to find out the list of tables used by a particular package.
    thanks,
    orton

    orton607 wrote:
    thanks for replying guys. But the thing is i am using dynamic sql execute immediate in my package, so i want those tables also and the schema name.
    thanks,
    ortonThis is not possible. The best you could do is to have a good guess.
    Or how would you parse some dynamic statement as this:
       v_suffix := 'loyees';
       v_sql := 'Select count(*) from (select ''nonsense'' col1 from emp'||v_suffix||') where col1 = ''Y'''';
       execute_immediate(v_sql);
    ...What is the table name? How do you want to parse that?
    Better rewrite all dynamic SQL statements into non dynamic ones. Or do the source control logic for those dynamic parts in an extra module. For example implement your own dependency table and force every developer to add there all dynamic parts.

  • Can anyone help me figure out how to use my new LaCie external hard drive to import movies from my camcorder into imovie '09? I ran into so many problems last night!! Was up way past my bedtime!

    Can anyone help me figure out how to use my new LaCie external hard drive to import movies from my camcorder into imovie '09? I ran into so many problems last night!! Was up way past my bedtime!

    I'll stay in this chat ... I answered in the other one ... I have a Sony digital Handycam ... from years ago.  I just got the LaCie and I think I formatted it for only to be used on my Mac ... how should I go about reformatting it to be HFS Extended like you said?

  • How can I find out whitch table are used in whitch document?

    How can I find out whitch table are used in whitch document?
    In the table EUL5_DOCUMENTS are stored the Documents and in the table EUL5_OBJS are stored the tables. How can I query these tables together?
    Are there other possiblities?
    Thanks

    Hi Dierk
    Please take a look at this thread: Re: An EUL query to list out All the Columns  (Fileds) for each Workbook
    I think you may well find what you are looking for in the answer that I gave there.
    Best wishes
    Michael

  • Goods Movement & MB01 - Tables Used

    I want to know what are the tables and type of data updated in those tables when a goods receipt is posted.
    Similarly when goods movement updation is done using MB01 transaction against purchase prder what are the tables involved.

    The most important tables involved in MB01 are:
    MKPF and MSEG.
    If you want all the tables that are updated, then you can run a ST05 trace on the MB01 transaction and find the tables that are updated.
    Regards,
    Ravi

  • How to find out the script for the table using SQL

    Hi,
    Could any one tell me that how to find out the script for the table using SQL.
    Thanks,
    kamal

    Kamal,
    You can find the SQL query in Advanced tab of Answers
    Thanks,
    Balaa...

  • I've been using iMovie for a while now to make movies out of mostly travel photos and video clips.  I try to vary the time for the photos from 1-4 sec.  Any ideas out there?

    I've been using iMovie for a while now to make movies out of mostly travel photos and video clips.  I try to vary the time for the photos from 1-4 sec., although most of them are 1-2 seconds so as to keep it short.  A friend of mine who saw my most recent product said that this is too short.  Any ideas out there?

    I apologize for my confusion on your question.  I find that depending on the principal of each photo and my target audience to determine the time frame for each photo.  It seems most people get impatient with viewing one photo for more than 1-2 seconds if the photo is not complex.
    If there are several things that interests the viewers in any one image, they want to look at it a second or two longer.  If the movie of images is a training aid, the images may need to be more than 3 seconds.  For intro's, or a trailer for a training movie, no longer than 1-2 seconds.
    That was a long answer to say, generally speaking, I find 3 seconds to be an average time length.

  • How to figure out which tables are using Extensible Optimizer?

    Hi guys,
    I'm sure that there're several tables those are associated with Extensible Optimizer in my database, I can also find the Extensible Optimizer relevant type and the implementation of interface functions ODCIGetInterfaces, ODCIStatsTableFunction.
    I'm curious to know is there a way to figure out which tables are associated with this Extensible Optimizer, does anyone have any clues?
    Database: oracle 11.2
    Thank you in advance.

    Hi,
    Can you please check the below link.It may help you:
    http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28425/ext_optimizer.htm
    Best regards,
    Rafi.
    http://rafioracledba.blogspot.com

  • How to transfer data in change log table of dso to z-table using abap code

    Hi  can you please explain me how to transfer data in change log table of dso to z-table using abap code ,with out using Function module concept

    PROGRAM NAME:   ZBW_DELTA_TO_GSTAR                                 **
    report ZBW_DELTA_TO_GSTAR no standard page heading
                                     line-size 120
                                     line-count 75
                                     message-id ZBW_MSG_CLS.
    tables:   ZGIV_DLTA_EBV_BB,
              ZGIV_DLTA_EM2_BL,
              ZGIV_DLTA_EM2_BK.
    Selection Screen Definitions
    SELECTION-SCREEN: BEGIN OF BLOCK INNER WITH FRAME TITLE TEXT-001.
    SELECTION-SCREEN: SKIP 1.
    PARAMETERS:       EBVBB RADIOBUTTON GROUP ROLL,
                      EM2BL RADIOBUTTON GROUP ROLL,
                      EM2BK RADIOBUTTON GROUP ROLL.
    SELECTION-SCREEN: END OF BLOCK INNER.
    Data:  WS_UPDATE_FLAG  Type C,
           UCounter(9)      Type N,
           ICounter(9)      Type N.
    DATA:  T_ZGIV_DLTA_EBV_BB Type Standard Table of ZGIV_DLTA_EBV_BB,
           s_ZGIV_DLTA_EBV_BB LIKE line of T_ZGIV_DLTA_EBV_BB.
    DATA:  T_ZGIV_DLTA_EM2_BK Type Standard Table of ZGIV_DLTA_EM2_BK,
           s_ZGIV_DLTA_EM2_BK LIKE line of T_ZGIV_DLTA_EM2_BK.
    DATA:  T_ZGIV_DLTA_EM2_BL Type Standard Table of ZGIV_DLTA_EM2_BL,
           s_ZGIV_DLTA_EM2_BL LIKE line of T_ZGIV_DLTA_EM2_BL.
    Standard Internal Tables - Describe usage.
    data: begin of i_AEPSD_O0140 occurs 0.
            include structure /BIC/AEPSD_O0140.
    data: end of i_AEPSD_O0140.
    data: begin of i_AEPSD_O0240 occurs 0.
            include structure /BIC/AEPSD_O0240.
    data: end of i_AEPSD_O0240.
    data: begin of i_AEPSD_O0340 occurs 0.
            include structure /BIC/AEPSD_O0340.
    data: end of i_AEPSD_O0340.
    data: begin of i_GIV_DLTA_EBV_BB occurs 0.
            include structure ZGIV_DLTA_EBV_BB.
    data: end of i_GIV_DLTA_EBV_BB.
    data: begin of i_GIV_DLTA_EM2_BK occurs 0.
            include structure ZGIV_DLTA_EM2_BK.
    data: end of i_GIV_DLTA_EM2_BK.
    data: begin of i_GIV_DLTA_EM2_BL occurs 0.
            include structure ZGIV_DLTA_EM2_BL.
    data: end of i_GIV_DLTA_EM2_BL.
    Miscellaneous Program Variables and Constants.
    TOP-OF-PAGE
    top-of-page.
    START-OF-SELECTION
    start-of-selection.
      Clear: i_GIV_DLTA_EBV_BB,
             i_GIV_DLTA_EM2_BK,
             i_GIV_DLTA_EM2_BL,
             UCounter, ICounter.
      IF EBVBB = 'X'.
        PERFORM 100_EXTRACT_EBV_BB_DELTA_RECS.
      ELSEIF EM2BK = 'X'.
        PERFORM 100_EXTRACT_EM2_BK_DELTA_RECS.
      ELSE.
        PERFORM 100_EXTRACT_EM2_BL_DELTA_RECS.
      ENDIF.
    FORM 100_EXTRACT_EBV_BB_DELTA_RECS
    FORM 100_EXTRACT_EBV_BB_DELTA_RECS.
      Refresh:   i_AEPSD_O0140,
                 i_GIV_DLTA_EBV_BB.
      Clear:      UCounter, ICounter, s_ZGIV_DLTA_EBV_BB .
      Select * From /BIC/AEPSD_O0140
        Into TABLE i_AEPSD_O0140.
      IF SY-Subrc = 0.
        LOOP AT i_AEPSD_O0140.
          MOVE-CORRESPONDING i_AEPSD_O0140 TO s_ZGIV_DLTA_EBV_BB.
          MOVE SY-DATUM to s_ZGIV_DLTA_EBV_BB-create_dt.
          INSERT ZGIV_DLTA_EBV_BB FROM s_ZGIV_DLTA_EBV_BB.
          IF SY-Subrc = 0.
            ICounter = ICounter + 1.
          ELSE.
            UPDATE ZGIV_DLTA_EBV_BB FROM  s_ZGIV_DLTA_EBV_BB.
            IF SY-Subrc = 0.
              UCounter = UCounter + 1.
            ELSE.
              Message E067 with SY-DATUM ' ' SY-UZEIT ' '.
            ENDIF.
          ENDIF.
        ENDLOOP.
      ENDIF.
    ENDFORM.                    "100_EXTRACT_EBV_BB_DELTA_RECS
    FORM 100_EXTRACT_EM2_BK_DELTA_RECS
    FORM 100_EXTRACT_EM2_BK_DELTA_RECS.
    Refresh:   i_AEPSD_O0240,
               i_GIV_DLTA_EM2_BK.
      Clear:      UCounter, ICounter, s_ZGIV_DLTA_EM2_BK .
      Select * From /BIC/AEPSD_O0240
        Into TABLE i_AEPSD_O0240.
      IF SY-Subrc = 0.
        LOOP AT i_AEPSD_O0240.
          MOVE-CORRESPONDING i_AEPSD_O0240 TO s_ZGIV_DLTA_EM2_BK.
          MOVE SY-DATUM to s_ZGIV_DLTA_EM2_BK-create_dt.
            INSERT ZGIV_DLTA_EM2_BK FROM s_ZGIV_DLTA_EM2_BK.
          IF SY-Subrc = 0.
            ICounter = ICounter + 1.
          ELSE.
            UPDATE ZGIV_DLTA_EM2_BK FROM  s_ZGIV_DLTA_EM2_BK.
            IF SY-Subrc = 0.
              UCounter = UCounter + 1.
            ELSE.
              Message E067 with SY-DATUM ' ' SY-UZEIT ' '.
            ENDIF.
          ENDIF.
        ENDLOOP.
      ENDIF.
    ENDFORM.                    "100_EXTRACT_EM2_BK_DELTA_RECS
    FORM 100_EXTRACT_EM2_BL_DELTA_RECS
    FORM 100_EXTRACT_EM2_BL_DELTA_RECS.
    Refresh:   i_AEPSD_O0340,
               i_GIV_DLTA_EM2_BL.
      Clear:      UCounter, ICounter, s_ZGIV_DLTA_EM2_BL .
      Select * From /BIC/AEPSD_O0340
        Into TABLE i_AEPSD_O0340.
      IF SY-Subrc = 0.
        LOOP AT i_AEPSD_O0340.
          MOVE-CORRESPONDING i_AEPSD_O0340 TO s_ZGIV_DLTA_EM2_BL.
          MOVE SY-DATUM to s_ZGIV_DLTA_EM2_BL-create_dt.
            INSERT ZGIV_DLTA_EM2_BL FROM s_ZGIV_DLTA_EM2_BL.
          IF SY-Subrc = 0.
            ICounter = ICounter + 1.
          ELSE.
            UPDATE ZGIV_DLTA_EM2_BL FROM  s_ZGIV_DLTA_EM2_BL.
            IF SY-Subrc = 0.
              UCounter = UCounter + 1.
            ELSE.
              Message E067 with SY-DATUM ' ' SY-UZEIT ' '.
            ENDIF.
          ENDIF.
        ENDLOOP.
      ENDIF.
    ENDFORM.                    "100_EXTRACT_EM2_BL_DELTA_RECS
    END-OF-SELECTION
    end-of-selection.
      perform D1000_REPORT_DATA.
    D1000_REPORT_DATA
    form D1000_REPORT_DATA.
    *Display the title of the program
      write: /25 SY-TITLE.
      skip.
    Diaplay the details of the user and time
      write: /1 'Executed by', 15 SY-UNAME, 30 'Date',
      38 SY-DATUM, 53 'Time', 60 SY-UZEIT.
      skip 2.
      write: /  'Delta Records have been extracted  ',
             /   'Updates : ', UCounter,
             /   'Inserts : ', ICounter.
      skip.
      skip 3.
      write: /20 'End of the report'.
    endform.                                           "D1000_REPORT_DATA
    chgeck it out this also may hep you

Maybe you are looking for

  • Opening GarageBand project in Logic Express 9.

    Just loaded Logic Express 9. Trying to open GarageBand project I get "Sorry, can't load this project because it is created by a newer Logic Express version. Please update Logic Express." I was under the impression that any GB project could be opened

  • Wont open my photoshop cc app, why ?

    I am downloading the Photoshop CC but then it wont let me open it. also i got a brand new Mac book air for x mas and i dont understand why it wont work on my new laptop. can anyone help me?

  • I need to add a phone number to iMessage, how do I do this and link it with my account.

    I can not link a phone number to iMessage, when I send a message people see an email address and not phone number. How do I change this?

  • Can't access anything but desktop when batching.....

    I have Photoshop CS3 on a PC running Windows Vista. When I try to batch or automate I cannot access any files other than the desktop. If I do file>automate>batch and then go to choose folder, the only folders I can access is the desktop. There are no

  • Indesign CS4 Crashing with one doc only

    My Indesign CS4 crashes with only one document (my most valuable document, of course). It does not crash with other small docs. The exact problem occurs on two Intel Macs (Mac Pro 6gb of Ram and MacBook Pro with 2gb of Ram): The doc opens for about 5