Multiple pages in scripts.

Hi ,
Could you please tell me how is multiple pages trigerred in scripts.
Say the second page.
Is this done through the print program?
Are there any specific control commands to do so?
<<text removed by moderator>>
Thanks in advance,
Suchi.
Edited by: Matt on Nov 13, 2008 2:04 PM - do not use ASAP or urgent.

Hello all,
Thanx a lot for ur replies.
In the debugger mode ,I am able to see the page changing from first to next page,
but then while executing the print program I see only a single page.
I have used the following code:
*& Report  Z_75354_SCRIPT_SESSION
REPORT  z_75354_script_session.
TABLES : z75354_emp.
TYPES :BEGIN OF ty_empdetail,
        zempno TYPE z75354_emp-zempno,
        zmailid TYPE z75354_emp-zmailid,
        zpu TYPE z75354_emp-zpu,
        zmark1 TYPE z75354_emp-zmark1,
  zmark2 TYPE z75354_emp-zmark2,
  zmark3 TYPE z75354_emp-zmark3,
  zmark4 TYPE z75354_emp-zmark4,
  zmark5 TYPE z75354_emp-zmark5,
  zmark6 TYPE z75354_emp-zmark6,
  zmark7 TYPE z75354_emp-zmark7,
  zmark8 TYPE z75354_emp-zmark8,
  zmark9 TYPE z75354_emp-zmark9,
  zmark10 TYPE z75354_emp-zmark10,
  zgrade1 TYPE z75354_emp-zgrade1,
  zgrade2 TYPE z75354_emp-zgrade2,
  zgrade3 TYPE z75354_emp-zgrade3,
  zgrade4 TYPE z75354_emp-zgrade4,
  zgrade5 TYPE z75354_emp-zgrade5,
  zgrade6 TYPE z75354_emp-zgrade6,
  zgrade7 TYPE z75354_emp-zgrade7,
  zgrade8 TYPE z75354_emp-zgrade8,
  zgrade9 TYPE z75354_emp-zgrade9,
  zgrade10 TYPE z75354_emp-zgrade10,
  v_total TYPE i,
END OF ty_empdetail.
DATA : i_empdetail TYPE STANDARD TABLE OF ty_empdetail WITH HEADER LINE,
      wa_empdetail TYPE ty_empdetail,
      wa_empdetail_temp  TYPE ty_empdetail,
      l_sum1 TYPE i.
     v_total TYPE char250.
SELECT-OPTIONS : i_empno FOR z75354_emp-zempno .
START-OF-SELECTION.
  SELECT zempno
        zmailid
        zpu
        zmark1
        zmark2
        zmark3
        zmark4
        zmark5
        zmark6
        zmark7
        zmark8
        zmark9
        zmark10
        zgrade1
        zgrade2
        zgrade3
        zgrade4
        zgrade4
        zgrade5
        zgrade6
        zgrade7
        zgrade8
        zgrade9
        zgrade10
        FROM z75354_emp INTO CORRESPONDING FIELDS OF TABLE i_empdetail
  WHERE zempno IN i_empno.
  SORT i_empdetail BY zempno zmark10.
  LOOP AT i_empdetail INTO wa_empdetail.
    wa_empdetail_temp = wa_empdetail.
    l_sum1 = wa_empdetail_temp-zmark1
    + wa_empdetail_temp-zmark2 + wa_empdetail_temp-zmark3 +
wa_empdetail_temp-zmark4  + wa_empdetail_temp-zmark5 +
wa_empdetail_temp-zmark6 +
wa_empdetail_temp-zmark7
    + wa_empdetail_temp-zmark8 + wa_empdetail_temp-zmark9 +
wa_empdetail_temp-zmark10.
    AT END OF zempno.
      MOVE l_sum1 TO wa_empdetail_temp-v_total.
      MODIFY i_empdetail FROM wa_empdetail_temp TRANSPORTING
       v_total.
      CLEAR :
     l_sum1,
           wa_empdetail_temp,
           wa_empdetail.
    ENDAT.
    ENDLOOP.
END-OF-SELECTION.
  CALL FUNCTION 'OPEN_FORM'
   EXPORTING
  APPLICATION                       = 'TX'
  ARCHIVE_INDEX                     =
  ARCHIVE_PARAMS                    =
  DEVICE                            = 'PRINTER'
  DIALOG                            = 'X'
     form                              = 'Z_TEST_75354'
     language                          = sy-langu
  OPTIONS                           =
  MAIL_SENDER                       =
  MAIL_RECIPIENT                    =
  MAIL_APPL_OBJECT                  =
  RAW_DATA_INTERFACE                = '*'
  SPONUMIV                          =
IMPORTING
  LANGUAGE                          =
  NEW_ARCHIVE_PARAMS                =
  RESULT                            =
EXCEPTIONS
  CANCELED                          = 1
  DEVICE                            = 2
  FORM                              = 3
  OPTIONS                           = 4
  UNCLOSED                          = 5
  MAIL_OPTIONS                      = 6
  ARCHIVE_ERROR                     = 7
  INVALID_FAX_NUMBER                = 8
  MORE_PARAMS_NEEDED_IN_BATCH       = 9
  SPOOL_ERROR                       = 10
  CODEPAGE                          = 11
  OTHERS                            = 12
  IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
  LOOP AT i_empdetail.  "
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
      element                        = 'MAIN'
    FUNCTION                       = 'SET'
    TYPE                           = 'BODY'
      window                         = 'MAIN'
  IMPORTING
    PENDING_LINES                  =
  EXCEPTIONS
    ELEMENT                        = 1
    FUNCTION                       = 2
    TYPE                           = 3
    UNOPENED                       = 4
    UNSTARTED                      = 5
    WINDOW                         = 6
    BAD_PAGEFORMAT_FOR_PRINT       = 7
    SPOOL_ERROR                    = 8
    CODEPAGE                       = 9
    OTHERS                         = 10
    IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
CALL FUNCTION 'CONTROL_FORM'
EXPORTING
COMMAND = 'NEW-PAGE'
EXCEPTIONS
UNOPENED = 1
UNSTARTED = 2
OTHERS = 3
IF SY-SUBRC NE 0.
*MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
  ENDLOOP.
  CALL FUNCTION 'CLOSE_FORM'
  IMPORTING
    RESULT                         =
    RDI_RESULT                     =
  TABLES
    OTFDATA                        =
  EXCEPTIONS
    UNOPENED                       = 1
    BAD_PAGEFORMAT_FOR_PRINT       = 2
    SEND_ERROR                     = 3
    SPOOL_ERROR                    = 4
    CODEPAGE                       = 5
    OTHERS                         = 6
  IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
Please help.

Similar Messages

  • Issue in displaying box in multiple pages of scripts

    Hi all,
    In my requirement i am getting the output in multiple pages . I am using ' BOX FRAME 30 TW' for getting the box .This box is getting only in first page but is not displaying in multiple pages.
    how can i achieve this?
    waiting for u r replies.
    Regards,
    Bhanu.R

    Hi Phani,
    The box you defined must be on the same page where you defined your first page.
    Always take a variable window to make it apper on multiple windows.
    First write perform for your box then call your main page.
    Much Regards,
    Amuktha.

  • Place multiple page PDF script no longer runs correctly

    I have place multiple PDFs into ID java script. Recently, when running the script, I'm no longer prompted to use current doc or new doc. I also don't get a prompt to place PDF starting on page x. It just opens a new 8.5 x 11 doc and places the PDF pages.
    I haven't deleted my prefs yet (haven't made a note of what they are). Nor have I deleted the script. Thought I'd check here first before nuking prefs or script. I get a lot of PP presentations as PDFs for printing so I need the ability to place into an 11 x 8.5 file.
    AFAIK, I haven't added anything new to my workstation which is running CS3 on Dual G5 with OS10.4.11. I have a tendency to troubleshoot after a 12 hour day and I've found out after the fact I did a lot of unneeded busy work by not thinking on it out more or asking around beforehand.
    Thanks in advance for any help.

    Does any other script show any dialog at all?
    If not, some rogue (or interrupted) script switched off User Interaction. You can enable it again with this one line javascript:
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.INTERACT_WITH_ALL;

  • To print multiple page in script

    hii frnds
    my requirement is
    i have to display 1 line item of my table in 1 page and then the second line item in the  second  pages and as on IN A clasical report .
    can any body tel me how to do it . actualy the first line item will be displayed by default and the subsequent pages will be displayed based on a customized button .
    Thanx
    rohit

    Hi Rohit,
    For example, you can create a test script to achieve your requirement.
    Create a Page 'PAGE1', a default paragraph 'AS'. And place the below code in the text element of the Main window. Put 'PAGE1' as the Next Page for Page 'PAGE1' in the Standard Attributes section.
    AS   write 'HI'.  
    /:   NEW-PAGE.    
    AS   write 'Hello'.
    /:   NEW-PAGE.    
    AS   write 'BYE'. 
    Test the script using Menu path Utilities->Test Print.
    Now, you can see first page diplaying text HI, second page displaying text Hello and third page displaying BYE.
    Hope this helps.
    Thanks,
    Srinivas

  • Regarding Multiple pages in SAP Script Output

    Hi All,
    I have a requirement in SAP Script where i need to print data in multiple pages. I had created 1 page - FIRST with properties <b>Next Page</b> as FIRST , <b>Mode</b> as INC.
    In the output i have multiple line items, the data will carry upto 3 pages.
    Now In the output First page data is printing correctly.
    In the second page all the windows are carried forward to print all the data correctly except in MAIN WINDOW.
    In Second page in MAIN Window i have ITEM HEADER which i want to print on every page as it is printing in First page of output, but i am not been able print ITEM HEADER though i am able to print all the ITEM DETAILS correctly on every page.
    Can anybody tell how can i print ITEM HEADER on every page which is in MAIN Window.
    Thanks in advance.
    Thanks & Regards,
    Rayeezuddin.

    Hi Shaik,
             If you are only printing Item Details in the Main Window, why don't you create a saperate window just above your main window for Item Headers.
    Hope this should solve your problem or Please elobarate your query.
    Thanks,
    Vinod.

  • How to use Two main windows with in a page in script ?

    Hi any body explain me...
    How to use Two main windows with in a page in script ?
    with  header data in one main window,
    & Item data in other main window.

    HI..,
    u need to go for <b>SPLITTING THE MAIN WINDOW</b> !!!
    Main windows in page windows allow you to format text in multiple columns. Define an area in the page window, in which to position the main windows.
    Here is the procedure !!
    -->Create a page window and assign it to a page.
    Choose <b>Edit --> Main windows</b>.
    A dialog box appears.
    -->Enter values in the fields <b>Area width</b> and A<b>rea height</b> in accordance with the input guidelines for main windows.
    -->Enter values in the fields <b>Spacing</b> and Number in the <b>Horizontal group</b> if you want to use multiple columns. You can ignore the fields in the Vertical group.
    Determine how many columns and line areas are required for label printing. Then enter the corresponding values in the fields in the <b>Horizontal and Vertical groups</b>.
    -->The value in the field Left margin varies from main window to main window if multiple columns are used. The following applies:
    <b>
    Left margin of current column + Window width + Horizontal spacing = Left margin of next column</b>
    In label printing, the field Upper margin also varies from main window to main window:
    <b>
      Upper margin of current main window +  Window height + Vertical spacing = Upper margin of next main window</b>
    -->Enter a value in the field Start position.
    This is a counter. Enter a starting value which is equal to or greater than 1.
    -->The main windows are added to the list.
    -->Save your form.
    reward if it helps u...
    sai ramesh

  • Checkbox in Tabular Form (Solution to span multiple pages)

    Hi,
    We had a case where a large report needed to have check boxes. These check boxes would populate a list of id's which we then processed for a specific task. By default APEX doesn't support this.
    After spending some time on this, I thought I'd post my solution to help any others who experience the same problems. For this example we will use P10
    1. Create a new "normal" report.
    SELECT e.*, APEX_ITEM.CHECKBOX(1,e.EMPNO,'onClick="updateList(this);"',:P10_LIST, ',') AS Cancel,
    FROM emp e
    2. Create a hidden item called P10_LIST
    3. Add an HTML region to the page whose template is "No Template" (do this so it doesn't show up. Call the region "JavaScript". Set its sequence to 1
    4. Add the following in the JavaScript region:
    <script src="http://SERVER_NAME/String.js" type="text/javascript"></script>
    <script src="http://SERVER_NAME/Ajax.js" type="text/javascript"></script>
    <script type="text/javascript">
    function updateList(pObject){
    vItem = 'P10_LIST';
    myAjax = new Ajax();
    vList = myAjax.getItemValue(vItem);
    //Determine to remove or add from list
    if (pObject.checked) {
    //Add item
    vList = vList.listAppend(pObject.value);
    else{
    //Remove from list
    vList = vList.listRemoveItem(pObject.value);
    }//if
    //Set the session value
    myAjax.setItemValue(vItem,vList);
    //Set the HTML value
    document.getElementById(vItem).value = vList;
    </script>
    This script:
    - Loads the List from the session
    - Modifies the list
    - Stores it in the session
    5. The JavaScript region references 2 files, which you'll need to add to your server. They are as follows:
    Ajax.js
    function Ajax(){
    // TODO: Enter proper names etc.
    this.appProcessNameNull = 'AJAX_null';
    this.appProcessNameReturnItem = 'AJAX_ReturnItem';
    this.tempItem = 'P0_AJAX_TEMP';
    * TODO: Document
    * Sets Item in session
    Ajax.prototype.setItemValue = function(pItem,pValue,pAppProcess){
    if (pAppProcess == null)
    pAppProcess = this.appProcessNameNull;
    var get = new htmldb_Get(null,$x('pFlowId').value,'APPLICATION_PROCESS=' + pAppProcess,0);
    get.add(pItem,pValue);
    gReturn = get.get();
    * TODO: Document
    * @param pItem Name of item to get
    * @param pTempItem Name of temp item
    * @param pAppProcess Application Process to call which will return item
    * @return session value
    Ajax.prototype.getItemValue = function(pItem,pTempItem,pAppProcess){
    if (pTempItem == null)
    pTempItem = this.tempItem;
    if (pAppProcess == null)
    pAppProcess = this.appProcessNameReturnItem;
    var get = new htmldb_Get(null,$x('pFlowId').value,'APPLICATION_PROCESS=' + pAppProcess,0);
    get.add(pTempItem,pItem);
    gReturn = get.get();
    return gReturn;
    String.js
    // From http://www.somacon.com/p355.php
    String.prototype.trim = function() {
         return this.replace(/^\s+|\s+$/g,"");
    // From http://www.somacon.com/p355.php
    String.prototype.ltrim = function() {
         return this.replace(/^\s+/,"");
    // From http://www.somacon.com/p355.php
    String.prototype.rtrim = function() {
         return this.replace(/\s+$/,"");
    * Appends value to list
    * @param pValue Value to add to list
    * @param pDelimeter Defaults to comman
    String.prototype.listAppend = function(pValue, pDelimeter){
    if (pDelimeter == null)
    pDelimeter = ',';
    vStr = this;
    if (vStr.length == 0)
    vStr = pValue;
    else
    vStr = vStr + pDelimeter + pValue;
    return vStr;
    * Removes a value from list
    * @param pValue Value to remove from list
    * @param pDelimeter Defaults to comman
    String.prototype.listRemoveItem = function(pValue, pDelimeter){
    if (pDelimeter == null)
    pDelimeter = ',';
    vStr = this;
    vStr = pDelimeter + vStr + pDelimeter;
    // Remove value
    vStr = vStr.replace(pDelimeter + pValue + pDelimeter, pDelimeter);
    //Remove prefix and suffix items
    if (vStr.length > 0 & vStr.charAt(0) == pDelimeter){
    vStr = vStr.substring(1);
    if (vStr.length > 0 & vStr.charAt(vStr.length-1) == pDelimeter){
    vStr = vStr.substring(0,vStr.length - 1);
    return vStr;
    6. On Page 0 Create a hidden Item called: P0_AJAX_TEMP
    (Note: this is can be used for all your AJAX calls)
    7. Create an Application Process called: "AJAX_null". Process Text: null;
    8. Create an Application Process called: "AJAX_ReturnItem". Process Text:
    begin
    htp.prn(v(v('P0_AJAX_TEMP')));
    end;
    If you look at the Ajax.js you'll notice points 6,7, and 8 are all customizable etc... I just put it in so you can test right away.
    Now the user can select items on multiple pages (if pagination applies). Once they hit a submit button you can use P10_LIST to process your values.
    Hope this helps.
    Martin

    Hi Martin,
    I was trying to use your funda in my App. But i dont know why it is not doing anything.
    Also i'm facing a very small but severe problem with one of my report. I am using checkbox. So that user will be able to select all those records he/she wants. but the problem is that when i'm selecting few records with the help of the check boxes, selections are there. When moving to other page and coming back to that page, selections are gone. I think selections should not go like this. Otherwise the user will get confused.
    Can you tell me how can retain the check box selections??
    Thanks
    Sudipta

  • How do I run a table over multiple pages?

    Hi I write TV scripts using a simple two column table which can be many rows long - how can I get Pages to automatically run the table over multiple pages whilst still allowing me to cut and paste and rearrange the script? This is simple in Word and must work in pages but I can't work out how to get it to work. I've tried looking at the Page Break feature but it won't come up from the table?
    many thanks

    At this time, There is no way to drive tables in Pages with AppleScript.
    Do your job in Numbers which allow that.
    Yvan KOENIG (from FRANCE vendredi 6 février 2009 13:54:35)

  • How do I populate my date fields placed on Master Page for multiple pages?

    I have a dynamic form with flowing fields. I inserted date fields using the Master Pages tab within Adobe LiveCycle Designer ES2, Windows 7 OS. I have only 1 Master Page. Everything on the form is working properly, except when I have multiple pages, the date fields are blank on all but the first page. One of the date fields has javascript in the exit event to calculate the second date field. I can manually edit the subsequent page(s) date fields, but I don't want the end user to have to do that. I want the date fields on the new pages to equal the date fields on the first pages. Below is my output with notes to provide a visualization of what I'm looking for.
    Many thanks in advance for anyone who can help me with this issue!
    Caroline

    Hey Mandy,
    Yes, both date fields are on the Master Page. The first one is set to "User entered - Required" and the second to "Calculated - User Can Override"
    And that's right, I used your script to calculate the second date field. The only thing I changed was the field name, and used 6 days instead since I wanted the calendar days to only run a full week, like start on a Monday and end on Sunday.
    Thx,
    C

  • How to create a Grand Total on a Multiple Page Document

    I have created a form that is 4 pages long. I created the form in WordPerfect and then converted it to pdf. Then I opened it into Adobe Professional 8. I had it automatically converted into LiveCyle. I would like to just add the total of the four pages to a grand total on page one but whenever I use FormCalc is says it doesn't recognized page 2. Have I done something wrong or am I missing a step somewhere. In the Hierarachy area it sees the form and the four pages. For some reason it doesn't seem to recognize it as one whole form. I'm not sure what the deal is. I have now created a subtotal for each individual page and each page will total separetly. But I can not get a grand total.
    I just purchased Adobe LiveCycle Designer book by J.P. Terry. It doesn't say anything about this. AHHHH! I need some help.

    Hi Carolin,
    You can check Purchase Order. It is a sample that Adobe delivers with LiveCycle Designer. It has a script that takes care about a calculation trough a multiple pages form.
    You should find the sample under :\Program Files\Adobe\......\Designer ES\8.2\EN\Samples\Forms\Purchase Order\Dynamic Interactive\Forms

  • Dynamic table header/footer on multiple pages stay original

    hi experts,
    i've got a form with a dynamic table. this means that i have a footerrow with mapped information if it should be visible or not. so the table can have from 1 to 40 columns.
    i did some scripting in the table's initialize section:
    loop over count of colums and set the headerrow, row1 and footerrow elements for index x to hidden.
    everything works out fine BUT if the data spans over multiple pages the headerrow on pages 2 to last is original again. means that the hiding of cells is not effective any more. same with footerrow (but here its fine at last page and original at  page 1 to last -1).
    i tried to hide cells again in layout:ready section for the other instances of the headerrow.
    cells got hidden, but the still visible cells didnt relocate to the left (if i hide it, there should be no space between staying cells).
    can anyone please give me a hint what i am missing here?
    does anyone have a simple sample for this task? its all about the header/footer for multiple pages!
    thanks a lot!
    daapoo

    When the footer goes to the 2nd page the page subform is incremented so you will have to reference the page subform as well. I suggest that you add a button (this is for a test only) to the footer subform and add the code app.alert(this.somExpression). Now render the form and make sure the footer stays on one page. Hit the button and take note of the someExpression. Now add enough rows to force the footer to a new page. Hit th ebutton again and take note of the changed somExpression. So to solve your problem you will have to find out which page your footer is on. and then construct your expression to incorporate this chane in expression. Note that the indexes are 0 based but the page numbering is 1 based.
    Hope that helps
    Paul

  • Multiple page formats in smartforms

    we say that multiple page format is possible in smartforms but not in SAP Script. What does this multiple page format exactly means and whar does label means exactly in smartforms.
    Please help.

    multiple page formats in smart forms means...
    the first can be landscape, and the second one portrait...viveversa is also possible
    label means... for example u want to print addresses of employees in an organisation... then through scripts ypu can print the labels...

  • What is multiple page format?

    hI
    can anybbody tell me what does actually means of script doesn't support multiple page foramt & smart form will  support Multiple page formats.
    Plz tell me in details.
    thanks.

    Hi,
    Scripts also supports multiple page format. You can go to edit and create new page and in layout there is a button for page properties(other attributes). Click it and give next page = page2.
    So this led you to have multi page format script.
    Example: For 1st page you require 6 variable window and 1 main window. From 2nd page onwards you require only 2 variable windows and bigger main window. So for page 2 select only two variable windows and increase the size of main window. And in command line give command
    /: position window.
    Hope this will help you.

  • Multiple page format's

    Hi ,
    Multiple page formats is possible in script's
    Regards
    Suresh.D

    Hi,
    Yes..It is possible to display multiple page format..
    Create a new form which has a different format...
    Then in the print program..follow the steps
    OPEN_FORM.
    START_FORM with the FIRST PAGE FORMat form
    end_form.
    START_FORM with the SECOND PAGE FORMat form
    end_form.
    CLOSE_FORM
    Thanks
    Naren

  • Multiple page document in Illustrator CS6

    Hi,
    I am working with multiple page document in Illustrator CS6.
    I have saved my document in .pdf.
    Before I managed to open the whole file, but now it asks me which page I want to open.
    Can I some way open again the file as a multi page file and work with all the files at the same time?
    jenni

    Did you save the file as a PDF while still working on it and then lose the original .ai file?
    If you only have a .pdf and closed the file, I hate to tell you, but you're going to have to open every page indpenedently then recompile a single ai document if that's what you need. At least that's all you can do with Illustrator as it's installed by default.
    You can try Carlos Canto's script in this thread: http://forums.adobe.com/message/4124513#4124513 it's designed to take a multipage PDF and create illustrator artboards from the PDF pages.

Maybe you are looking for

  • [JS CS3 Server Win] Path to IP address

    Hello, If I map a drive letter (H) to an IP address on the server running InDesign server the following works... var myOutputFolder = "H:/Output/" How do I refer to this same destination using its IP address? H: is a mapped to \\10.19.251.214\Server

  • Have mutli ver of LV -7.1 to LV10sp1 on XP PC. DAQmx - nilvaiu.dll missing when try to open CODE from WIN7 32 bit LV10?

    Have mutli ver of LV -7.1 to LV10sp1 on XP PC.  DAQmx - nilvaiu.dll missing when try to open CODE from WIN7 32 bit LV10? What Driver do I need?  VERSION Please -- DAQmx works fine in LV8.6. Solved! Go to Solution.

  • Advice needed on Rendering XSL:FO

    Hi, I'd like some advice on rendering xsl:fo files. I'm in the early stages of developing a component that can render xsl:fo content. xsl:fo is an xml format for laying out content on paper, a bit like TeX. Normally xsl:fo content is generated using

  • Illustrator CS4 hex color shifts again

    In  cs4 Illustrator on mac Color settings:North Amer/Internet Document Color Mode: RGB Proof Setup: Monitor RGB Proof Colors: Checked When I make a web safe colour in my color picker (example #0088CE) the number is fine when measured with the Digital

  • Change FC Group IP Address

    I have a 3 node failover cluster that I think needs an IP address change because the current cluster IP address is on my Node Management network. Here is my network config: FC Internal Communication 10.24.24.0/24, Cluster Use: Internal FC Live Migrat