Is it possible to print the info. from the help window. (ex. how to create a smart list)

is it possible to print the info. for the help window. (ex. how to create a smartlist... i tunes)

Yes, click the gear icon and select print.

Similar Messages

  • My computer crashed and I no longer have the itunes library. i get an error msg that my iphone is synced to another library - how can I get the info from the phone to the itunes library?

    my computer crashed and I no longer have the itunes library. i get an error msg that my iphone 3g is synced to another library - how can I get the info from the phone to the itunes library without losing everything? How do I delete old audiobooks from my iphone?

    You can transfer itunes purchases:  File>Devices>Transfer Purchases
    The iphone is not a storage/backup device.  The sync is one way - computer to iphone.  The exception is itunes purchases.
    It has always been very basic to always maintain a backup copy of your computer.  Use your backup copy to put everything back.

  • How do I get the downloaded music on my iphone to my new home pc and itunes, it took the info from the 1st device but not the 2nd

    how do I get the downloaded music on my iphone to my new home pc and itunes, it took the info from the 1st device but not the 2nd

    the appletv will not display your movies in folders.
    you could change the tags in itunes to include the genre in the "show" field in the "video" tab. this would replicate the view you want, but you will need to tag all your movies to do this.

  • Is it possible to print a JPanel from the application?

    Hello,
    Just a quick question: Is it possible to print a JPanel from your application? I have plotted a graph and I would like user to be able to print this with a click of a button (or similar)
    Thanks very much for your help, its appreciated as always.
    Harold Clements

    It is absolutely possible
    Check out my StandardPrint class. Basically all you need to do is
    (this is pseudocode. I don't remember the exact names of methods for all this stuff. Look it up if there's a problem)
    PrinterJob pd = PrinterJob.createNewJob();
    StandardPrint sp = new StandardPrint(yourComponent);
    pd.setPageable(sp);
    //if you want this
    //pd.pageDialog();
    pd.doPrint();You are welcome to have use and modify this class but please don't change the package or take credit for it as your own code.
    StandardPrint.java
    ===============
    package tjacobs.print;
    import java.awt.*;
    import java.awt.image.BufferedImage;
    import java.awt.print.*;
    import javax.print.PrintException;
    public class StandardPrint implements Printable, Pageable {
        Component c;
        SpecialPrint sp;
        PageFormat mFormat;
         boolean mScale = false;
         boolean mMaintainRatio = true;
        public StandardPrint(Component c) {
            this.c = c;
            if (c instanceof SpecialPrint) {
                sp = (SpecialPrint)c;
        public StandardPrint(SpecialPrint sp) {
            this.sp = sp;
         public boolean isPrintScaled () {
              return mScale;
         public void setPrintScaled(boolean b) {
              mScale = b;
         public boolean getMaintainsAspect() {
              return mMaintainRatio;
         public void setMaintainsAspect(boolean b) {
              mMaintainRatio = b;
        public void start() throws PrinterException {
            PrinterJob job = PrinterJob.getPrinterJob();
            if (mFormat == null) {
                mFormat = job.defaultPage();
            job.setPageable(this);
            if (job.printDialog()) {
                job.print();
        public void setPageFormat (PageFormat pf) {
            mFormat = pf;
        public void printStandardComponent (Pageable p) throws PrinterException {
            PrinterJob job = PrinterJob.getPrinterJob();
            job.setPageable(p);
            job.print();
        private Dimension getJobSize() {
            if (sp != null) {
                return sp.getPrintSize();
            else {
                return c.getSize();
        public static Image preview (int width, int height, Printable sp, PageFormat pf, int pageNo) {
            BufferedImage im = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
            return preview (im, sp, pf, pageNo);
        public static Image preview (Image im, Printable sp, PageFormat pf, int pageNo) {
            Graphics2D g = (Graphics2D) im.getGraphics();
            int width = im.getWidth(null);
            int height = im.getHeight(null);
            g.setColor(Color.WHITE);
            g.fillRect(0, 0, width, height);
            double hratio = height / pf.getHeight();
            double wratio = width / pf.getWidth();
            //g.scale(hratio, wratio);
            try {
                   sp.print(g, pf, pageNo);
              catch(PrinterException pe) {
                   pe.printStackTrace();
            g.dispose();
            return im;
        public int print(Graphics gr, PageFormat format, int pageNo) {
            mFormat = format;
            if (pageNo > getNumberOfPages()) {
                return Printable.NO_SUCH_PAGE;
            Graphics2D g = (Graphics2D) gr;
              g.drawRect(0, 0, (int)format.getWidth(), (int)format.getHeight());
            g.translate((int)format.getImageableX(), (int)format.getImageableY());
            Dimension size = getJobSize();
              if (!isPrintScaled()) {
                 int horizontal = getNumHorizontalPages();
                 int vertical = getNumVerticalPages();
                 int horizontalOffset = (int) ((pageNo % horizontal) * format.getImageableWidth());
                 int verticalOffset = (int) ((pageNo / vertical) * format.getImageableHeight());
                 double ratio = getScreenRatio();
                 g.scale(1 / ratio, 1 / ratio);
                 g.translate(-horizontalOffset, -verticalOffset);
                 if (sp != null) {
                     sp.printerPaint(g);
                 else {
                     c.paint(g);
                 g.translate(horizontal, vertical);
                 g.scale(ratio, ratio);
              else {
                 double ratio = getScreenRatio();
                 g.scale(1 / ratio, 1 / ratio);
                   double xScale = 1.0;
                   double yScale = 1.0;
                   double wid;
                   double ht;
                   if (sp != null) {
                        wid = sp.getPrintSize().width;
                        ht = sp.getPrintSize().height;
                   else {
                        wid = c.getWidth();
                        ht = c.getHeight();
                   xScale = format.getImageableWidth() / wid;
                   yScale = format.getImageableHeight() / ht;
                   if (getMaintainsAspect()) {
                        xScale = yScale = Math.min(xScale, yScale);
                   g.scale(xScale, yScale);
                   if (sp != null) {
                        sp.printerPaint(g);
                   else {
                        c.paint(g);
                   g.scale(1 / xScale, 1 / yScale);
                   g.scale(ratio, ratio);
             g.translate((int)-format.getImageableX(), (int)-format.getImageableY());     
            return Printable.PAGE_EXISTS;
        public int getNumHorizontalPages() {
            Dimension size = getJobSize();
            int imWidth = (int)mFormat.getImageableWidth();
            int pWidth = 1 + (int)(size.width / getScreenRatio() / imWidth) - (imWidth == size.width ? 1 : 0);
            return pWidth;
        private double getScreenRatio () {
            double res = Toolkit.getDefaultToolkit().getScreenResolution();
            double ratio = res / 72.0;
            return ratio;
        public int getNumVerticalPages() {
            Dimension size = getJobSize();
            int imHeight = (int)mFormat.getImageableHeight();
            int pHeight = (int) (1 + (size.height / getScreenRatio() / imHeight)) - (imHeight == size.height ? 1 : 0);
            return pHeight;
        public int getNumberOfPages() {
              if (isPrintScaled()) return 1;
            return getNumHorizontalPages() * getNumVerticalPages();
        public Printable getPrintable(int i) {
            return this;
        public PageFormat getPageFormat(int page) {
            if (mFormat == null) {
                PrinterJob job = PrinterJob.getPrinterJob();
                mFormat = job.defaultPage();
            return mFormat;
    }

  • How to read the info from the card?

    I'm using the GemPC410 reader and i'm succesfull to get the atr # of the card. Now i'm trying to get all the info that is in the card. Can someone help me out on how I can read all the info from this card?

    You need to establish a secure channel between reader/card using Global Platform.
    Look at the Global Platform Specifications on how to Authenticate to the card using ExAuth. That is the command to establish the secure channel. If you have developer cards, everyone ( except Gemplus ) uses keyset 0xff , 40 41 42...4f.

  • HT201269 I have an IPhone 4 that turns off.When I plug the phone into a outlet, it says to connect to iTunes. But my phone doesn't connect. I need to backup info to sync to a new iPhone. Is there another way to get the info from the old one?

    I have an IPhone 4 that turns off on its own. When I plug the phone into an outlet, it says to connect to iTunes. When i connect my phone to itunes, the screen displays the apple icon and doesn't connect to iTunes.  I need to backup info on this phone so I can apply my back up to a new iPhone. Is there any another way i can do this? My older phone will not show it's connected to iTunes. I used iCloud on the phone with problems, but I didn't back up all the info thru iCloud. Is there another way to back up?

    Sounds like your phone is in recovery mode.  In this case, all data on it is gone.  There's nothing to back up.

  • HT1386 I have 2 iPhones. One is not recognized in iTunes. I think I may have synced it with the info from the other.  How do I get it to be recognized?

    My wife's iPhone is not operational, so I thought I would give her my retired one.  I assumed that if I synced her phone info into iTunes, I could just sync the same info into the retired iPhone for her use.  Apparently, when I previously synced her original phone, I did not set it up in iTunes, so I only have one device available in iTunes.  How do I set up an additional device in iTunes?

    Thanks for your help, but i cannot borrow a noral sim card now, my family has all up graded to iPhone 4s's, i have done this before, but one of my family had the same type of iphone so i could use theirs. Now i am the only one who still holds on to their old phone... I am not sure about buying an adapter...

  • HT204053 i gave my old phone to my daughter.  i want all the info from the phone onto my Macbook

    how do i get the information, photos, contacts. etc from the iphone 4 to my macbook

    If you're running OS X Lion or higher, sign into the same iCloud account on your phone and your Mac and turn the data you wish to share to On, as explained here: http://www.apple.com/icloud/setup/mac.html.
    If you have iPhoto 9.2 or higher or Aperture 3.2 or higher you can enable photo stream to import new photos added to your camera roll to your Mac.  If you don't have these, or wish to transfer existing photos, they can be imported to iPhoto as explained here: http://support.apple.com/kb/HT4083.

  • Where does the info from the forms go?

    Hi Sidney,
    Sorry to bother you again, but I am really perplexed as to where the information that is collected from the forms is going.  Please coould you explain?
    I have used the Tribuca template for my first online shop.
    The account registration page only caputers the first/last name email adress and postcode, even though it asks for the address and phone numbers in the customer tab in the admin panel.  I cannot find any of the information gathered at all.
    The order doesn't seen to capture the address details and therefore there isn't anyway of prepopulating the address for subsequent orders.
    Even the update details page is not caputring the address details, please could you help?
    The test address for my site is lazypatch.gorgeousconcepts.co.uk
    Many thanks
    Lisa

    For some reason my edit profile page is not sending the information to the Customer CRM in either UI.
    Once the form has been submitted, a box pops up saying something like "your form is being sent" when I click on OK the box goes and the form doesn't change.
    It sounds like some of my code is wrong somewhere, does anyone know what should be in the code please?  I think it is something to do with the JS down the bottom.
    Mine look like this:
    <form name="catupdatedetailsformform3349" method="post" onsubmit="return checkWholeForm3349(this)" action="/MemberProcess.aspx">
      <td><label for="Title">Title</label><br />
                    <select name="Title" id="Title" class="cat_dropdown_smaller">
                    <option value="635720">DR</option>
                    <option value="635719">MISS</option>
                    <option value="635716" selected="selected">MR</option>
                    <option value="635717">MRS</option>
                    <option value="635718">MS</option>
                    </select></td>
                </tr>
                <tr>
                    <td><label for="FirstName">First Name</label><br />
                    <input type="text" name="FirstName" id="FirstName" value="{module_firstname}" class="cat_textbox" maxlength="255" /> *</td>
                </tr>
                <tr>
                    <td><label for="LastName">Last Name</label><br />
                    <input type="text" name="LastName" id="LastName" value="{module_lastname}" class="cat_textbox" maxlength="255" /> *</td>
                </tr>
                <tr>
                    <td><label for="EmailAddress">Email Address</label><br />
                    <input type="text" name="EmailAddress" id="EmailAddress" value="{module_emailaddress}" class="cat_textbox" maxlength="255" /> *</td>
                </tr>
                <tr>
                    <td> </td>
                </tr>
                <tr>
                    <td><label for="Username">Username</label><br />
                    <input type="text" name="Username" id="Username" value="{module_username}" class="cat_textbox" maxlength="255" /></td>
                </tr>
                <tr>
                    <td><label for="Password">Password</label><br />
                    <input type="password" name="Password" id="Password" value="{module_password}" class="cat_textbox" maxlength="255" /></td>
                </tr>
                <tr>
                    <td><label for="PasswordConfirm">Confirm Password</label><br />
                    <input type="password" name="PasswordConfirm" id="PasswordConfirm" value="{module_password}" class="cat_textbox" maxlength="255" /></td>
                </tr>
            </tbody>
        </table>
        </div>
        <div class="fieldset">
        <h2 class="legend">
        Other Data
        </h2>
        <table cellspacing="0" cellpadding="2" border="0" class="webform">
            <tbody>
                <tr>
                    <td><label for="HomePhone">Home Phone Number</label><br />
                    <input type="text" name="HomePhone" id="HomePhone" value="{module_homephone}" class="cat_textbox" maxlength="255" /></td>
                </tr>
                <tr>
                    <td><label for="CellPhone">Mobile Number</label><br />
                    <input type="text" name="CellPhone" id="CellPhone" value="{module_cellphone}" class="cat_textbox" maxlength="255" /></td>
                </tr>
                <tr>
                    <td> </td>
                </tr>
                <tr>
                    <td><label for="BillingAddress">Address</label><br />
                    <input type="text" name="BillingAddress" id="BillingAddress" value="{module_billingaddress}" class="cat_textbox" maxlength="500" /></td>
                </tr>
                <tr>
                    <td><label for="BillingCity">City</label><br />
                    <input type="text" name="BillingCity" id="BillingCity" value="{module_billingcity}" class="cat_textbox" maxlength="255" /></td>
                </tr>
                <tr>
                    <td><label for="BillingState">County</label><br />
                    <input type="text" name="BillingState" id="BillingState" value="{module_billingstate}" class="cat_textbox" maxlength="255" /></td>
                </tr>
                <tr>
                    <td><label for="BillingZip">Postcode</label><br />
                    <input type="text" name="BillingZip" id="BillingZip" value="{module_billingzip}" class="cat_textbox" maxlength="255" /></td>
                </tr>
                <tr>
                    <td><label for="BillingCountry">Country</label><br />
                    <select name="BillingCountry" id="HomeCountry" class="cat_dropdown">
                    <option value=" ">-- Select Country --</option>
                    <option value="GB">UNITED KINGDOM</option>
                    <option value="US" selected="selected">UNITED STATES</option>
                    </select></td>
                </tr>
                <tr>
                    <td> </td>
                </tr>
            </tbody>
        </table>
        </div>
        <script type="text/javascript" src="/CatalystScripts/ValidationFunctions.js"></script>
        <script type="text/javascript" src="/CatalystScripts/Java_DatePicker.js"></script>
        <script type="text/javascript">
    //<![CDATA[
    document.getElementById('Title').value = '{module_title}'; document.getElementById('BillingCountry').value = '{module_billingcountry}'; document.getElementById('BillingCountry').value = '{module_billingcountry}'; var submitcount3349 = 0;function checkWholeForm3349(theForm){var why = "";if (theForm.FirstName) why += isEmpty(theForm.FirstName.value, "First Name");if (theForm.LastName) why += isEmpty(theForm.LastName.value, "Last Name"); if (theForm.EmailAddress) why += checkEmail(theForm.EmailAddress.value); if (theForm.Password && theForm.PasswordConfirm) { if (theForm.Password.value.length > 0 || theForm.PasswordConfirm.value.length > 0) { if (theForm.Password.value != theForm.PasswordConfirm.value) why += appendBreak("- Password and its confirmation do not match."); if (theForm.Password.value.length < 6) why += appendBreak("- Password must be 6 characters or longer."); }} if(why != ""){alert(why);return false;}if(submitcount3349 == 0){submitcount3349++;theForm.submit();return false;}else{alert("Form submission is in progress.");return false;}}
    //]]>
    </script>
        <div class="buttons-set">
        <p class="required">
        * Required Fields
        </p>
        <input type="submit" class="cat_button" value="Submit" id="catupdatedetailsformbutton" />
        </div>
    </form>
    Thank you

  • How do I get my info from the phone that was stolen

    My phone was stolen. How can I recover the info from the cloud on another device ?

    If you had the icloud backup feature turned on and had a backup made (from the lost device), then just get a new device and restore the backup.  Without a backup in icloud or iTunes, your data is lost.
    http://support.apple.com/kb/HT1766?viewlocale=en_US&locale=en_US
    Go to Settings>General>Reset and tap Erase All Content and Settings.  This will erase your device.  Then you will go through the setup screens again as you did when your device was new, and when given the option, select Restore from iCloud Backup.
    This link gives another overview of backup and restore:
    http://support.apple.com/kb/HT4859?viewlocale=en_US&locale=en_US

  • Transfering all the info from handheld to pc

    hi, i just recently bought a palm z22 from a girl that hardly ever used it so she passed on to me. i love it!!!; however i cant transfer all the info from the handheld to my pc. it is driving me crazy. please help me.
    thanks
    Post relates to: Palm Z22

    I hope she gave you the sync and charge cables. Did she give you the install CD too? If so, insert it in your computer's CD drive and follow the directions.
    If not, go to palm.com/support. Pick Handheld and then Z22. Download 1. The User Guide and 2. the version of Palm Desktop that is appropriate for your computer's operating system. Run the installer and follow the directions.
    Post relates to: Palm TX

  • How can we iterate and retrieve the data from the slices ?

    Hello,
    All is said in the question...so..
    Thanks in advance.

    Hi,
    try with the info from the following link I think it'll be helpful:
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/f6/f856d2469c11d4aa1100a0c9430730/frameset.htm">http://help.sap.com/saphelp_nw04/helpdata/en/f6/f856d2469c11d4aa1100a0c9430730/frameset.htm</a>
    Regards, Violeta

  • How can I get the info off the top of screen during slideshow playback on 7d

    Subject says it all.  I have a 7d and want to play slideshow through the camera up on screens without the info across the top.  No the info buttin does not help.  My older rebel does this no problem.  YES I can shoot on 7d but playback through rebel but thats dumb.  Help please.

    I have had the same problem. I solved it by disconnecting the the cable and then using the info button to clear the info from the rear screen. When I re-conneccted, the TV screen was clear during slideshow. 
    There might be an easier way, but I haven't found it. 
    Mike Sowsun
    S110, SL1, 5D Mk III

  • It is possible to get info from the PDF

    Hi Everyone,
    I'm new baby to acrobat using javascript. It is possible to get info from the PDF.
    The Info contain like Color space, Trim size, which font  used depend on pages and which color is used for image & text.
    Thanks in advance.
    -yajiv

    Hi GKaiseril,
    Thanks for prompt response.
    Actually I'm a new baby to Acrobat script. Please explain briefly How do I write java script and execute.
    I'm familiar with Photoshop and Indesign Script. We are using ExtendedScript Toolkit editor for writing script.
    Thanks in advance.
    -yajiv

  • I can't print wirelessly using Airport Express.  I have my HP printer connected to a USB hub, and the hub to the Airport Express, but when I select the HP from the printer list, my MacBook says the printer is "off-line" - even when it is not.

    I can't print wirelessly using Airport Express.  I have my HP printer connected to a USB hub, and the hub to the Airport Express, but when I select the HP from the printer list, my MacBook says the printer is "off-line" - even when it is not.  I've tried several USB connectors, and several different ports on my USB hub; same result.  I need to have the HP connected to the hub 'cause from there it's connected to our desktop Mac.

    Hi,
    I am currently replying to this as it shows in the iChat Community.
    I have asked the Hosts to move it to Snow Leopard  (you should not lose contact with it through any email links you get)
    I also don't do Wirelss printing so I can't actaully help either.
    10:01 PM      Friday; July 29, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

Maybe you are looking for

  • Creating af:Table programatically : XML Data coming from CLOB

    Hi , This is my Use case :: JDev version :: 11.1.2.3 I am presenting my use case in XE database format. 1) We have a procedure say: PROCEDURE GET_EMP_FOR_DEPT(DeptId IN Number,XMLDeptData OUT CLOB); based on DeptId Input it returns the Employees Unde

  • Missing Port  Information - HELP!

    Hi, i built a dynamic client to work with my webservice. Both were built using the JWSP1.2. Bellow is the error i get. It happens only if i call the getAll WS method (this method receives a String parameter and returns a Source Type Object) . Does an

  • Hide our user defined query

    Dear All Master Brains, It is possible to hide our user defined query in Query Manager, apart from our user authorization. I am waiting for your ………….. Regards, Team work never fails.

  • OVD plugin returning "Virtual" entry when entry not yet available in OID

    Hi, We've been working on a solution in which a new user has to get immediate access to a website and we, because the provisioning is taking some time, we have implemented a plugin for OVD which basically looks in the OID and if the user exists in OI

  • Reimport or extract edb-File

    Hello everyone, I have had a total server crash. Everything is not correctly working and the full windows system is damaged (empty popups, strange errors, no desktop icons etc.). BUT fortunately my Exchange-Folder seems to be untouched and completely