How do I implement smart print ?

I need step by step on how to use smart print. Thanks

Hi there, here's a link to the Smart Print download page complete with FAQ's 
http://h41112.www4.hp.com/smartprint/us/en/smart.html?jumpid=ex_r602_ww/en/hho/ipg/xx-mu-aw_chev/sma...
Post back if you're unsure of anything after reviewing the information.
Best
If my reply helped you, feel free to click on the Kudos button (hover over the "thumbs up").
If my reply solved your problem please click on the Accepted Solution button so other Forum users may benefit from viewing the post.
I am an HP employee.

Similar Messages

  • SMART PRINT: How do I use SMART Print on Safari web browser please?

    I use a MAC with Safari web browser. How do I get Smart Print for Safari please. (I do not want to use BING). Is there any way of doing this?

    Hi Paulmozzi!
    Here it is the supported devices list: http://www.mozilla.org/en-US/mobile/platforms/
    However, because of the large number of Android devices (phones and tablets), not all new devices could be tested yet, but the list will continue to be updated.
    I am not sure if I understand correctly your issue. When typing something in url bar, you will have at least 4 default search engines (Google, Wikipedia, Amazon, Twitter), so you can choose any of them. If you want to install more search engines, here it is a useful link for that: http://mycroft.mozdev.org/search-engines.html (open this link using Firefox Mobile on your tablet).
    If you still need more help, please let us know. Any more details regarding your issue will be very useful.

  • How I would implement the print mehtod?

    I have this code...
    * SinglyLinkedList.java
    * An implementation of the List interface using a
    * singly linked list.
    * (P) 2000 Laurentiu Cristofor
    * Modified (slightly) for s03 by D. Wortman
    // The class SinglyLinkedList provides an implementation of the List
    // interface using a singly linked list.  This differs from the Java
    // class LinkedList, which employs a doubly linked list and includes
    // additional methods beyond those required by the List interface.
    // Note: Included in this file is (at least) a "stub" method for each of
    // the required methods, as well as an implementation of the Node class.
    // This allows the file to compile without error messages and allows
    // you to implement the "actual" methods incrementally, testing as you go.
    // The List interface include some "optional" methods, some of which are
    // included here (see the List API for the meaning of this).
    // Some of the methods are preceded by comments indicating that you are
    // required to implement the method recursively.  Where there are no
    // such comments, you can provide either an iterative or a recursive
    // implementation, as you prefer.
    // There are some methods that you are asked not to implement at all.
    // Leave these as they are here: they are implemented here to just
    // throw an UnsupportedOperationException when they are called.
    // Hint: Read carefully the comments for the interface List in the
    // online documentation (Java API).  You can also take a look at the
    // implementation of the LinkedList class from the API. It uses a
    // doubly linked list and it is different in many places from what
    // you need to do here. However it may help you figure out how to do
    // some things. You shouldn't copy the code from there, rather you
    // should try to solve the problem by yourself and look into that code
    // only if you get stuck.
    import java.util.*;
    public class SinglyLinkedList implements List
      // an inner class: This is our node class, a singly linked node!
      private class Node
        Object data;
        Node next;
        Node(Object o, Node n)
          data = o;
          next = n;
        Node(Object o)
          this(o, null);
        Node( )
          this(null,null);
      private Node head; // the "dummy" head reference
      private int size;  // the number of items on the list
      public SinglyLinkedList()
        head = new Node(); // dummy header node!
      public void add(int index, Object element)
      public boolean add(Object o)
        return true;
      public boolean addAll(Collection c)
        return true;
      public boolean addAll(int index, Collection c)
        return true;
      public void clear()
      // write a recursive implementation here
      public boolean contains(Object o)
        return true;
      public boolean containsAll(Collection c)
        return true;
      public boolean equals(Object o)
        return true;
      // write a recursive implementation here
      public Object get(int index)
        return null;
      // NOT implemented: we don't cover hash codes
      // and hashing in this course
      public int hashCode()
        throw new UnsupportedOperationException();
      public int indexOf(Object o)
        return -1;
      public boolean isEmpty()
        return true;
      public Iterator iterator()
        return null;
      public int lastIndexOf(Object o)
        return -1;
      // Not implemented: The following two operations are not supported
      // since we are using a singly linked list, which does not allow
      // us to iterate through the elements back and forth easily
      // (going back is the problem)
      public ListIterator listIterator()
        throw new UnsupportedOperationException();
      public ListIterator listIterator(int index)
        throw new UnsupportedOperationException();
      // write a recursive implementation here
      public Object remove(int index)
        return null;
      public boolean remove(Object o)
        return true;
      public boolean removeAll(Collection c)
        return true;
      public boolean retainAll(Collection c)
        return true;
      // write a recursive implementation here
      public Object set(int index, Object element)
        return null;
      public int size()
        return size;
      // NOT implemented: to keep the homework reasonably simple
      public List subList(int fromIndex, int toIndex)
        throw new UnsupportedOperationException();
      public Object[] toArray()
        Object[] array = new Object[size];
        Node n = head;
        for (int i = 0; i < size; i++)
            array[i] = n.data;
            n = n.next;
        return array;
      public Object[] toArray(Object[] a)
           // you'll find this piece of code useful
        // it checks the exact type of the array passed as a parameter
        // in order to create a larger array of the same type.
        if (a.length < size)
          a = (Object[])java.lang.reflect.Array.
         newInstance(a.getClass().getComponentType(), size);
         else if (a.length > size)
          a[size] = null;
        Node n = head;
        for (int i = 0; i < size; i++)
            a[i] = n.data;
            n = n.next;
        return a;
      public static void main(String args[])
           System.out.println("Singly Linked List");
           System.out.println();
           SinglyLinkedList l = new SinglyLinkedList();
           l.add("F");
    }        how should I implement the print method?
    should I use the iterator?
    can someone help me, please.
    Thank You
    Ennio

    actually, you would do the same thing for a toString() method as you would for a print() method. You are just going to return a String instead of using i/o. I would use an iterator to walk over your list of Nodes and then call toString() on each object in your list of Nodes.

  • How can I use Smart Print with IE10 without using the Bing bar.

    I have used Smart Print for a long time but after upgrading to Windows 8-64bit it seems that the only way to get it now is with the Bing Bar. I like windows but I have no use for Bing.

    Are you launching IE 10 from the Start screen, or from the desktop? Smart Print will only work if you launch IE 10 from the desktop.
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • How do I get Smart Print button to appear in IE9?

    I'm running the 32-bit version of IE9 in Windows7 Ultimate 64-bit. I have version 1.0.9.0 of HP Smart Print (i shows up in "Programs and features". I went to the seb site and ran the activation and it was successful. The HP bing bar appears, but no Smart Print button. The HP Bingbar has "HP Deals", "HP Advisor", Snapfish by HP", "HP Games", and "Learn at HP" buttons.
    This question was solved.
    View Solution.

    I'm using a Presario desktop & windows 7.
    I have done all of the steps suggested here - both the Bing bar program & the HP smartprint 1.0.9.0 are listed.
    When I right click the command bar - The HP smartprint icon does NOT show up.
    I don't see any thing that I can guess is the Bing Bar.
    Help Please This has been going on for way to long!!!!!
    George

  • How do I disable Smart Print? Since I enabled smart print this morning I can no longer send pictures

    I enabled smart print this morning. Since then I am not able to send pic via my email to print. I received a message from HP's ePrint service saying printing has been delayed because the printer is turned off or not connected to the internet. I like the Smart Print option but I also like being able to print from my Iphone as well ! Is it possible to do both ?

    I'm using a Presario desktop & windows 7.
    I have done all of the steps suggested here - both the Bing bar program & the HP smartprint 1.0.9.0 are listed.
    When I right click the command bar - The HP smartprint icon does NOT show up.
    I don't see any thing that I can guess is the Bing Bar.
    Help Please This has been going on for way to long!!!!!
    George

  • How to know which Smart-Form is being used for Purchase Order print output

    Hi Gurus ,
    How to find which Smart-Form and and methods/program being used for Purchase Order print output in SRM  ?
    In ECC we have tcode NACE where we can check all the details.Is there something similar in SRM ?
    Please help.
    Regards,
    Saurav

    There is no similar transaction in SRM for your purpose. Usually if the customers customize the smartforms, they would choose to use their own form by implementing BADI BBP_OUTPUT_CHANGE_SF. Take a look into your system and see if this BADI is implemented. If so, debug it (by pressing "Print Preview" for a PO for example) and find out what form it is using. Or, if the BADI is not implemented, by default, the system uses form BBP_PO.

  • My Hp smart print bing bar disappeare​d - I would like to know how to get it back

    HP 6500A Printer - Windows 7   Where did my bing bar for smart print go & how do I get it back  Thanks

    Hi Lindahls,
    On your Internet Explorer browser right click right below the address bar and you will find that there is no check mark next to the bing toolbar. Open the attached document to see how to re-enable the toolbar.
    I am an HP employee.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as "Accepted Solution"
    Attachments:
    bing bar.doc ‏783 KB

  • How do I get the HP Smart Print icon back in the toolbar?

    The HP Smart Print icon used to appear in the Firefox toolbar. I had to reload Firefox. the icon no longer appears. How do I get it back? I am using Windows 7.

    HP Smart Print (formerly HP Smart Web Printing) is supported only in <u>IE 6 and later and is no longer supported on any other browser</u> ---- that was a decision made by HP, not Mozilla.
    *See - http://h41112.www4.hp.com/smartprint/us/en/smart.html?jumpid=ex_r602_ww/en/hho/ipg/xx-mu-aw_chev/smartprint (click to expand item 12 at the bottom)
    *See - http://h10025.www1.hp.com/ewfrf/wc/document?lc=en&dlc=en&cc=us&docname=c01812475#N152
    *See - http://h30434.www3.hp.com/t5/Web-Printing-Software/HP-Smart-Web-Printing-and-Firefox/td-p/105151/page/7 ''(this is HP forum discussion from 08-15-2009 to 08-28-2012; see last comment on page 7 dated 08-28-2012 by user '''Shirlzz1''')''

  • We have a requirement to print the w2 forms for employees using java application, how can i implement this. Please give some suggestion.

    We have a requirement to print the w2 forms for employees using java application, how can i implement this. Please give some suggestion.

    Anyone any ideas to help please?

  • How to view unseen pages using Smart Print

    I have a HP Photosmart C4480 All-In-One Printer, running Vista 64-Bit and Windows 9.  Once Smart Print has highlighted text, I have not found the method of viewing text that is out of screen view.  Ex:  An email, including recipients is three pages long.
    How do I get to the next page to deselect/select?  Thank you.

    Hey sgt_sid,
    Welcome to the BlackBerry Support Community Forums.
    Thanks for the question.
    Is the Browser set to Desktop mode? Open the browser and press the 3 dots and choose settings and open developer mode. Also can you provide an example of a WML website?
    Do you get a specific error as well?
    I look forward to your reply.
    Cheers.
    -ViciousFerret
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click  Accept as Solution for posts that have solved your issue(s)!

  • How do you get Internet Explorer 9 from shutting down while trying to print from Smart Print button?

    I'm using Internet Explorer 9, and have the latest Smart Print button on my Bing Bar.  When I click on Smart Print to print a page, it lets me go through the entire process of choosing what I want to print, and lets me click on print, which brings me to the print options, but when I click on the final print button, I get a Microsoft error message saying "Internet Explorer has stopped working" message and it closes down my opened page.  How do I print if I keep getting this message?

    dougiedc wrote:
    It boggles the mind.  The Verizon store on L Street downtown Washington, D.C. cannot access my Verizon account.  They can only sell cellphones then it's up to me to contact Verizon on my own to get the hook up. I even asked "Are you Verizon employes?  Is this a vendor store or is it really a Verizon owned and operated store?"  The answer "Yes, we are Verizon employes, yes this is a Verizon owned and operated store" ...
    Yes, it indeed boggles the mind.  I'm of course referring to the fact that your post concerns Verizon Wireless products and services.  This forum is dedicated exclusively to Verizon Communications services.   As you probably know, Verizon Wireless and Verizon Communications operate as separate companies.
    If you need help for a Verizon wireless product or service, it's best to direct questions to the Verizon Wireless forums.  You can reach them by clicking on "Wireless" (either here or at the top of the page).
    Good luck and I sincerely hope you get your issue resolved.

  • How to download the latest compatible version of hp smart print

    how do i download the latest compatible version of hp smart print and how do i get to a live chat person

    Hi,
    Please use its homepage:
        http://h41112.www4.hp.com/smartprint/us/en/smart.h​tml?jumpid=ex_r602_ww/en/hho/ipg/xx-mu-aw_chev/sma​...
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • HT1338 My hp photo smart printer 5514 wont work with my 10.8 software, how do I fix this ?

    My hp photo smart printer 5514 wont work with my 10.8 software, how do I fix this ?

    It's supported. Open System Preferences > Print and Scan, press + button and press your printer

  • How can I use hp smart print with win 7 64 bit and ie11

    Is there a way for HP Smart Print 2.7 to work with Windows 7 64-bit  IE 11?

    Hi,
    Unfortunately HP Smart Print software  is only supported for Internet Explorer versions 6 through 9. No more development after that.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

Maybe you are looking for