MS Word 2007: How to hide first 4 page numbers?

48

You've answered your own question. "Start at x" after a section break is the answer to the first part.

As for the second part of your question, you probably have a section break elsewhere, or else you have an option for a different first page set somewhere.

Share:
48

Related videos on Youtube

Race Reed
Author by

Race Reed

Updated on September 18, 2022

Comments

  • Race Reed
    Race Reed over 1 year

    I'm kind of new, but having a really good time figuring this stuff out. Hope you don't mind helping me where I'm stuck.

    Here is my OnTouchListener. It is for the display of a timer and I want the timer to turn off if someone moves the view that displays the time.

    I need it so that the view is moved past a certain point and then it implements. Otherwise it gets a little confused with the a click gesture. I'm going to set it so that the timer pauses on click.

    The problem is. I'll set the view as "GONE", so that you won't see it after it moves, but I still need the view to go back to it's original place so that when the next timer is started again, it will be reset.

        //setOnTouchListener Here
        zoneATimerText.setOnTouchListener(new View.OnTouchListener() {
    
    
            @Override
            public boolean onTouch(View view, MotionEvent event) {
    
                switch (event.getAction()) {
    
                    case MotionEvent.ACTION_DOWN:
    
                        dX = view.getX() - event.getRawX();
                        dY = view.getY() - event.getRawY();
                        break;
    
                    case MotionEvent.ACTION_MOVE:
                        destroyCountDownTimer();
                        view.animate()
                                .x(event.getRawX() + dX)
                                .y(event.getRawY() + dY)
                                .setDuration(0)
                                .start();
                        Log.v("on move", "you're moving");
                        break;
                    default:
                        return true;
                }
                return true;
            }
        });
    
    • Admin
      Admin about 12 years
      If you could include this as an answer then I can select it as an accepted answer. Thanks!
    • Truong Hieu
      Truong Hieu over 7 years
      What if you save the first place where timer be there? Then when timer is out, set it back to that place and setVisibility to visible?
  • Ren
    Ren about 11 years
    For those looking to skip a number of pages at the beginning of a document, this guide for Word 2007 was useful to me - gradstudies.ucdavis.edu/students/…