How to close extender tray on Envy 5640?

Just acquired this new today, and can't find any information about how to close the tray. It popped out automatically for the first printing job, and even when I fiddled with the paper loading tray etc when unpacking and it was switched off, but how should I close it? Do I just force it shut? I did this once but it seems very stiff and I don't wish to damage anything.
It doesn't auto-retract when switching off, and I don't wish to leave it open when not required because it is too exposed and risks being damaged.

Hey there,
There was no resistance as all when I pushed the extender tray back in, it slid back in nice and smoothly. If the tray is in the "unlock" position and it's still giving you resistance, perhaps there is a problem with your tray. Give us a call directly to report the problem with the tray and see if a replacement is required.
Please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region. http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html
R a i n b o w 7000I work on behalf of HP
Click the “Kudos Thumbs Up" at the bottom of this post to say
“Thanks” for helping!
Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

Similar Messages

  • How to close extended classic PO in ECC...

    Hi Friends...
    We are in SRM 7.02 and ECC 6.05 in Extended Classic Scenario. One PO had been created for 1 Quantity 3 years ago. There was no GR/IR document posted against that PO. Now that PO had been archieved from SRM. But still PO is available in ECC with open quantity and also its appearing in the open PO report. Now requester wanted, the PO to be closed in ECC and shouldnot appear in the open PO list.
    How to handle this situation.. How to close the extended classic PO in ECC at this scenario. As PO not available in SRM, we can not do anything from SRM side.
    Your inputs are appreciated....
    Regards
    Sivakumar Kandasamy

    Hi Sivakumar,
    If you mean how to archive PO in MM side, please refer to the following info:
    ====
    In ECC system, if you want to archive a MM PO, please use transaction
    SARA->archive object MM_EKKO.
    456129 FAQ: Archiving in purchasing
    401318 Archiving: Additional information
    ====
    If you want to delete this ECC PO, please use BAPI_PO_CHANGE and
    refer to the following test data:
    Parameters:    PURCHASEORDER      =  XXXXXXXXX
    Parameters:    POITEM
    PO_ITEM                        = 00010
    DELETE_IND                     = X
    Parameters:    POITEMX
    PO_ITEM                        = 00010
    PO_ITEMX                       = X
    DELETE_IND                     = X
    You also need to run BAPI_TRANSACTION_COMMIT after BAPI_PO_CHANGE for updating the change.
    Regards,
    Ivy

  • How to close NetStream in class script

    How to close NetStream in class script
    I use NetStream action to play the video. It’s working perfectly. Want to know how I can close my NetStream video to clicking on the button as in class scrip. I tray this
    ns.close();
    but got error
    NetStream class action
    package {
        import flash.display.SimpleButton;
        import flash.events.MouseEvent;
        import flash.media.Video;
        import flash.net.NetConnection;
        import flash.net.NetStream;
        import flash.media.SoundTransform;
        import flash.display.MovieClip;
        public class clickbutton extends SimpleButton {
              var ns:NetStream;
              var previousVolume:Number = 1;
              public function clickbutton() {
                    this.addEventListener(MouseEvent.CLICK, clickF);
              private function clickF(e:MouseEvent):void{
                   MovieClip(this.root).gotoAndStop(2, "Scene 1");
                   var nc:NetConnection=new NetConnection();
                   nc.connect(null);
                   ns=new NetStream(nc);
                   var video:Video=new Video(320, 200);
                   video.x=(stage.stageWidth-320)/2;
                   video.y=(stage.stageHeight-200)/2;
                   ns.client=this;
                   this.parent.addChild(video);
                   video.attachNetStream(ns);
                   ns.play("video_test.flv");
                   controlsF();
                   this.removeEventListener(MouseEvent.CLICK, clickF);
                   this.parent.removeChild(this);
          private function controlsF():void{
              MovieClip(root).play_btn.addEventListener(MouseEvent.CLICK,playF);
              MovieClip(root).pause_btn.addEventListener(MouseEvent.CLICK,pauseF);
              MovieClip(root).muteToggle_btn.addEventListener(MouseEvent.CLICK,muteF);
              // add volume listener here.  you'll need to decide how you want to control volume.
                                                    function playF(e:MouseEvent):void{
                                                                    ns.resume();
                                                    function pauseF(e:MouseEvent):void{
                                                                    ns.pause();
                                                    function muteF(e:MouseEvent):void{
                                                                    if(ns.soundTransform.volume>0){
                                                                    var st:SoundTransform=ns.soundTransform;
                                                                    previousVolume=st.volume;
                                                                    st.volume=0;
                                                                    ns.soundTransform=st;
                                                    } else {
                                                                    st=ns.soundTransform;
                                                                    st.volume=previousVolume;
                                                                    ns.soundTransform=st;
                                    public function onMetaData(eobj:Object): void {
                                                    // this needs to be in the scope of your loader
                                    public function onPlayStatus(eObj: Object): void {
                                    public function onXMPData(eobj:Object):void{

    I make to keyfram in my time line.
    In 1st keyfram on the video button I use this code
    package {
         import flash.display.SimpleButton;
         import flash.events.MouseEvent;
         import flash.media.Video;
         import flash.net.NetConnection;
         import flash.net.NetStream;
         import flash.media.SoundTransform;
         import flash.display.MovieClip;
              public class palyvideo extends SimpleButton {
                   var ns:NetStream;
                   var previousVolume:Number = 1;
                        public function palyvideo() {
                             this.addEventListener(MouseEvent.CLICK, clickF);
                        private function clickF(e:MouseEvent):void{
                             MovieClip(this.root).gotoAndStop(2, "Scene 1");
                             var nc:NetConnection=new NetConnection();
                             nc.connect(null);
                             ns=new NetStream(nc);
                             var video:Video=new Video(320, 200);
                             video.x=(stage.stageWidth-320)/2;
                             video.y=(stage.stageHeight-200)/2;
                             ns.client=this;
                             this.parent.addChild(video);
                             video.attachNetStream(ns);
                             ns.play("video_test.flv");
                             controlsF();
                             this.removeEventListener(MouseEvent.CLICK, clickF);
                             this.parent.removeChild(this);
                   private function controlsF():void{
                        MovieClip(root).play_btn.addEventListener(MouseEvent.CLICK,playF);
                        MovieClip(root).pause_btn.addEventListener(MouseEvent.CLICK,pauseF);
                        MovieClip(root).muteToggle_btn.addEventListener(MouseEvent.CLICK,muteF);
                        // add volume listener here.  you'll need to decide how you want to control volume.
                   function playF(e:MouseEvent):void{
                        ns.resume();
                   function pauseF(e:MouseEvent):void{
                        ns.pause();
                   function muteF(e:MouseEvent):void{
                        if(ns.soundTransform.volume>0){
                        var st:SoundTransform=ns.soundTransform;
                        previousVolume=st.volume;
                        st.volume=0;
                        ns.soundTransform=st;
                   } else {
                        st=ns.soundTransform;
                        st.volume=previousVolume;
                        ns.soundTransform=st;
              public function onMetaData(eobj:Object): void {
                   // this needs to be in the scope of your loader
              public function onPlayStatus(eObj: Object): void {
              public function onXMPData(eobj:Object):void{
    In 2nd keyfram I use this code on reply button
    package  {
         import flash.display.SimpleButton;
         import flash.display.MovieClip;
         import flash.events.MouseEvent;
         import flash.media.SoundMixer;
         import flash.media.Video;
         import flash.net.NetConnection;
         import flash.net.NetStream;
              public class reply extends SimpleButton {
                                  public function reply() {
                                            this.addEventListener(MouseEvent.CLICK,clickFF);
                                  private function clickFF(e:MouseEvent):void{
                                            SoundMixer.stopAll();
                                            MovieClip(this.root).gotoAndStop(1, "Scene 1");
                                            ns.close();
                                            //video.attachNetStream(null);
    But when I click on reply button I got this compiler error

  • How to close the COM Port ??????????

    Dear all :
    I have written an application that send AT commands to a modem , Once I opened a com port , i don't know how to close it . I got the null pointer exception when i create a new channel , because the inputStream and outputStream is owned by the previous channel . So , some one can teach me how to close the com port that opened before ?
    my source code for open port :
    public void Connect_Com(CommPortIdentifier portId) {
    Integer i = new Integer((int) (Math.random()* 1000));
    String channel = "channel" + i.toString();
    System.out.println(channel);
    try {
    System.out.println("preparing to open port");
    serialPort = (SerialPort) portId.open(channel, 2000);
    } catch (PortInUseException e) {}
    try {
    inputStream = serialPort.getInputStream();
    System.out.println("getting inputStream");
              } catch (IOException e) {}
    try {
    serialPort.addEventListener(this);
              } catch (TooManyListenersException e) {}
    serialPort.notifyOnDataAvailable(true);
    try {
    serialPort.setSerialPortParams(9600,
    SerialPort.DATABITS_8,
    SerialPort.STOPBITS_1,
    SerialPort.PARITY_NONE);
    } catch (UnsupportedCommOperationException e) {}

    serialPort.close() ?
    From the documentation of SerialPort:
    - SerialPort extends CommPort.
    - CommPort.close() closes the communications port.

  • How to close aframe

    // how to close frame
    import java.awt.*;*
    * import java.awt.event.*;
    class Myframe1 extends Frame
      public static void main(String args[])
    Myframe1 obj = new Myframe1();
       obj.setTitle("shekar");
       obj.setSize(400,400);
       obj.setVisible(true);
       obj.addWindowListener(new Myclose());
    //to close the frame we should add a  listner to the component (frame is also a component)
    //we we should add an appropirate listner to a component , this is done by addxxxxxlistener() method
    class Myclose implements WindowListener
      public void WindowActivated(WindowEvent e){ }
      public void WindowClosed(WindowEvent e){ }
      public void WindowClosing(WindowEvent e)
      System.exit(0);
      public void WindowDeactivated(WindowEvent e){ }
      public void WindowDeiconified(WindowEvent e){ }
      public void WindowIconified(WindowEvent e){ }
      public void WindowOpened(WindowEvent e){ }
    D:\my programs\awt>javac Myframe1.java
    Myframe1.java:22: Myclose is not abstract and does not override abstract method windowDeactivated(java
    .awt.event.WindowEvent) in java.awt.event.WindowListener
    class Myclose implements WindowListener
    ^
    1 error

    That method is
    windowDeactivated
    not
    WindowDeactivatedWhy are you using AWT, rather than Swing? The Swing JFrame even has a nice little setDefaultCloseOperation(int) method that makes closing the frame, easy.

  • How to close jwindow

    hi,
    Can you tell me how to close JWindow. Please help
    thanks

    alt-F4 seems to work OK when the JWindow has a parent
    here's your previous post's code, modified
    import java.awt.*;
    import javax.swing.*;
    class demo extends JWindow
      int screenWidth;
      int screenHeight;
      public demo(JFrame f)//<------changed
        super(f);//<--------added
        screenWidth = Toolkit.getDefaultToolkit().getScreenSize().width;
        screenHeight = Toolkit.getDefaultToolkit().getScreenSize().height;
        JPanel pn = new JPanel();
        pn.setBackground(new Color(0x808000));
        getContentPane().add(pn);
        setSize(screenWidth,screenHeight);
        setVisible(true);
      public static void main(String args[])
        JFrame f = new JFrame();
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setUndecorated(true);
        f.setSize(0,0);
        f.setVisible(true);
        //demo d = new demo();
        demo d = new demo(f);
    }

  • How can i extend a wireless network with time capsule

    How can i extend an existing wifi verizon wireless network with time capsule? the router is connected on the bottom floor. want to boost the signal to a home office on the top floor, four flights up. connect time capsule via ethernet cable to iMac on 4th floor? Do I have to start a second wifi network or can I set it to just boost the one I have? thank you

    How can i extend an existing wifi verizon wireless network with time capsule?
    It all depends on what you mean by "extend".
    If you plan to "extend" by connecting the Time Capsule to the Verizon router using a wired Ethernet cable, this can be accomplished.
    If you were hoping to connect the Time Capsule to the Verizon router using wireless only, unfortunately the Time Capsule and Verizon products are not compatible for that purpose.
    Check with Verizon to see if they offer an "extender" or "repeater" that could be located very close to the Time Capsule.
    This would provide both more wireless coverage and also allow you to connect the Time Capsule using an Ethernet cable from the "extender" or "repeater".

  • HP Envy 5640 "Out Of Paper" FALSE MESSAGE

    I have "Out of Paper" false message. When I pressed "PRINT" on my Iphone/Ipad, the printer still printed for me. BUT the menu on Iphone/Ipad did not provide me THE RANGE, so I had to print the whole docemunent. I JUST WANTED TO PRINT A FEW PAGES with "RANGE OPTIONS" By the way, I tried everything: Turn On/Turn Off, remove the paper tray, put in brand new paper etc . I still gave me the false message "PRINTER OUT OF PAPER"

    Hi , Welcome to the HP Support Forums! I understand you are getting an 'Out of paper' error message on your HP Envy 5640. You were able to print from your iPad and you tried some troubleshooting steps but the error message remains. Let's go ahead and try a Hard Reset: 1. Unplug all cables and memory cards from the printer. Unplug the power cord, directly from the back of the printer while the printer is still turned on.
    2. Unplug the other end of the cord from the power source.
    3. If there is a power module on the power cord, disconnect one end and reconnect it.
    4. After 60 seconds, plug the cord directly into a wall outlet (not a surge protector or battery backup as they can cause the printer to lose basic functionality over time).
    5. Plug the power cord into the back of the printer.
    6. The printer should automatically power back up. If it doesn't, turn it on with the power button.
    7. Try making a photocopy (if your printer is an all-in-on printer) before connecting any other cables to the printer.
    8. Connect any other needed cables to the printer.I would like you to go ahead and continue troubleshooting here, I understand there is paper in there, it may just need to be cleaned and reset: An 'Out of Paper' Message Displays on the Control Panel and the Printer Does Not Pick Up Paper. Let me know the outcome, is the error message gone. As for the printing options available on the iPad, take a look here: Printing Over a Wireless Network with Apple's AirPrint FAQs PAGE RANGE: I hope this helps. 

  • How do I extend my AirPort Extreme network using airport express

    How do I extend my AirPort Extreme network using airport express

    see http://support.apple.com/kb/HT4145 and other support articles
    and/or
    https://discussions.apple.com/thread/4462789?start=0&tstart=0
    and many other discussions on this forum about this topic.

  • After the update I don't know how to close running apps? I recall double clicking the main button then hold one app until they begin a jiggling motion. But that no longer works.

    How do close running apps?

    You still double tap the home button and the apps are lined up across the screen. Swipe up on the app preview thumbnail - drag it up off of the screen - and that will close the app.

  • How to close iOS7 apps?

    Prior to iOS7 you simply double clicked the home button to show open Apps and you could then close them all down.  That doesn't seem to happen with iOS7.  Any idea how to close open Apps?
    ... The learning curve beings

    Thanks ...
    That's what I was trying, but I guess I was doing so to quickly.  Once I slowed down they finally moved.  Now ... if the former Apps wouldn't crash I'd be all set, ROFL.  Going to be a learning curve for the developers as well I think.
    So much to learn

  • Can anyone advise how to close apps on iPad with new iOS? I have multiple open and cannot close them.

    Can anyone advise how to close apps with the new iOS?  I have multiple open and cannot close them

    Double-tap on the Home button. You will see a preview of the app above the actual icon. Slide the preview up to kill it.
    Please get the iPhone User Guide (For iOS 7 Software)Sep 19, 2013 - 23 MB.

  • I get a neighbor's wifi on my MacBook in my bedroom.  How can I extend the range to the MacMini in my living room?

    I get a neighbor's wifi on my MacBook in my bedroom.  How can I extend the range to the MacMini in my living room?

    You can't. It's not your network.

  • How do i extend airplay to stream music at the same time to AEX and ATV2

    I have a new ATV2 and an AEX, my macbook, 2 Ipod touches and an Ipad2.
    I figured out how to setup my ATV2 and airplay through my macbook and my touches. My ATV2 is in my living room on a Yamaha 6.1 receiver with 2 channels. I have 6 speakers in my living room on channel A and a speaker in my bathroom on channel B.
    So....I decided to grab an extra Bose speaker and bring it to my foyer/kitchen and hook it up to my AEX since i cant hear the music too well when im cooking or in my office from the speakers in the living room.
    I setup the AEX to connect direct to the speaker. When Im on Itunes (either mac book or touch) i only get two options to airplay, AEX or ATV2.
    My question: How do I extend airplay to stream music on BOTH AEX and ATV2 with the same music at the same time?
    Please and thank you!

    As you are already aware both the 802.11n AirPort Express Base Station (AXn) and ATV2 are AirPlay "speakers." When both devices are properly connected to your home's wireless or wired network, both should show up in iTunes as in your case. Also the iTunes AirPlay speaker selector should provide you with an option to choose multiple speakers. As a minimum, you should see: Computer, the AXn, the ATV2, and the Multiple Speakers options. Is this not the case?

  • How to close sidebar under ios 8 in order to use the whole screen for reading?

    How to close sidebar under ios 8 so that i can have the full screen for reading?

    Sidebar where?
    In Safari?Tap on the Blue open book icon at the very top of the screen. There are two such icons, it is the one on top you want to tap to close the sidebar.

Maybe you are looking for

  • "No bootable devices" screen after Windows 7 Boot Camp failure.

    As a lifetime Windows user, I thought that it would not be such a bad idea to install Windows 7 via Boot Camp Assistant.  The process went smoothly until I reached the 3rd and final section of the procedure titled "Install Windows 7 or Later Version.

  • Cannot join Server 2012 machine to domain

    I am trying to join a clean  Server 2012 machine configured with Active Directory Domain Services and DNS features enabled to a domain (alekatest.com) which I have purchased. The Active Directory Domain Services option in Server Manager advises me th

  • My macbook will not boot past apple loading screen

    Yesterday i turned my computer off before going to class, when i got back i was not able to get past the loading screen. I havent had any problems at all, many people have been saying that their macs start freezing then they have to manually shut dow

  • Where is "Sound Effects" option in Iphone?

    On my ipod touch I have an option under "sounds" the "sound effects" and under that option I have 1.Speaker 2.Headphones.3 Both.............Where do I find these in iphone? Thanks

  • Read from a text file line by line

    Hi, I am new to Labview and I am trying to output a text file line by line. For example if my text file is START SETRPM 1000 WAIT 10s RAMP RPM linear,1000,2000,2 MAF linear,5,7,2 WAIT 5s RAMP RPM sine,2000,1500,3 MAF sine,7,3,3 END I want it to outpu