Format of printed Hyperlink

When I include a hyperlink in a topic, RH automatically Bolds
the link. I publish the Flashhelp version and the link is displayed
correctly bolded.
But when I create printed output as a Word document, the link
isn't bolded. I've had to manually repeat the link's text and
conditionally text it to be bolded when the output is
"Print"....isn't there an easier way to do this?
Thanks for your help!
Pam

The hyperlinks are displayed per the instructions provided by
your source files and/or your external style sheet. If you have no
style sheet, the browser will use the HTML Default.css. In the
style sheet, look for the "a {" section to sse what styles are in
play.
The Word document also has a default "Hyperlink" style, which
you can change as well.
Good luck,
Leon

Similar Messages

  • How does one print to a Large Format Network Printer in Adobe Reader X?

    I have just installed Adobe Reader X on a machine that previously had Adobe Reader 9 (I had to format the hard drive so this is a fresh installation).  When attempting to print to a large format Printer (36x24) across the network I cannot change the paper size.  Despite attempting to change the paper size to a number of different configurations Adobe X will not print anything but 8.5"x11.0" (which is the default paper size on the local printer).  I have tried making the network printer the default printer and that does not make any difference.  Everything worked fine with Adobe Reader 9 but not X.  Can anyone offer any suggestions?
    Also, I can print to both the local printer and the large format network printer fine through other applications.
    Thanks.
    Ben

    Just finished testing 10.10 printing via a Windows 2008 R2 print share. I also found that when trying to add the printer using CUPS I would get an authentication error. But if I added the printer using the Windows section of the Add printer pane, then I was able to print fine.
    So with you mentioning that using the Windows section of the Add printer window has never worked (which is interesting because it's always worked for me) I want to suggest another approach to adding the printer, still using the Add printer window. With this window open you can right-click on the toolbar and select Customize Toolbar. You can then drag the Advanced icon to the toolbar. Then when you select this, you can set the Type menu to "Windows via spoolss" and then enter the URL as smb://servername/sharename. Select the supporting driver and click Add to complete.
    Then when you select to print for the first time using this printer you will be prompted to authenticate. Enter the account details, set the save to Keychain option and OK to send the print job.
    This worked fine for me and creates the same queue as using the Windows add printer setting. Curious to hear if this gets your co-worker printing again.

  • Formatting for print

    I have read about using CSS for printing out your pages so
    that you dont
    have to create 2 copies of each page you want printed.. but i
    cant find how
    to actually put it to use..
    I have added the necessary code to my CSS file.
    I have changed the media type to media="print"
    and all i keep reading is that this allows you to have the
    same page
    formatted for print..
    But how exactly do i call the same page for print? do i add a
    link to the
    page saying click here to print? if so what woudl the link
    actually point
    to?
    or by just including the right code, when the end-user choses
    to click print
    within there browser that knows to display the same page
    using the
    print.css?

    "DC" <[email protected]> wrote in message
    >I have read about using CSS for printing out your pages
    so that you dont
    >have to create 2 copies of each page you want printed..
    but i cant find how
    >to actually put it to use..
    >
    > I have added the necessary code to my CSS file.
    > I have changed the media type to media="print"
    >
    > and all i keep reading is that this allows you to have
    the same page
    > formatted for print..
    >
    > But how exactly do i call the same page for print? do i
    add a link to the
    > page saying click here to print? if so what woudl the
    link actually point
    > to?
    >
    > or by just including the right code, when the end-user
    choses to click
    > print within there browser that knows to display the
    same page using the
    > print.css?
    >
    The browser display will always be the same, whether you have
    a print CSS
    option or not.
    The arrangement is -
    You have one style sheet for your screen layout say
    "screenstyle.css" and
    one for your print layout say "printstyle.css"
    You ad both style sheets to your page code -
    <link href="screenstyle.css" rel="stylesheet"
    type="text/css" media="screen"
    />
    <link href="printstyle.css" rel="stylesheet"
    type="text/css" media="print"
    />
    When a user views your page on their screen it is laid out
    according to your
    screenstyle.css style sheet.
    When the user prints the page, the printed output is laid out
    according to
    you printsyle.css style sheet.
    Hope this helps
    Regards
    Phill
    P&M Software
    www.pmsoftware.co.uk

  • I am looking for a new wide format desktop printer

    After I upgraded to the new imac last year, my HP deskjet 9680 with rip software was no longer compatible with the os.  I need a new printer which prints good quality wide format color prints which is compatible with adobe illustrator, and photoshop CS2-CS4.  Any suggestions?

    That's what wasn't real clear to me, I think Leopard had updated "drivers" and perhaps, not sure, firmware which is what I was interested in.  I do not know that much about the Photosmart 8850.  A few weeks ago my Designjet 10ps died and required about $500.00 to fix.  That's a lot to swallow, so I looked into a replacement.  The HP Photosmart Pro B9180 that I mentioned has a built-in calibration system which, if you are a photo printer, should be enough to get great photographs out of the box.  However, because I need a proofer, the Efi RIP looks like a good companion for color matching.  Unfortunately, it's going to set you and/or me back a grand.  I don't see why the HP Photosmart 8850 wouldn't be a bad choice if you are planning for photographic printing, but if you need accurate color matching, step up to  the Pro B9180.  Epson has a nice 13x19 which combined with the ColorBurst RIP will deliver impressively.  I can't recall the model, something like Epson 3800 Pro.  The Epson might be a few dollars more, but either one will deliver nice results.

  • How do I get System.out.format to print out doubles with the same precision

    Using the System.out.format, how do I print out the value of a double such that it looks exactly like it does if it were print from a System.out.println.
    For example, take the following code:
    double d = 12.48564734342343;       
    System.out.format("d as format: %f\n", d);
    System.out.println("d as   sout: " + d);Running the code, I get:
    <font face="courier">
    d as format: 12.485647
    d as sout: 12.48564734342343
    </font>
    The precision of d has been lost.
    I could bump up the precision as follows:
    double d = 12.48564734342343;
    System.out.format("d as format: %.14f\n", d);
    System.out.println("d as   sout: " + d);That appears to work, I get:
    <font face="courier">
    d as format: 12.48564734342343
    d as sout: 12.48564734342343
    </font>
    However, that solution fails if d has a different precision, say 12.48. In that case I get:
    <font face="courier">
    d as format: 12.48000000000000
    d as sout: 12.48
    </font>
    So how do I get System.out.format to print out doubles with the same precision as System.out.println?
    Thanks..

    YoungWinston wrote:
    Schmoe wrote:
    Interesting, but this is not what I am looking for...Your original question was "how do I print out the value of a double such that it looks exactly like it does if it were print from a System.out.println", and you've been told how to do that (although the pattern given by sabre may be a bit excessive - you should only need 15 '#'s).The initial phrase from my question was "Using the System.out.format, how do I..".
    It's worth remembering that, unlike the Format hierarchy, 'format()' is NOT native to Java. It's a convenience implementation of the 'printf()' and 'sprintf()' methods provided in C, and first appeared in Java 1.5. Those methods were designed to produced fixed-format output; 'println()' was not.Perhaps it is the case that this can't be done.
    Furthermore, Double.toString(), which is what is used by println() does not produce the same format in all cases; format("%.14f\n", d) does. TrySystem.out.println(1.8236473845783d);
    System.out.println(1823647384.5783d);and you'll see what I mean.I am fine with that. It still displays all the precision.
    I am simply looking for a way to quickly print out multiple variables on a sysout while debugging. I want it as syntactically sweet as possible. System.out.println can be a pain when outputting multiple variables like the following:
    "System.out.println("a: " + a + "; b:" + b + "; c: " + c);"
    For some reason, my fingers always typo the plus key.
    I was hoping that System.out.format would be easier,along the lines of:
    "System.out.format("a: %f, b: %f, c: %f\n", a, b, c);"
    From a syntactical sweetness point of view, it is easier. However, the %f on doubles truncates the precision. I figured there must be a way to get the full precision.
    DecimalFormat is syntactically sour for this purpose, as you need to instantiate the DecimalFormat.
    fwiw I have enjoyed reading the suggestions in this thread...

  • Not getting Landscape format while printing the file.

    I am not getting Landscape format while printing the file. I am using the follwing code. Can anyone help me in this regard. its urgent.
    public void printText(){
    String outputPath="d:\\output\\";
    DocFlavor flavor = DocFlavor.INPUT_STREAM.POSTSCRIPT;
    PrintRequestAttributeSet aaset = new HashPrintRequestAttributeSet();
    DocumentName docName = new DocumentName(outputPath+"outfile.ps", Locale.US);               
    PrintService pservices = PrintServiceLookup.lookupDefaultPrintService();// lookupPrintServices(flavor,aset);
    try {
    DocPrintJob pj = pservices.createPrintJob();
    InputStream file = new BufferedInputStream(new FileInputStream(outputPath+"outfile.ps"));
    Doc doc = new SimpleDoc(file,flavor,null);
    try {
         aaset.add(MediaSizeName.ISO_A4);
         aaset.add(OrientationRequested.LANDSCAPE);
         aaset.add(Sides.DUPLEX);
         pj.print(doc,aaset);
         } catch (PrintException e1) {
              e1.printStackTrace();
         } catch (FileNotFoundException e) {
         e.printStackTrace();
    }

    As a quick workaround... put the paper in the other way

  • Conditional Build tags affecting formatting and merging hyperlinks

    I'm working in RH6 on a number of projects. In all of them I use a specific caption box/format combination for tips and notes. I also use a conditional build tag so I can generate a 'lite' versions of full help, suitable for printing.  I note that on occasions, when I apply the build tag, I lose the formatting on the text - or the entire formatting of the text is applied where I don't want it applied.
    Wrose, still, I find that applying a build tag to a list of hyperlinks can merge the link addresses so they all point to the same area, which is pretty disastrous.
    Is this a bug Adobe know about? Is it fixed in 7 or 8?
    Any advice appreciated.
    Robin

    Hi again
    Well, I wasn't suggesting it wasn't a bug.
    I suppose it's quite likely that something is getting munged. Actually, I think that's rather obvious as it's happening to you.
    I think perhaps the editor is becoming confused. I believe the way these things are handled is by using some specially formatted span tags to apply the CBTs.
    By the way, these new forums now support screen captures. So we no longer have to resort to a reasonable facsimile using only text.
    Sorry I don't really have a workaround to offer here. At this point I'm as puzzled as you are.
    Cheers... Rick
    Click here for Adobe Authorized Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

  • I recieve my reciepts from all of my Apple purchases via email to my email cllient "MS Outlook 2003" on a Windows 7 Home Premium platform. I cannot format the print appearance of HTML documents within Outlook and the print border cuts of the last digit?

    I use MS Outlook as my email client under Windows 7 Home Premium and when I receive a reciept from Apple for purchases made for my iPhone (Stores or iTunes) the HTML formatting cuts off the last digit of the price paid on my eReceipts (the only receipts I get). Outlook 2003 does not allow for HTML print formatting since they (HTMLs) are formatted from the source (Apple). Can you help me to get Apple to fix this or find a workaround?

    Just to recap, this is a collection of ports I have collected over time for people who needed this information when setting up the HP ePrint app so that they could view their email from within the app.  I am certain other applications also need this information.  Although lengthy, I could not find a more comprehensive place to retrieve this information.  Feel free to post additional information, faulty information, or other related topics below as this is simply a collection of data and it would be practically impossible to test all of them. Thank you!
    Don't forgot to say thanks by giving "Kudos" if I helped solve your problem.
    When a solution is found please mark the post that solves your issue.
    Every problem has a solution!

  • Why can I not print multiple files to one sheet and create a PDF of that format via Print dialogue on Mac? Very important part of workflow!!!!

    Try this if you use mac.
    Create a multiple page PDF. Three pages.
    Go to print.  - Multiple pages per sheet so that you see all three pages on your sheet to be printed.
    At this point, on a windows machine, you can print this as a PDF.  On Mac, it only lets you save as PDF (Not with the format selected).
    WHY has this functionality been removed from the Mac version of Acrobat XI??? Adobe?

    Jon,
    Unfortunately, Rave's response is quite incorrect on two major points.
    The Adobe PDF PostScript printer driver instance was indeed part of the Macintosh version of Acrobat Pro until a few years ago.
    However, it was NOT Adobe that killed the feature. Apple did! In one of the MacOS updates, Apple fully removed the capability that Adobe had to support this virtual printer. There was nothing that Adobe could do about this, regrettably. Adobe didn't cripple anything. Complain to Apple!
    However, Adobe does provide a replacement for it that will yield similar results, but it is not available in Acrobat or Adobe Reader!!! In most applications' print dialogs (such as Word) - which printer you select is irrelevant, click on the PDF button and select the Save as Adobe PDF option. This will save your document as a PDF file with Adobe technology. But again, this is not available from with Acrobat or Adobe Reader.
    However, you should note that the process that you previously followed and you would like to continue to use is commonly referred to as “refrying a PDF” and is strongly discouraged even where it continues to work under Windows. Why? The print function of Adobe applications including Acrobat and Reader is optimized for PostScript for printing, not for creation of PDF. Resultant PDF files have lost any transparency (it has been flattened) and all color management has been lost.
    What you are really trying to do is to create a pre-imposed PDF file from an existing PDF file. Going through PostScript was and still is a very bad idea.
    There are some third party plug-ins to Acrobat, such as Quite Imposing (Quite Software, <http://www.quite.com>) and PDF Snake (<http://www.pdfsnake.com>) as well as some “free” (you get what you pay for) solutions you can look up on the web that can do PDF imposition without ruining your PDF via PostScript.
    Hopefully this can assist you.
              - Dov

  • Officejet 7000 Wide Format not printing Black

    Hi THere.  I have a HP Officejet 7000 wide Printing format and it is not printing Black.  The ink levels are showing full.  I have cleaned, 2nd tier clean & Aligned the printer with no affect. 
    I had removed the old cartridge when this happened and it was actually half full, so I also bought a new cartridge and it still prints the same. 
    Any ideas out there?
    Thanks
    Finto

    If the printer is out of warranty one thing that might be worth a shot is soaking the printhead...
    1) Get a pan and put 1/2" of very hot (not boiling) water in the bottom.
    2) Next remove all the ink cartridges, then remove the printhead assembly.
    3) Gently put the printhead nozzles down in the water and let it soak for five minutes.
    4) Remove the printhead and gently dry the electrical contacts.
    5) Put the printhead back in the printer and then reinstall the ink cartridges.
    http://h30434.www3.hp.com/t5/Ink-Toner-Cartridge-Printhead-Issues/HP-6500-Office-jet-E709a-Black-pri...
    Can you please let me know how you get on?
    Thanks, Ciara
    Although I am an HP employee, I am speaking for myself and not for HP.
    Twitter: @Ciara_B_HP

  • Score loses formating when printing to pdf in Logic Pro

    Logic Pro 9.1.6 shows score ok in page view but when it prints to pdf the formatting goes weird with notes dropping off the stave. How do I fix this so I can print a score?

    Michael: I have tested other programs ability to print to Acrobat and also tested ability for other programs to
    export to Excel or Word. The only crash is when printing an Acrobat pdf from Morningstar Principia Pro I get a bad crash. The work around is to print to XPS and then convert the XPS file to Acrobat pdf. To get out of the crash which can't be fixed by Windows Task Manager shut down, is to open the printer file and tell the printer to delete the pending print job.
    I'm using latest Version 9.3.4 Standard Acrobat; Win 7 Pro 64 bit, 10 g of RAM, HPE 390t standalone PC, no networking.

  • How do you change the page format to print a larger area?

    Hi there, another new to mac and new to numbers guy.
    I'm trying to find the windows equivalent to change page format.
    I want to reduce the blank border surrounding my table and print a larger area. How do you reduce the blank border that prevents you from printing up to the paper edge?
    cheers

    Page margns in Numbers are set in the Layout Inspector.
    Open the Inspector and click the Layout button.
    Edit the four margin settings as you wish. Reduce the (page) header and footer settings to zero if you don't want to include running headers or footers on your pages.
    Note that margins will be limited by the capabilities/settings of your printer. Printing to the edges of the paper usually requires a choice to be made in the Print dialogue as well as for the document itself.
    Regards,
    Barry

  • How to apply a format to all hyperlink in CS4 file

    Hello, this is my first post,
    We are writing a magazine that we will publish as a PDF. We would like all hyperlink to stand out (we created a character style with these attributes: Candara Bold, Dark Red). The magazine will have a lot of hyperlinks in the form of numbers ("go to section 145") so manually formatting them is our last resort.
    We could not find an option in CS4 to do so. Any idea? Maybe GREP rules? Something else?
    Thank you.

    If you were a bit more specific in your request, I think we could come up with better advice for you. John's seemingly less-than-helpful suggestion is, I think, actually the best solution if you are keying your text directly into ID. But we don't know how your magazine is being written (Word content placed correctly with File -> Place? copied and pasted from web browser? Google Docs? database?), so it's hard to make appropriate suggestions. If you're keying it in manually every time, do you have enough control over the people doing the keying so they type the same "go to section ###" everytime? Is there any chance that they'll say "please see section ###" instead? If so, and if it's easier to trust 'em to type it the same way everytime than it is to trust 'em to apply a character style, then maybe a GREP style is the way to go.
    If they are already set up as links in ID, then you can shift-select them all in the Hyperlinks panel and choose "Hyperlink Options" and associate 'em all with a character style in one go. This is completely obvious to me but once again we don't really know what it's like on your side.

  • Hw can I generate XY graphs directly in a vector data format for printing ie pdf

    A further question re. Printing of Graphs
    There are many similar questions but none where the answers are acceptably adiquite or two or three were the link was broken,
    "Developer exchange forums have been moved" and a pointer to the new
    site, unfort it was hard to find or guess the rest of the link.
    So here is my angle on this problem;
    So far I have tried;
    Using property node: "App.  Printing.Default Printer" to select the printer to use, then
    Using Report Functions to print controls;
    New Report, to generate a new report reference
    Set Report Orientation
    Set Report Margins
    Set Report Font
    Set Report Header Text
    Set Report Font
    Set Report Footer Text
    loop for each page
    Set Report Footer Text,     With page number
    Append Control Image to Report,      several times
    New Report Page
    Until the end of the last page
    Print Report
    Dispose Report
    Initially using existing XY-Graph controls from the front panel.  These
    are on a page of a Tab control to hide these controls while not in use
    and allow them to be hidden while generating the printout. 
    Unfortunately when this page is hidden any graph scales set to
    autoscale don't, (normally don't need to and would otherwise be a waste
    of processor time), resulting in graph plots going off scale or
    becoming a line along the axis.
    An issue is that what is printed appears to be read from the screen, so resolution is much
    lower than required for for printing, resulting in rather pixellated
    printed versions. These prints will usually be emailed, so tried the
    pdf995 "printer driver" but the resulting pdf file size is rather large.
     Currently trying Plot-XY on a much larger picture so as to get
    adequate resolution for printing, however suspect this will result in
    much larger pdf files and probably cause other problems. 
    The preferred solution in this case will probably be to generate print
    output, instead of based on raster images (ie jpg or png), but on a
    vector format, maybe via postscript or directly in pdf format.
    Similar graphs currently printed from Excel via pdf995
    (or OpenOffice) result in files around 20 kb per page. these can be printed at any size
    (at least upto 64 times) without becoming pixellated, so assume these
    are vector based.
    Currently a page with 4 XY Graph controls uses around 40 to 45 kb per
    page but resolution is poor and overcoming that may push file size up
    to 150 to 200 kb per page, and the whole job can be 50 to 100 pages.
    Are there any functions to generate XY graphs directly in a vector data format preferably in pdf or via PostScript format.
    Cheers
    Darryl

    Hi Darryl,
    I was able to reproduce the issue you were seeing, in which a report generation was taking up a large amount of space per page in a PDF utility. I found; however, using my attached VI (notice that it is set to *.png) and the CutePDF utility (free download at http://www.cutepdf.com/) I was able to get a per page size of about 10 KB. Also using the png I found that the image quality seemed to be quite high.
    Please try incorporating this solution into your application and see if it reduces your file sizes.
    Thanks and have a good evening!
    Cheers,
    Jonah
    Applications Engineer
    National Instruments
    Jonah Paul
    Marketing Manager, Embedded Software
    Evaluate the LabVIEW RIO Platform! - ni.com/rioeval
    Attachments:
    print_XY Graph.vi ‏23 KB

  • PNG colour profiles - and this format for print

    I know it's taboo to talk about PNG for printing.
    But I can't find and I've searched the forums - there was a post made about embedding colour profiles a while ago.
    I know PNG is a RGB only format, but I'm 36.8% sure I read something about embedding either RGB or ... wait for it CMYK profiles into PNG files.
    If anyone can shed any light on this - and how about PNG for print - I've been against it for a long time - but it is a lossless format, it can carry 64 bit data.
    I know I know - but I thought I'd ask anyway - see what people think.

    You can't save a PNG with a profile out of Photoshop, but it looks like you can embed one via the image events scripts that ship with OSX (/Library/Scripts/ColorSync/embed). Unfortunately ID ignores the embedded profile and uses the document's assigned profile instead. PNGs do respond to ID's RGB profile and the RGB profile will have an effect on the CMYK separation when it happens.
    Here's ProPhoto and sRGB:
    From your ID document you can also assign a profile, which conflicts with the doc's profile, by selecting the png and choosing Image Color Settings.... So, you could assign AdobeRGB as your doc's profile and assign sRGB to all your pngs.

Maybe you are looking for

  • Any difference between distinct and aggregate function in sql query cost???

    Hi, I have executed many sql stmts patterns- such as: a) using a single table b) using two tables, using simple joins or outer joins but i have not noticed any difference in sql stmts in cost and in execution plan.... Anyway, my colleague insists on

  • Phone number not listed in Imessage Caller Id

    Okay i'm having a problem with my texts being sent as my email address using Imessage instead of my phone number.   The problem is when I go into settings, messages, received at ect....  My phone number isn't listed there.  It only has my email!  It

  • Problem on Join in ODI

    Hi, I'm working on a migration case as follows: I have 1 source table, 1 reference table and 1 target table (All are in ORACLE). While the interface execution, the source will join the reference to get the UID from the reference table (FK to the targ

  • New to HR ABAP

    Hi Guys, I am new to HR ABAP. I need assistance with cluster tables! Can anyone brief me about Clusters. Thank you, Venkat

  • Function Module to evaluate Dependency Procedure

    I am in need of a Function Module which can parse and/or evaluate the psuedo-code of a Dependency Procedure (see Function Module CUKD_GET_KNOWLEDGE). This is needed to create a report which will predict changes to Material Configurations and display