Printer - how to access defaultprinter fonts and loaded fonts in one job ( ie Arial 15 / etc )

We have a file that contains font definitions that get loaded to the printer.
These show on our PCL font list as "permanent soft fonts",
and we access them by their font id number. If we just use the fonts that we loaded,
our print step ( print layout/etc) is ok. If we try to access a font that exists
on the printer, say Arial, which has both an escape sequence and an
"internal xx" number, our print layout (grid), gets shifted to the right.
We access the Arial font by : 
   esc%12345X and then the escape sequence for Arial font
1. is there a way to refer to Arial ( or other printer default font )
    while still in PCL mode using our loaded fonts ( by font id ) ?
2. should we add Arial to our font load file ?
    if yes, how do we do that ?
 any help is appreciated, thank you 

A friendly soul on ubuntuforums pointed out to me, that the wireless configuration is only necessary when the printer is NOT connected to a (W)LAN. So all I really had to do was to configure the printer in the CUPS administation page, and it worked. Problem solved. Silly me.

Similar Messages

  • Editting PDF documents that were created by a MAC doesn't work because of font incompatability.  How can we get MAC fonts and load in our Adobe Acrobat Pro 9?

    Editting PDF documents that were created by a MAC doesn't work because of font incompatability.  How can we get MAC fonts and load in our Adobe Acrobat Pro 9?

    If it's a Mac font and you're on Windows, you can't. If you are also on a Mac, you'll need to purchase the fonts (fonts are generally non-transferable, like software. One of the reasons pdf exists), install them and try your edits.
    But it's best to edit the original document and create a new pdf when finished.

  • How to drop a schema and load another one?

    I have an interruption during installing the central instance of a SAP Netweaver 04s System. After I restarted the installation I found this message in the Log file.
    <b>ERROR 2006-08-16 16:17:04</b>
    CJS-30109 The Java load in database PDV/liesc1ddbw01 has already been configured. <p> SOLUTION: Drop the schema and load it with a new load before running this installation.
    <b>ERROR 2006-08-16 16:17:04</b>
    CJS-30109  The Java load in database PDV/liesc1ddbw01 has already been configured. <p> SOLUTION: Drop the schema and load it with a new load before running this installation.
    <b>ERROR 2006-08-16 16:17:04</b>
    FCO-00011  The step getJavaLoadType with step key |NW_Java_CI|ind|ind|ind|ind|0|0|NW_CI_Instance|ind|ind|ind|ind|10|0|getJavaLoadType was executed with status ERROR.
    QUESTION: How to drop a schema and load another one?

    Hello,
    I got the similar error....but i did reinstall from o.s. and done the installation again...it was worked successfully..
    if you find out alternate solution for that ...please let us know..
    Regards,

  • The change to a different font was not done because the chosen font and the font encodings in the do

    Hi,
    I created a PDF from a Word document that used Cambria font, and when I select it in Acrobat to try to change the font I get "The change to a different font was not done because the chosen font and the font encodings in the document differ and could not be resolved"
    How can I change the font and why is it preventing me from doing so?
    Thanks,
    Juan

    Juan,
    No, Acrobat is not a word processor.
    More to the point Acrobat lets one "work" PDF and PDF is not a file format designed as a word processing, editing, formating, or page layout file format.
    PDF is, essentially, a "final destination" format.
    What it is is described in the ISO Standard for  PDF (ISO 32000-1).
    Be well...

  • After removing system fonts and reinstalling fonts, FireFox will not start

    After removing system fonts and reinstalling fonts, FireFox will not start! When I start FireFox the "Mozilla Crash Reporter" opens as if FF just crashed??? I don't see any records in event viewer. I am using FF v3.6.3 on a Windows 7 box. I tried uninstalling 3.6.3 and installing 3.0.18 and had the same problem!
    == This happened ==
    Every time Firefox opened
    == After a uninstalled all fonts including system fonts and then reinstalling system fonts. ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.4; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; AskTB5.5)

    The files with submitted crash report ids are inside the ''submitted '' directory, from the directory you found the LastCrash.txt timestamp file.
    The file names will begin with '''bp-'''
    There might be more information from the crash report, but it might just tell us you are crashing the first time Firefox tries to use a font.
    One thing I suppose you could do is select only those fonts you've got in Tools -> Options -> Content -> Fonts and Colors -> Advanced and then uncheck the '''Allow pages to use their own fonts''' option.
    See http://support.mozilla.com/en-US/kb/Options+window+-+Content+panel#Fonts_Dialog
    To be honest, I can't find anything on this Netscape Font Navigator and it sounds highly dubious.

  • HT204053 how do i move page and numbers documents from one icloud login to another?

    how do i move page and numbers documents from one icloud login to another?
    I had to change my email address whcih meant new apple login.
    I have a number of docs in iwork/pages and iwork/numbers.  How do I transfer them to my new login?

    There's a couple of ways but my tip backing up your documents in the cloud is as good as any.

  • How to capture the date and time of  a background job

    Hi experts,
    How to capture the date and time of  a background job?
    How to find whether it is runned succesfully or not?
    If it is not successful how to put error message?
    ASAP
    Thanx in advance,
    Sudha

    To Display the STATUS of the JOB which is exectued in background
      CLEAR : wa_jobsteplist.
      REFRESH : i_jobsteplist.
      WRITE:/ 'DISPLAYING JOB STATUS'.
      CALL FUNCTION 'BP_JOB_READ'
        EXPORTING
          job_read_jobcount           = w_jobcount
          job_read_jobname            = w_jobname
          job_read_opcode             = '20'
        JOB_STEP_NUMBER             =
       IMPORTING
         job_read_jobhead            = wa_jobhead
       TABLES
         job_read_steplist           = i_jobsteplist
    CHANGING
       RET                         =
       EXCEPTIONS
         invalid_opcode              = 1
         job_doesnt_exist            = 2
         job_doesnt_have_steps       = 3
         OTHERS                      = 4
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    To Display the status text as per the status type
      CASE wa_jobhead-status.
        WHEN 'S'. WRITE: / 'Scheduled'.
        WHEN 'R'. WRITE: / 'Released'.
        WHEN 'F'. WRITE: / 'Completed'.
        WHEN 'A'. WRITE: / 'Cancelled'.
        WHEN OTHERS.
      ENDCASE.

  • How to use open cursor and iner join in one statement

    Hello All,
    Could any one post the code for the below question?
    How to use open cursor and iner join in one statement
    Regards,
    Lisa

    OPEN CURSOR c FOR SELECT     carrid connid fldate bookid smoker
                        FROM     sbook innerjoin shook
                        ORDER BY carrid connid fldate smoker bookid.
    Pls reward if helpful.

  • HT4993 I loaded the wrong Apple ID, is there any way to delete it, and load a new one?

    When setting up my Iphone 4s, I loaded my sons Apple ID by mistake. Is ther any way to delete it, and load a different one?

    Settings>iCloud...scroll down...delete account. Then, turn off iMessage & FaceTime. Next: Settings>General>Reset>Erase All Content & Settings. Start over.

  • HeNew Ipone, my icloud id doesn´t work. How can I delete it and make a new one? The email address wrong so I can´t varifie it.

    Hey,
    Got a new Iphone, my icloud doesn´t work. How can I delete it and make a new one? The email address is wrong so I can´t varify it.
    Can´t download apps, because it´s wrong. What can I do? Please help!

    Welcome to the Apple Community.
    You can delete your account at settings > iCloud, scroll down and tap delete account. You can then enter details of any new account you create.
    Note. The purchase of apps are done through an iTunes store account not your iCloud account. If you are having issues downloading apps, it isn't related to your iCloud account.

  • Can I sync PC fonts and Mac fonts using Creative Cloud?

    Can I sync PC fonts and Mac fonts using Creative Cloud?

    Well, you should have a dedicated sync MIDI cable. Assign Logic to transmit MTC. Tell Cubase to chase it.
    Song settings>Synchronization>MIDI
    that is where you can tell Logic to transmit MTC. When routing back to Logic you shuld not expect significant latency and there are ways to offset it. The easiest would probably tell Cubase to run a little ahead of the clock. (Offset)
    So there is the Logic settings panel Cubase has one similar, for chasing. If you use a dedicated audio interface and transfer audio digitally from PC to Mac then you would want to have then synced via word clock. I would put Logic as the master here again.
    You're Welcome,
    J

  • How can I access Type kit  and Web fonts?

    Are these fonts already loaded or do I have to download them from the adobe website?

    Hi Kersha,
    Thanks for your interest in Typekit!  You will need to sign in to the Typekit website, typekit.com, with your Adobe ID to select the fonts you'd like to use. These tutorials show you how to get started:
    * Syncing a font to your desktop:
      http://help.typekit.com/customer/portal/articles/1145956
    * Adding a font to your website:
      http://help.typekit.com/customer/portal/articles/6780
    I hope that this helps; let me know if you have any other questions here or at [email protected] Best,
    -- liz

  • I have a power mac and the hard drive is about to die, i have a new hard drive to install, i know how to remove and put the old in the second space and load the new one, then what...when do reinstall the OS and transfer data from old drive

    I have a power mac, the hard drive is struggling, I have a new hard drive ready to install, after I pull the old one and put the new one it's place and place the old one in the next slot ready to transfer data....how do I start this next step.  Do I down load OS, and go to utililities...please just a step by step after hard drives in position.

    Hi Susan, you must have a Mac Pro, Powermacs cannot run 10.6.x
    Anyway, once you Install the new drive, you likely must Format it...
    How to format your disks...
    http://www.kenstone.net/fcp_homepage/partitioning_tiger.html
    (To Install OSX on an IntelMac the Drive it needs the GUID Partitioning scheme mentioned at the bottom.)
    Thanks to Pondini, Formatting,  Partitioning, Verifying,  and  Repairing  Disks...
    http://web.me.com/pondini/AppleTips/DU.html
    Then Install the OS & on first boot of the new install, after a step or two, avail yourself of Migration Assistant & Migrate everything.

  • I have bought iPhone 4 from my sister. How do I reset it and load my contents etc?, i have bought iPhone 4 from my sister. How do I reset it and load my contents etc?

    I have bought an iPhone 4 from my sister. How do I reset it (delete her contacts) and load my contents etc?

    Settings > General > Reset > Erase all content and settings
    Then set the device up from scratch using your data - either sync with your computer via iTunes or iCloud.

  • How to access sort direction and filter value of columns?  Can I catch the 'filtered' or 'sorted' event?

    We have some columns being added to a table.  We have set the sortProperty and the filterProperty on each of our columns.
    This allows us to both filter and sort.
    We want to be able to access the columns filter value and sort value after the fact.  Can we access the table and then the columns and then a columns properties to find these two items?  How can I access the sort direction and filter value of columns?
    We would also like to store the filter value and the sort direction, and re-apply them to the grid if they have been set in the past.  How can we dynamically set the filter value and sort direction of a column?
    Can I catch or view the 'filtered' or 'sorted' event?  We would like to look at the event that occurs when someone sorts or filters a column.  Where can I see this event or where can i tie into it, without overwriting the base function?

    Hey everyone,
    Just wanted to share how I implemented this:
    Attach a sort event handler to table - statusReportTable.attachSort(SortEventHandler);
    In this event handler, grab the sort order and sorted column name then set cookies with this info
    function SortEventHandler(eventData)
        var sortOrder = eventData.mParameters.sortOrder;
        var columnName = eventData.mParameters.column.mProperties.sortProperty;
        SetCookie(sortDirectionCookieName, sortOrder, tenYears);
        SetCookie(sortedColumnCookieName, columnName, tenYears);
    Added sortProperty and filterProperty to each column definition:
    sortProperty: "ColName", filterProperty: "ColName",
    When i fill the grid with data, i check my cookies to see if a value exists, and if so we apply this sort:
    function FindAndSortColumnByName(columnName, sortDirection (true or false))
        var columns = sap.ui.getCore().byId('statusReportTable').getColumns();
        var columnCount = columns.length;
        for(var i = 0; i < columnCount; i ++)
            if(columns[i].mProperties.sortProperty == columnName)
                columns[i].sort(sortDirection);

Maybe you are looking for

  • Help Factory Resetting!!

    Hello, Recently i have tried to factory reset my Compaq Pressario PC SR5710Y. Every time it gets to 48% a message appears saying "error 1005. If the error persist contact HP Support" and im wondering what can i do about this problem.

  • Consignment po creation

    Hi all, When I am creating a consignment PO I am getting Following error Purchase order still contains faulty items     Item 10 Material 98 not maintained by accounting department Define a fiscal year variant first for company code 25 Can anyone plz

  • How to use max of function in mapping?

    hi all: SQL: select max(var1) from tab1, insert tab2(var1,...) values(var1,...), move a rowset of max var1 from tab1 to tab2, how to do in mapping?

  • Footnotes and XML: import and export.

    I've been playing around with ID CS4 for a week or two now, and can't seem to figure out a way to get footnotes into, or out of, an InDesign document using the XML import / export feature in the Structure pane. It seems you can't tag footnote text, w

  • How to using the executable software in Java

    I got a software named: pdf to text convertor; which can format the text interface from the pdf, for example, you need add the page number with a4 paper, then the convertor can change the pdf into text with page numbers. it is running on the doc, the