Links to internal functions

The following tutorial works fine for static html that is hard coded into the tag
http://www.xllusion.net/ed/2010/04/26/flex-4-richeditabletexttlf-link-example/comment-page -1/#comment-2057
but I need my text to be bindable and dynamic loading sometime later...I cannot seem to get the event things work if I embed like in the aforementioned tutorial so im sure my code for the adding events is good.
Im using the following
<s:RichEditableText paddingLeft="10"
                                        paddingBottom="5"
                                        paddingRight="10"
                                        id="articleField"
                                        maxHeight="300"
                                        textFlow="{TextConverter.importToFlow( articleText, TextConverter.TEXT_FIELD_HTML_FORMAT )}"
                                        editable="false" />
many thanks

Images that are referenced by url may not be loaded when the textFlow is initially generated. The TextFlow will send an event when the load is complete --- see the StatusChangeEvent. I would try this, after you've got a textFlow object:
newFlow.addEventListener(StatusChangeEvent.INLINE_GRAPHIC_STATUS_CHANGE,recomposeOnLoadCom plete,false,0,true);
private function recomposeOnLoadComplete(e:StatusChangeEvent):void
     if (e.status == InlineGraphicElementStatus.ERROR)
          trace("IOERROR loading inlinegraphicelement",e.errorEvent.toString());
     if (e.element.getTextFlow() == activeFlow && e.status == InlineGraphicElementStatus.SIZE_PENDING)
          activeFlow.flowComposer.updateAllControllers();
The TextFlow will send a SIZE_PENDING when the graphic is loaded, and this code will force an update when that happens. For better performance, make a counter of all the inline graphic elements that are pending, and do the update once after they've all completed, and remove the event listener. But this code should work fine for you, and if you leave the event listener in place will handle any susequent graphic loads on that text flow as well.
- robin

Similar Messages

  • Equium A100 - s video link has not functioned

    Dear Forum Members
    I have an Equium A100 running Vista (home edition).
    In the past I have happily had my PC linked to a TV using an S video lead to view TV programmes, dvds etc.
    However recently my computer had to be reset to the original factory settings and since that time the s video link has not functioned - the PC wallpaper shows on the TV but nothing else.
    I have loaded what I hope are the appropriate latest drivers (perhaps source of problem) and the display settings appear to be correct.
    Any help with this problem would be greatly appreciated.
    Ron

    >... the PC wallpaper shows on the TV but nothing else.
    This happen when option Extend the desktop onto this monitor is enabled.
    Please enter display settings/properties and be sure this option is disabled.

  • Linking two internal orders in the report S_ALR_87013019

    Hi friends,
    Can I link an internal order "A"  to another internal order "B" in the report "S_ALR_87013019".
    it means when I choose the order "A" in "S_ALR_87013019", the report shows the result of the two internal orders (A and B).
    your prompt response will be very apreciated.

    Hi,
    As per my knowledge with out giving the input fields you can't get report.
    You have to A and B both as a input fields, if you want to take the report.
    Regards
    Srinu

  • To include a new link in the function area?

    Hi all,
    I need to include a new link in the function area of the masthead.  Could any of you please explain me how to do this?
    Also after clicking on this new link on the fucntion area of the masthead, the iview needs to be displayed in the innerpage or the content area of the portal...
    thank you
    regards
    Luke

    Hi Luke
    Hi
    You can modify the par file <b>com.sap.portal.navigation.masthead</b> to achieve this.
    Copy the
    com.sap.portal.navigation.masthead.par.bak file from
    <local_drive>usrsap<instance>JC00j2eecluster server0appssap.comirjservlet_jspirj
    ootWEB-INF deploymentpcd to a temporary folder.
    Rename the par file to some other namespace and import the new par file into your NWDS.
    you have 3 main files in the masthead namely HeaderiView.jsp, LogInRedirect.jsp, LogOffConfirmMsg.jsp.
    change the corresponding jsp file to make the changes as per your requirements.Upload and deploy the par file to the Enterprise Portal.
    Also go through these links.
    Customizing masthead in theme editor
    Removing Masthead Function Area
    Adding a background picture to masthead
    hope this helps.
    Regards
    Yoga

  • Table Link between the Functional Location and work order

    Hi Gurus,
    I am stuck in a big problem and have to find a way to list down the work order with a specific user status in the system. I am trying to link it based on the functional location as the inputs will have to be functional location and the date. Can any one guide me with the tables to link these two???
    Thanks in advance
    Anoop

    Hi,
    Depending on your exact requirement, you might be able to select from view VIAUFKST_IFLOS. This would allow selection based on order, functional location and various dates. The field IPHAS will give you some system status information - value will indicate which status the order has reached. Example value = 3 indicates order is technically completed.
    To get the exact system status (or user status) you need to read the JEST table. Read this table by OBJNR. The object number will have the format OR005000123456 (where 5000123456 is the order number). It will be available in the order tables.
    Status values in JEST are in the internal format - example I0002 = REL. Check transaction BS23 to see the link. User status values will have the format E0002. If INACT flag is set in a jest record then that status value is not active. If you want to check for a specific status value then call function STATUS_READ.
    -Paul

  • Please send me some good links on System Function Calls

    Hi,
    I want to know more about System Function calls. Please send me some good links on the same.
    Eg : CALL 'C_DIR_READ_NEXT'
          ID 'TYPE'   FIELD file-type
          ID 'NAME'   FIELD file-name
          ID 'LEN'    FIELD file-len
          ID 'OWNER'  FIELD file-owner
          ID 'MTIME'  FIELD file-mtime
          ID 'MODE'   FIELD file-mode
          ID 'ERRNO'  FIELD file-errno
          ID 'ERRMSG' FIELD file-errmsg.
    Rgds,
    Raghavendra.

    Hi,
    <u><b>CALL - Call a System Function:</b></u>
    <b>Note</b>
    This statement is for internal use only.
    It cannot be used in application programs.
    As of Release 6.20, you should use Kernel Methods instead of system functions.
    <b>Syntax</b>
    CALL cfunc.
    Addition:
    ... ID id1 FIELD f1 ... ID idn FIELD fn
    <b>Effect</b>
    Calls the system function cfunc. The relevant function must exist in the file sapactab.h. If you change or recreate a function, you have to compile and link the SAP kernel again. For this, you need the C source code files.
    Normally, external programs should be called by RFC with CALL FUNCTION ... DESTINATION.
    <b>Addition</b>
    ... ID id1 FIELD f1 ... ID idn FIELD fn
    <b>Effect</b>
    Passes fields to the called program by reference. With "ID id1", you specify the name of a formal parameter, and with "FIELD f1" the relevant field from the ABAP/4 program. If a formal parameter expects an internal table, the latter is passed in the form "FIELD tab[]".
    Example
    DATA RESULT(8).
    CALL 'MULTIPLY' ID 'P1'  FIELD '9999'
                    ID 'P2'  FIELD '9999'
                    ID 'RES' FIELD RESULT.
    <b>Note</b>
    With some critical C functions, the system automatically performs an authorization check. If the user does not have the appropriate authorization, a runtime error occurs. You can check the authorization with the function module AUTHORITY_CHECK_C_FUNCTION.
    <b>Exceptions</b>
    Non-Catchable Exceptions
    Cause: You do not have the authorization to call this C function.
    Runtime Error: CALL_C_FUNCTION_NO_AUTHORITY
    Cause: The system function specified is unknown.
    Runtime Error: CALL_C_FUNCTION_NOT_FOUND
    Cause: The system function SYSTEM is deactivated (in CALL 'SYSTEM')
    Runtime Error: CALL_SYSTEM_DISABLED
    Regards,
    Bhaskar

  • External Web Server links to internal web server on LAN - how to configure?

    I'm hoping someone can give me a bit of assistance with some routing configurations:
    Currently, I have a Cisco PIX 515E that's handling my VPN and routing/DNS, etc. I'm dumping the PIX (it's overkill for my organization and it's costing too much money for Cisco-certified techs to come in and still not configure it correctly for my needs - long story).
    Furthermore, an external website hosted with our ISP links to a public IP (let's say 192.x.x.1) that points through the current PIX firewall, through a DMZ, and then to a webserver hosted locally behind our firewall.
    I'd like our Xserve to take over for the PIX, providing VPN access, DNS, etc. and to properly route calls from the web to 198.x.x.1 to the correct server behind out network.
    The Xserve has two NIC cards, one on a public IP 192.x.x.2 (for the sake of this discussion) and one with it's internal address of 10.1.0.2 for file sharing, etc.
    The internal web server also has 2 NIC cards, one that listens for the links to 192.x.x.1, and one that listens locally on 10.1.0.80 for LAN application services.
    How do I configure DNS/etc. on the Xserve to properly channel the incoming calls to 192.x.x.1 to properly reach the server they're supposed to reach?
    Any help is appreciated. If more info is needed, I'm happy to provide.
    Thanks in advance!

    I've read your post several times and I'm pretty sure I understand what you're saying, until the line:
    >How do I configure DNS/etc. on the Xserve to properly channel the incoming calls to 192.x.x.1 to properly reach the server they're supposed to reach?
    Assuming that the 192.x.x.1 address is a real-world, public IP address that the web server is using, you want all requests from the outside world to go to this address, correct? but requests from the inside world want to go to the 10.1.0.80 address on that server?
    That part I get - you want split DNS, which is not trivial to setup, but is manageable. The part I don't get is where the firewall comes in - you're removing the pix and replacing it with an XServe, but the web server has a public IP address in the same range as the XServe's public IP address and on that basis no traffic is going to flow through the firewall.
    So I'm not sure if this is a firewall or a DNS question.
    Split DNS will handle the internal vs. external traffic going to the different IP addresses of your server. You can't use Server Admin to do this (it can't handle multiple views of the DNS), but it is possible to do by hand.
    The firewall element stumps me, though - but if the XServe is going to run as the firewall you might just find it easier to put the web server behind the firewall and forget the whole DMZ concept.
    Then again, you could get the PIX operating correctly - it's a viable firewall appliance and I'd be surprised if it couldn't do what you want here.

  • Links to AS functions in text?

    Is there a way to create hyperlinks to AS functions within
    text that is imported from an XML file without having to call out
    to JavaScript and back?
    In other words, I'd like to have a way to put a link in the
    middle of a line of text and have it call an ActionScript function
    when clicked.
    Thanks for any help!

    lectro,
    > Is there a way to create hyperlinks to AS functions
    within
    > text that is imported from an XML file without having to
    > call out to JavaScript and back?
    I think the answer is yes. It is possible to create
    hyperlinks (<a>
    tags) in HTML-formatted text in a Flash text field. It is
    possible to have
    that hyperlink trigger ActionScript, rather then open a URL.
    The
    HTML-formatted text can indeed be loaded from an XML
    document. Because none
    of this involves anything outside of the SWF file itself
    (besides the XML
    document), no JavaScript is required.
    > In other words, I'd like to have a way to put a link in
    the
    > middle of a line of text and have it call an
    ActionScript
    > function when clicked.
    Assuming you're using HTML-formatted text, it's as easy as
    using the
    asfunction pseudo protocol, instead of the http protocol. For
    example:
    var tf:TextField = this.createTextField("sampleTF", 0, 0, 0,
    0, 0);
    tf.autoSize = "left";
    tf.html = true;
    tf.htmlText = "<p>Lorem ipsum dolor <a
    href='asfunction:myFunction'>sit
    amet</a>.</p>";
    function myFunction():Void {
    trace("I've been clicked!");
    If your function accepts parameters, send those in as a
    string, like
    this:
    tf.htmlText = "<p>Lorem ipsum dolor <a
    href='asfunction:myFunction,param'>sit
    amet</a>.</p>";
    function myFunction(msg:String):Void {
    trace(msg);
    In the above example, the parameter's value is "param", so
    that string
    gets passed into the function, where it is intercepted as the
    variable msg.
    The line trace(msg) will trace "param" to the Output panel.
    David Stiller
    Co-author, Foundation Flash CS3 for Designers
    http://tinyurl.com/2k29mj
    "Luck is the residue of good design."

  • Link between Internal supplier and customer

    I'm working on Internal payables and receivables report, for that I have internal customer balance due and internal supplier balance due.
    But I need the link between customer and supplier. I mean same internal company is customer and also a supplier.
    I have two separate query like
    1. customer details and amount due
    2. supplier details and amount due
    how to connect both this query?
    output should look like
    Customer/Supplier Payables due Receivables Due
    a 100 400
    b 190 2390
    c - 289
    d 678 -
    Thanks for your help.

    HI,
    You need to check in your asset master data. Check in General data tab for the "Deactivated on" and you will be seeing there the asset deactivation date.
    Whenevr asset is sold of or asset is retired, the asset is deactivated automatically to prevent users posting from values to the asset.
    Delete/remove  the deactivation date in General data tab and run your settlement. It will work.
    Reward if useful.
    sarma

  • Link to internal server

    Hi,
    I have a server with APEX that you can contact trough the web, now I want to retrieve a file from another server that has contact with the APEX server but it cannot be accessed from the web.
    I've tried multiple times to use the internal link that I have to the file, but nothing happens.
    So to make it more clear, my problem is this:
    One APEX Server accessible trough the web and othe machines protected from being accessed from the web only from internal IP´s
    In APEX I can create a URL region and browse the machine from wich I want the user to get a file
    The link to the file I want is similar to: http://10.10.1.1/fl/download.php?id=ae76e1744&example=156
    If I create a link in a APEX report pointing to the above URL nothing returns.
    I already tried using the direct link from another machine in the same internal network and it works fine.
    Does anyone have any idea on how to implement this? Or why is it failing?
    Regards,
    Alexandre Pereira.

    Hi,
    I was making a mistake in the URL region when calling the address, I was calling the value of a link but forgot to put it between &ITEM., thats why it returned me that error.
    Now i can see the page result altough I cannot retrive the file yet, but I think it is some php parameter I'm not passing correctly in the URL.
    Thanks a lot for the help, it solved my problem.
    Just another thing is it possible to call that link and close the new page right away? Itś a bit awkward for a user to click a download link and be redirected to a page where it will only present the download and after that he need to return to the previous page...
    Thanks,
    Alexandre.

  • Hi, Want link for HRMS functional documents.

    Hi There,
    i'm new to HRMS.
    can any one give me links for some simple documents
    for HRMS functional.
    Thanks
    Bachan

    Search on metalink and OTN. There are also many old threads which discuss the same and have links. Search is your friend :)
    --Shiv                                                                                                                                                                                                                                                                           

  • SAP script linking with internal table

    Hi all,
    This is my program to print invoices
    REPORT  z_g_test.
    TABLES: sbook.
    DATA sflights_wa TYPE sflights.
    DATA: itcpo LIKE itcpo.
    DATA itcpp LIKE itcpp.
    DATA sflights_itab TYPE TABLE OF sflights WITH HEADER LINE.
    DATA sbook_itab TYPE TABLE OF sbook WITH HEADER LINE.
    *SELECTION-SCREEN BEGIN OF BLOCK 1 WITH FRAME TITLE text-001.
    *SELECT-OPTIONS: s_carrid FOR sflights-carrid,
    *                s_fldate FOR sflights-fldate.
    *SELECTION-SCREEN END OF BLOCK 1.
    SELECTION-SCREEN BEGIN OF BLOCK 2 WITH FRAME TITLE text-002.
    SELECTION-SCREEN COMMENT 1(79) text-004.
    SELECT-OPTIONS: s_custid FOR sbook-customid,
                    s_bookid FOR sbook-bookid.
    SELECTION-SCREEN END OF BLOCK 2.
    INITIALIZATION.
      s_custid-low = 00001721.
      APPEND s_custid.
    START-OF-SELECTION.
      SELECT * FROM sbook INTO sbook_itab WHERE customid IN s_custid.
    *    APPEND sbook TO sbook_itab.
        APPEND sbook_itab.
      ENDSELECT.
      CALL FUNCTION 'OPEN_FORM'
       EXPORTING
    *   APPLICATION                       = 'TX'
    *   ARCHIVE_INDEX                     =
    *   ARCHIVE_PARAMS                    =
         device                            = 'PRINTER'
         dialog                            = 'X'
         form                              = 'ZG_SCRIPT'
         language                          = sy-langu
         OPTIONS                           = itcpo
    *   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              e         = 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.
      CALL FUNCTION 'WRITE_FORM'
       EXPORTING
         element                        = 'MY_ELEMENT'
         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 'CLOSE_FORM'
       IMPORTING
         RESULT                         = itcpp
    *   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.
    My question is! i am not passing the internal table any where. Now i am trying to print the values which is already existed in internal table,so iam not getting the out put. Now what shall i do in order to get output.
    Regards,
    Lisa

    Hi all,
    the modified code is like this.
    REPORT  z_g_test.
    TABLES: sbook.
    DATA sflights_wa TYPE sflights.
    DATA: itcpo LIKE itcpo.
    DATA itcpp LIKE itcpp.
    DATA sflights_itab TYPE TABLE OF sflights WITH HEADER LINE.
    DATA sbook_itab TYPE TABLE OF sbook WITH HEADER LINE.
    *SELECTION-SCREEN BEGIN OF BLOCK 1 WITH FRAME TITLE text-001.
    *SELECT-OPTIONS: s_carrid FOR sflights-carrid,
    *                s_fldate FOR sflights-fldate.
    *SELECTION-SCREEN END OF BLOCK 1.
    SELECTION-SCREEN BEGIN OF BLOCK 2 WITH FRAME TITLE text-002.
    SELECTION-SCREEN COMMENT 1(79) text-004.
    SELECT-OPTIONS: s_custid FOR sbook-customid,
                    s_bookid FOR sbook-bookid.
    SELECTION-SCREEN END OF BLOCK 2.
    INITIALIZATION.
      s_custid-low = 00001721.
      APPEND s_custid.
    START-OF-SELECTION.
      SELECT * FROM sbook INTO sbook_itab WHERE customid IN s_custid.
    *    APPEND sbook TO sbook_itab.
        APPEND sbook_itab.
      ENDSELECT.
      CALL FUNCTION 'OPEN_FORM'
       EXPORTING
    *   APPLICATION                       = 'TX'
    *   ARCHIVE_INDEX                     =
    *   ARCHIVE_PARAMS                    =
         device                            = 'PRINTER'
         dialog                            = 'X'
         form                              = 'ZG_SCRIPT'
         language                          = sy-langu
         OPTIONS                           = itcpo
    *   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              e         = 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 sbook_itab.
        CALL FUNCTION 'WRITE_FORM'
         EXPORTING
           element                        = 'MY_ELEMENT'
           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
      ENDLOOP.
      CALL FUNCTION 'CLOSE_FORM'
       IMPORTING
         RESULT                         = itcpp
    *   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.
    even though i am not getting the output.
    The question is with out passing the internal table how we will get the output from it?.

  • Link operation and functional locatio

    According to this thread (PM Order - Functional Location and Equipments on Operations) it should be possible to link object list to operations in the Maintenance order.
    Does anybody know if this functionality is also possible in 4.6c
    regards peter

    So that would mean that the field equipment and functional location in the operations tab are useless or am i missing something here? I can not imagine that.
    Is there not some customizing enabling the fields? I've checked almost every PM customizing setting, but unfortunately can not find it. Dont want to surrender yet...

  • E-Rec - hiding links in Internal candidate start page in ECC6.0 por

    Hello,
    I have a requirement to hide some links from the start page of Internal candidate (Employee) in portal.
    I Have done the necessary configuration at the back end SAP-E-Rec --> Technical settings --> User Interfaces > Set user interface with BSP's> Start pages. I also have generated URL using rcf_generate_Url and assigned it in portal.
    But in the Internal candidate (Employee) start page, I get a display called as "Physical Writes". Any clues how this can be fixed pls??
    Best regards
    G Raj

    Hello,
    I have a requirement to hide some links from the start page of Internal candidate (Employee) in portal.
    I Have done the necessary configuration at the back end SAP-E-Rec --> Technical settings --> User Interfaces > Set user interface with BSP's> Start pages. I also have generated URL using rcf_generate_Url and assigned it in portal.
    But in the Internal candidate (Employee) start page, I get a display called as "Physical Writes".
    When assigning the required links to the page group, there are fields in SAP which ask for Online text repository alias title. But thers is no F4 selection option to select from the available list.
    Any clues how this can be fixed pls??
    Best regards
    G Raj

  • Link to local function?

    In earlier versions of Flash, it was possible to link to a
    local function. In the htmlText of a text area, you could link to
    event:functionName instead of a website. Is that possible in the
    text layout framework? If so, can someone post an example?

    Im having a very similar problem. I have a script which feeds
    a dynamic text field named t_txt, I would like to use the
    textlayout component instead of the regular dynamic text field.
    currently the script informing t_txt looks like this:
    import net.slideshowpro.slideshowpro.*;
    function onImageData(event:SSPDataEvent) {
    if (event.type=="imageData") {
    t_txt.htmlText=event.data.caption;
    my_ssp.addEventListener(SSPDataEvent.IMAGE_DATA,
    onImageData);
    Im using the slideshowpro component which is hooked up to an
    external database which provides captions, pictures and titles.
    What href would i supply to the textlayout component? and are there
    any changes i need to make to the above script? thx, Yasha

Maybe you are looking for

  • Problem while uploading file from application server to internal tab in BG

    Hi all, When i see the file  in application server.data is like this #################00\);_(#####}#-#}###############################00\);_(#####}#-#}###############################00\);_(*#####}#-#}######### ###################}###}#############A##

  • Purchase Order Type

    Hi, When creating a PO from a requisition, is it possible to determine the order type of the PO based on purchasing organisation or vendor? I have created a different order type from the standard NB in customizing, but how do I make sure that at PO c

  • Best practise - Domain model design

    Hello forum, we're writing an application divided into three sub projects where one of the sub projects will be realized using J2EE and the other two sub projects are stand alone fat client applications realized using Swing. So that's the background.

  • I want to track progress on my building projects with a tick sheet

    Hi All I want to use a ticksheet to track progress on my building projects. I have between 10 and 15 projects running simultaniously, I would like to prepopulate the ticksheet and give the tick a value. So when waking onto a site i would like to just

  • Java to microsoft word communication

    I am a s/w engineer involved in the creation of an intranet application .One module deals with this criteria:- the details entered from the jsp page has to be converted into a to a word document.The word document has to have headers and footers.Is it