Issue with new font (Excalibur Monospace) in PDF Output

Hi,
As per Business requirnment , i have install new font "Excalibur Monospace" and apply to the .rtf template. i have done Font Mapping by going XML Publisher resposibility and assgin to the specific template
Now the reqrinment is , make the headings BOLD in rtf template. eventhough i have made it BOLD in template , it's still not reflecting on PDF output.
i am using E Business Suite Release 12.0.6
can you please advice to make the heading Bold for new font???
Thanks and Regrdas,
Mahendra Pawar

Hi Prabhudas,
I am using the FM 'CONVERT_OTF' to convert the data to pdf.
The FM CLOSE_FORM is creating the IT_OTF internal table and the CONVERT_PDF uses that internal table to populate the         IT_PDF internal table and then using the FM 'SO_OBJECT_SEND' to send the PDF file to mail.
  CALL FUNCTION 'CONVERT_OTF'             
       EXPORTING                          
            format       = 'PDF'          
       IMPORTING                          
            bin_filesize = g_filesize     
       TABLES                             
            otf          = it_otf         
            lines        = it_pdf.        
Regards,
Sankara Chakradhar.

Similar Messages

  • Issue with the font and alignment in SAP Script PDF

    Hi Experts,
    I have a problem with the font in SAP Script PDF conversion.
    The output of the form is working fine but in the PDF the output is wrong.
    There is a dutch letter ' ï ' which is pinted in the form output correctly but in the PDF output the character
    has been changed to '#'.
    and also the alignment of some text has beed changed without line spacing in between.
    Please let me know what could be the problem and how to solve this issue.
    Thanks in advance,
    Regards,
    Sankara Chakradhar.

    Hi Prabhudas,
    I am using the FM 'CONVERT_OTF' to convert the data to pdf.
    The FM CLOSE_FORM is creating the IT_OTF internal table and the CONVERT_PDF uses that internal table to populate the         IT_PDF internal table and then using the FM 'SO_OBJECT_SEND' to send the PDF file to mail.
      CALL FUNCTION 'CONVERT_OTF'             
           EXPORTING                          
                format       = 'PDF'          
           IMPORTING                          
                bin_filesize = g_filesize     
           TABLES                             
                otf          = it_otf         
                lines        = it_pdf.        
    Regards,
    Sankara Chakradhar.

  • When I open a new tab, an unwanted website opens instead of my desired home page. THIS IS ONLY AN ISSUE WITH NEW TABS; (opening the web browser AND clicking on the home button frings me to my desired home page.)

    When I open a new tab, an unwanted website opens instead of my desired home page. THIS IS ONLY AN ISSUE WITH NEW TABS; (opening the web browser AND clicking on the home button frings me to my desired home page.)
    I have attached the url of the unwanted site.

    Use this add-on [https://addons.mozilla.org/en-US/firefox/addon/custom-new-tab/ '''Custom new tab'''].

  • How can i get my ps 3.0 to install on my laptop ? compatibility issues with newer version of windows

    how can i get my ps 3.0 to install on my laptop ? compatibility issues with newer version of windows

    It's hopelessly outdated. It's simply not compatible.
    Mylenium

  • Display issues on Pages with new fonts

    I have dowloaded new fonts, and have registered them in FontBook (everything was fine), and when I tried to use the fonts on Pages, they would be on the page, but in the list of fonts they were registered as blank. But when I did cmd + T, to show the fontbook on the app, they were all their… I have no idea how to show them in the scroll down list for easier use of them.
    Thanks to all!

    Somehow everything fell into place ! Magic!

  • Memory Leak with new Font()

    Hello all,
    Not sure if this is the right place to post this but here goes. I have a program that needs to change the font of at least 250,000 letters, however after doing this the program runs slow and laggy as if changing the fonts of each letter took up memory and never released it? Here is a compilable example, Click the button at the bottom of the window and watch the letter it is currently working on. You will notice that around 200,000 it will begin to not smoothly count up anymore but count in kind of a skipping pattern. This seems to get worse the more you do it and seems to indicate to me that something is using memory and not releasing it. I'm not sure why replacing a letter's font with a new font would cause more memory to be taken up I would think if I was doing it properly it would simply replace the old font with the new one not taking anymore memory then it did before. Here is the example: This program sometimes locks up so be prepared. If someone could maybe point out what is causing this to take up more memory after changing the fonts that would be great and hopefully find a solution :) Thanks in advance.
    -neptune692
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package paintsurface;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.*;
    import java.util.List;
    public class PaintSurface implements Runnable, ActionListener {
    public static void main(String[] args) {
            SwingUtilities.invokeLater(new PaintSurface());
    List<StringState> states = new ArrayList<StringState>();
    Tableaux tableaux;
    Random random = new Random();
    Font font = new Font("Arial",Font.PLAIN,15);
    //        Point mouselocation = new Point(0,0);
    static final int WIDTH = 1000;
    static final int HEIGHT = 1000;
    JFrame frame = new JFrame();
    JButton add;
    public void run() {
            tableaux = new Tableaux();
            for (int i=250000; --i>=0;)
                    addRandom();
            frame.add(tableaux, BorderLayout.CENTER);
            add = new JButton("Change Font of letters - memory leak?");
            add.addActionListener(this);
            frame.add(add, BorderLayout.SOUTH);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setSize(WIDTH, HEIGHT);
            frame.setLocationRelativeTo(null);
            frame.setVisible(true);
    public void actionPerformed(ActionEvent e) {
        new Thread(new ChangeFonts()).start();
    void addRandom() {
            tableaux.add(
                            Character.toString((char)('a'+random.nextInt(26))),
                            UIManager.getFont("Button.font"),
                            random.nextInt(WIDTH), random.nextInt(HEIGHT));
    //THIS CLASS SEEMS TO HAVE SOME KIND OF MEMORY LEAK I'M NOT SURE?
    class ChangeFonts implements Runnable {
        public void run() {
        Random rand = new Random();
            for(int i = 0; i<states.size(); i++) {
                font = new Font("Arial",Font.PLAIN,rand.nextInt(50));
                states.get(i).font = font;
                add.setText("Working on letter - "+i);
    class StringState extends Rectangle {
            StringState(String str, Font font, int x, int y, int w, int h) {
                    super(x, y, w, h);
                    string = str;
                    this.font = font;
            String string;
            Font font;
    class Tableaux extends JComponent {
            Tableaux() {
                    this.enableEvents(MouseEvent.MOUSE_MOTION_EVENT_MASK);
                    lagState = createState("Lag", new Font("Arial",Font.BOLD,20), 0, 0);
            protected void processMouseMotionEvent(MouseEvent e) {
                    repaint(lagState);
                    lagState.setLocation(e.getX(), e.getY());
                    repaint(lagState);
                    super.processMouseMotionEvent(e);
            StringState lagState;
            StringState createState(String str, Font font, int x, int y) {
                FontMetrics metrics = getFontMetrics(font);
                int w = metrics.stringWidth(str);
                int h = metrics.getHeight();
                return new StringState(str, font, x, y-metrics.getAscent(), w, h);
            public void add(String str, Font font, int x, int y) {
                    StringState state = createState(str, font, x, y);
                    states.add(state);
                    repaint(state);
            protected void paintComponent(Graphics g) {
                    Rectangle clip = g.getClipBounds();
                    FontMetrics metrics = g.getFontMetrics();
                    for (StringState state : states) {
                            if (state.intersects(clip)) {
                                    if (!state.font.equals(g.getFont())) {
                                            g.setFont(state.font);
                                            metrics = g.getFontMetrics();
                                    g.drawString(state.string, state.x, state.y+metrics.getAscent());
                    if (lagState.intersects(clip)) {
                    g.setColor(Color.red);
                    if (!lagState.font.equals(g.getFont())) {
                        g.setFont(lagState.font);
                        metrics = g.getFontMetrics();
                    g.drawString("Lag", lagState.x, lagState.y+metrics.getAscent());
    }Here is the block of code that I think is causing the problem:
    //THIS CLASS SEEMS TO HAVE SOME KIND OF MEMORY LEAK I'M NOT SURE?
    class ChangeFonts implements Runnable {
        public void run() {
        Random rand = new Random();
            for(int i = 0; i<states.size(); i++) {
                font = new Font("Arial",Font.PLAIN,rand.nextInt(50));
                states.get(i).font = font; // this line seems to cause the problem?
                add.setText("Working on letter - "+i);
    }

    neptune692 wrote:
    jverd wrote:
    You're creating a quarter million distinct Font objects, and obviously you must be hanging on to all of them because each character is having its font set to the newly created object. So if you have 250k chars, you're forcing it to have 250k Font objects.
    Since the only difference is that rand.nextInt(50) parameter, just pre-create 50 Font objects with 0..49, stick 'em in the corresponding elements in an array, and use rand.nextInt to select the Font object to use.That does make sense but it does that when the the program is first launched and doesn't lag. But the second and third time you change the letters font it seems to lag so if it wasn't taking up more memory the second time it should perform like it did when it first launched. I don't care to investigate any further. The real problem is almost certainly the quarter million Font objects. It could be that 250k is fine, but by the time you get to 500k, it has to do a lot of GC, and that's where the slow down is coming. You might even be able to make it work better with the code you have just by tweaking the GC parameters at startup, but I wouldn't bother. Fix the code first, and then see if you have issues.
    Does creating a new font for each of those letters not replace the old font object? If it didn't use more memory the second and third time I don't think you would see the skipping in the counter and the slowing down of the iterations. So it must be remembering some of the old font objects or am I wrong?Using new always creates a new object. When you do it the second time around, and call letter.setFont(newFont), the old Font object is eligible for GC. That doesn't mean it will be GCed right away though. The JVM can leave them all laying around until it runs out of memory, and then GC some or all of them.

  • Strange Printing Issue With New HP & Pages

    Hello!
    I have a very strange printing issue with a new HP printer. I have written pages documents heavy in Texts which are located within tables. The documents print fine on a Cannon and Epson printer and look great but when I print the document on my new HP Laserjet Pro 400 Colour M451nw some of the text on some rows come out of the printer looking like they are bold / slightly fuzzy. This only happens with some of the rows of text, not all of them. The font is the same in every row with the same format.
    You can see this in the attached image. The first line (Thanks very much) has printed correctly but the subsequent lines look bold / slightly fuzzy.
    After a lot of testing the only way I can resolve this is if I copy the content into a new pages document and only then it will print and look ok with the HP printer.
    This must be a problem within my origional document. I would simply copy and paste everything into a new document however this would take a very, very long time (over 5 years of work producing teaching materials and over 100 documents and thousands of tables and formatting that cannot be copied and pasted).
    Also, on other printers you can see the lines seperating each row of the table. These lines are not visible on the HP print outs, even when the table is copied into a new document.
    Has anyone come accross an issue like this before? Is there a way I can fix this without creating a new document? Do I need to get a new another new printer (the 4th printer this week!)?
    Any advise, wise words would be greatly apprechiated!
    Thanks!

    Sorry, Fruhulda. After 4 hours on the phone with Apple care they are taking this issue further themselves. It seems to be a problem with our pages document and the compatibility with certain drivers. We have still not gotton to the bottom of it and Apple are going to get back to me when they have an answer.
    We also worked out that the issue only happens when you print via Ethrenet & USB. Printing via Wifi is ok and there are no quality issues.
    Very Strange!

  • Idoc flatfile to IDOC xml issue with new PI7.11 module SAP_XI_IDOC/IDOCFlat

    Hi,
    I am trying to develop a scenario as mentioned in the blog using the new module available in PI7.1,but I am getting this error
    "Error: com.sap.conn.idoc.IDocMetaDataUnavailableException: (3) IDOC_ERROR_METADATA_UNAVAILABLE: The meta data for the IDoc type "ORDERS05" is unavailable."
    I have made every configuration correct and IDOC meta data available in both SAP R3 and PI,but it is still complaning about the meta data does not exist.
    Blog:  http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/13743%3Fpage%3Dlast%26x-order%3Ddate
    did anybody face issue with the new module available "SAP_XI_IDOC/IDOCFlatToXmlConvertor",please help me or give me mre information why I am getting this meta data error.
    Thank you,
    Sri

    Hi Sri,
    To Convert IDOC Flat file into IDOC xml from the given blog, the IDOC flat file should be present in standard format like:
    E2EDK01005                    0000047110815000000000001.........
    E2EDKA1003                    0000047110815000000000002.........
    E2EDKA1003                    0000047110815000000000003..........
    E2EDKA1003                    0000047110815000000000004........
    The Flat file have relationship as IDOC Number "000004711081500000" and segment sequence "0000001".
    If your flat file is not in this formate so i don't think that module is able to convert into IDOC xml. and if your file is already in this format then it may be issue with destinations which are created in NWA.
    Thanks
    Harish

  • Display issue with LiveCycle Designer ES4 for cropped PDF in WIN7

    Hi,
    I am having issue displaying the cropped PDF file in the LiveCycle Designer ES4. The PDF files are cropped 3 inches from bottom using Adobe Acrobat 8 Professional. It used to display properly when we have a WinXP machine but once we moved to a Win7 machine, it cannot display the top part of the PDF anymore. Can anyone help on how to fix the display issue? Thanks.
    Kenny
    Environment:
    Adobe LiveCycle Designer ES4 V11.0.0.2013.0303.1.892433
    Adobe Acrobat 8.0.0
    Screenshots
    Win 7, LiveCycle Designer does not display properly
    Win XP, LiveCycle Designer used to display properly

    Thanks vNohria.
    I am having same issue with Adobe Acrobat 9. The Acrobat 9 cropped file is displaying properly under WinXP but have the same issue as above in Win7. This issue seems uncommon as I tried to look for similar issue  and couldn't find any.
    P.S. It's only the Design View in Win7 that has the issue, I can still see the file fine with Preview PDF in both enviornment.
    Design View:
    Preview PDF:

  • Photo Book - issue with generating full size picture in PDF file

    Need some assistance here.
    I have created a photo book that I would like to order. In the middle of the book I have 2 pages that contain a full size picture on each of the pages. When I generate the PDF file one of these two pictures do not generate correctly leaving an incorrectly rendered rectangle in the bottom left hand corner. 80% of the time it is on of the 2 large 8x10 pictures, the other 20% it is the other 8x10 picture. Aperture does indicate the dpi is large enough to support a quality 8x10 photo.
    I have exported jpeg files for each of these pictures and there were no problems. I am not sure by I have this problem in creating the PDF. Does any one see a potential issue with the book? When I order the photo book is it done through he PDF file or are the pictures sent in?
    Because of the issue I am cautious to order the Photo Book, but would like to do so.
    Any thought or feedback? Is this something that will come through as problem with the photo book as well?
    Thanks

    Hi ejg999,
    I have a similar problem running 10.5.2/ Aperture 2.0 trial.
    My 15800*4700 pixel (19.8mb) panorama was completely screwed up when printing the book to PDF. I did not span the pict over 2 pages as the center part would not be visible in the book's fold. I created 2 full size pages, resized the frames and adjusted their position.
    The print just shows hundreds of small squares, some seem ok, some are blue, some are rendered partially. Totally unusable.
    The physical memory was not the problem as I had at least 500mb free during the printing operation.
    I printed the book twice: same problem. I thought shutting down Aperture would resolve the error. but all my pics were gone. And the Time Machine did not backup while Aperture was running (still a bug). Aaaaaarghhhh.
    I managed to restore my work. I will try to create a smaller copy of the panorama and try to print.
    BTW, what is the size of your photo creating the problems?
    regards
    FranzMacN

  • Windows Media Player plugin does not install on a fresh install of Firefox 15. This is a real issue with new students.

    I have them go to the correct site:
    plugin download page on Interoperability Bridges.
    My only options are:
    1. Have them move some files over manually; which isn't feasible with students who are technically challenged.
    2. Have them install an earlier version of Firefox. 11 is the last known good version that accepts the WMP install. The problem I am finding with this is even though I tell them not to update before installing WMP somehow they still manage to do it. A lot of times they don't know how to tell me what version of ANY browser they are using.
    Firefox is one of the few browsers that work with our LMS well, but this plug problem is a real issue.
    This only pertains to any student who has never had Firefox on their computer prior to 11.
    Thanks in advance.

    I noticed it after 11, however with 12 students students experienced problems with puzzles in Angel LMS. We had people roll back to 11.
    13 came out and that's when the trouble started. I usually stay in beta so I can get a idea of what's working. Once again I had people roll back to 11.
    I logged into a system here I had not logged into before and did a fresh install of 11 and I was able to recreate the problem myself.
    Getting people on 11 is a little harder this semester because I had to locate the 11 install and send that along with the plugin to new users. The 11 install likes to force the 15 update so they have to get the plugin installed right away. Sometimes the concept is a little much for some people.
    Edit: 12 might have been okay, since we were rolling back anyway. I don't recall any issues with WMP the few weeks students had been using it.
    Edit 2: I do remember trying to search these forums for the issue and someone posted that they had been experiencing the same problems with 12 beta (at the time it was beta) and I think it was explained as being a beta issue and it never went anywhere else.

  • Quality issues with new Mac Mini 09?

    I've been itching to hit the 'buy' button -- but in reading the many postings about the new Mac Mini, I'm seeing lots of issues with the bluetooth ... *wireless signal* ...
    Is there anyone who's not experiencing any problems?
    Sounds like it may be a hardware issue with connections... the last thing I want.
    My other choice is the 2008 Mac Pro which seems trouble free.
    What do you think?
    Thanks.

    There is a general issue/trend with the new Mini. There are plenty of reports in these forums and the news has begun to hit the wider press; I guess this is more important to a company with only 2-3% desktop share than posts to these forums. I went to the Genius Bar on Saturday and they have now lodged an official bug report with Apple. It looks like the Mini cannot pair with more than one HCI device. So if you pair with the mouse first the keyboard won't work and vice-versa. They don't think the Mini hardware is broken but that we will just have to wait for Apple to fix the firmware.
    Where I do agree is that some issues are OS-X 10.5 related and can therefore affect all Macs. The WiFi has issues where it randomly drops, it doesn't seem able to re-connect at all to channels above 13 and only manually to channels below 12. The system resume function is unreliable. All these started when we moved from 10.4 to 10.5 and so far they have not been addressed. One issue is that there does not appear to be a way for users to log bug reports, except when software crashes. However, the bluetooth issues on the Mac do appear real and are either firmware or hardware related.

  • Issue with new abap webdynpro INBOX EHP5

    Hello Experts,
    I'm currently working on the configuration of ESS/MSS services in EHP5. We are using different services like Appraisal OSA, Learning solution,etc. I already configured the Launchpad ESS, it's working fine but now I have an issue with the new Abap webdynpro INBOX. The employee and manager see their workitem notifications correctly in their respective inbox.(I'm calling application: IBO_WDA_INBOX that I integrated in my launchpad).
    My problem is that when clicking on a workitem in order that it opens me the appraisal document (in edit or display mode), I got an error saying: "There is no iView available for system "": object "SWF_WIOBN". For more information, contact your administrator."
    I did some search on SAP help without any results. I'm wondering how should I register workflow tasks? I saw there is a table called IBO_C_WF_TAS (I added entries e.g:
    IBO_WDA_INBOX TS99700031   EXECUTEAPPRAISALDOCUMENT).
    I tried also to register all my custom tasks in transaction SWFVISU.
    example:
    TASK: TS99700013
    Visualization Type: ABAP Webdynpro
    APPLICATION:    HAP_MAIN_DOCUMENT
    DYNPARAM   :    sap-wd-configId=HAP_AC_MAIN_DOC
    NAMESPACE :    sap
    SYSTEM_ALIAS: SAP_Webdynpro_XSS (I did create a system in sap portal under System Administration with as AS property /webdynpro/dispatcher )
    Could you let me know what could be wrong, what I missed? Shall I create an iView, if yes which one? which properties?
    I would really appreciate any help.
    Thanks!

    Hello Siddharth,
    Thanks for you reply. Still the same issue. Following are the config I did till now:
    In the PCD I created a new business object (SWF_WIOBN), an operation linked to the object (NAVIGATE).
    I did create an iView (powl) in the custom folder, I integrated the operation within iView. I created a page that contains the iView.
    In the properties of the iView I gave:
    Application Name: HAP_MAIN_DOCUMENT.
    Launch in New Window: "Display in separate Headerless Portal Window".
    System: SAP_ECC_HumanResources
    I added the required entries in tables:
    IBO_C_WF_TTAS
    IBO_C_WF_ACS
    IBO_V_WF_TAC
    IBO_V_WF_TTAC
    etc...
    I saw in the code of linked feeder class: CL_IBO_INBOX_FEEDER_WI  that it's checking something called "Launch_Editor".. Is it a property that we can set somewhere?
    Following are the parameters retrieved by system:
    BO_NAME       =  SWF_WIOBN
    BO_OP_NAME = NAVIGATE
    LAUNCHER_PARAMETERS ->  empty.??
    BO_RESOLVE_MODE = USER_SET_OF_ROLES
    LAUNCH_EDITOR  empty where must be set?
    At the end I still get the error:
    There is no iView available for system "": object "SWF_WIOBN". For more information, contact your administrator.
    Any advice,
    Thanks in advance

  • Illustrator CS5/CS6 on OSX 10.9.1 - Issue with loading fonts.

    I'm using Illustrator CS6 on OSX 10.9.1. Ever since I've upgraded to OSX Mavericks, Illustrator has stopped loading some of the document fonts even though they are enabled and available for other applications. I get the font missing dialog every time I open the artboard after a system restart. I usually resolve this by opening the Font Book app, disabling and re-enabling the fonts. This refreshes the artboard and the fonts then appear to work as normal. Initially, I suspected a compatability issue with Illustrator CS5 and OSX Mavericks, but after upgrading to CS6, I continue to have the same issue. The fonts in question are ttfs and these worked fine previously.
    How can I fix this?

    Do you use any third party font maangement tool?
    Which fonts are affected?

  • Issues with newer version of Acrobat Reader

    I'm not looking for advice or a fix for this problem. I'm simply posting it so that hopefully, the folks at Adobe will get a clue & take the issues with their software seriously. The real fix here is for them to quit ignoring bugs in their software and correct the code. Anyway...
    In the most recent versions of Acrobat Reader (looks like specifically to X & XI), it seems to be hit or miss as to whether Reader will open PDF attachments in Outlook email. Typically, when I double-click on a PDF attachment, nothing happens. An instance of AcroRd32.exe is created as a process (which hangs), but the PDF file doesn't open. If I make the mistake of double-clicking on the file again, another instance of AcroRd32.exe sucks up more of my system resources. This will occur for each time I double-click on the attachment. Sometimes I get lucky, and it will open the PDF file. Sometimes, if I right-click on the attachment and select open, it will do so. Most times, it just does the same thing as double-clicking.
    I've scoured the forums, searched online... Lots of people have reported this or similar problems. Solutions have been offered up, which don't work for most users. etc., etc., etc.
    It's just like the issue that Adobe has had for years with Acrobat - The software is notorious for remaining in memory as a process, long after you've closed the PDF file you opened. And likewise, for each PDF file you open, yet another instance of the software loads into & consumes memory.
    Adobe has had problems like this for years. They never have taken it seriously, they never choose to fix it.
    So, as I said in the beginning of the post - I'm not looking for a fix. I came up with my own fix - I deleted version XI, located an old copy of 9.4 & installed it.
    Nope, I'm not looking for solutions or support. I simply wanted to ***** about it.
    Doubt Adobe will even notice the post, and if they do, they'll just operate like they always have... Hope that their sloppy code just magically fixes itself.

    This is a user forum, and not the place to file bug reports to Adobe.  So you are right: your post won't be noticed by the Acrobat developers.  Nor would it give them enough information to reproduce the problem.
    P.S. I never had a problem opening Outlook attachments with Adobe Reader.  If I had, I would start by disabling Protected Mode, which is the most common cause for a multitude of problems in Adobe Reader.

Maybe you are looking for

  • Cost Center Authorization

    Dear Friends / Experts We have around 10 HR (BW/BO) reports. All are woking fine. Now the users wants to restrict the report based on cost center. Hence, I have created one DSO with relevent information and extracted the data from ECC ( Used id, Cost

  • I want to know how to make a cd from my playlist

    How do I make a cd from the song on my playlist?

  • No new message notification for Yahoo

    Hi, Even though I have new emails in my Yahoo account, I don't get a new message notification on my iPhone. Yes, the new emails are in my iPhone's Yahoo account inbox but there is no notification when I receive them. They all show up as if I had alre

  • Webservice call on UCCX Script

    Hi, Anybody has idea how to call web service on UCCX script editor. I read i have to built custom java code and import it into UCCX. Can anybody support how to use it.

  • How do I transfer my music from my old PC to my new MacBook?

    I just got my MacBook Pro yesterday and Ive been trying to transfer the music from my PC to the Mac using Home Share, but whenever I try iTunes says that the computer is not a part of the Home Share from my account, even though its signed into that a