Reg: Uploading the script to a Z Script

Hi all,
I have successfully downloaded the script through program RSTXSCRP and saved it in the presentation server with name for example TEST.
now i need to upload the same content to my new script. i have simply created a zscript and saved and activated it...but when i try to upload i am getting a error like ZMEDTUCK IS NOT AVAILABLE.
can any one please tell me the procudure to uplolad the downloaded contents of script.
Tnx,
Joe

Hello.
Its from different servers i have xported and its in my presentation server now..my question is how to import it in the another server??
i have created a script name zmedruck and simply activated it and for import i hae given the name ZMEDRUCK.
but i am getting a reply like ZMEDRUCK is not available but there is a script name called MEDRUCK.
Can any one temme how to import the downloaded  contents of script in the presentation server??
tNX,
Joe

Similar Messages

  • Flash not showing up AFTER I upload the Scripts folder

    I added a Flash object to a page in dreamweaver. The object
    does not appear in any browser after upgrading to DW 8.02. The
    flash object plays by itself. It plays when previewed in a template
    (a dwt file) in the browser. However when placed on a html file
    based on a template nothing shows up. I have never had this problem
    before. Also, I am still having the same problem AFTER I added the
    Script folder as suggested in other posts on this forum. Can
    someone offer a suggestion? Thanks in advance.

    This file -
    http://www.cis.laguardia.edu/Scripts/AC_RunActiveContent.js
    is not on the server. That's where this call expects it to be
    <td colspan="2" valign="top"><script
    type="text/javascript">
    AC_FL_RunContent(
    'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','wid th','714','height','54','src','../Flash/TOP','quality','high','pluginspage','http://www.ma cromedia.com/go/getflashplayer','movie','../Flash/TOP'
    ); //end AC code
    </script>
    and this one -
    <script type="text/javascript">
    AC_FL_RunContent(
    'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','wid th','501','height','115','src','../Flash/BOTTOM','quality','high','pluginspage','http://ww w.macromedia.com/go/getflashplayer','movie','../Flash/BOTTOM'
    ); //end AC code
    </script>
    and it's where this line says it is -
    <script src="Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    but it's not.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Mister Tacks" <[email protected]> wrote in
    message
    news:ej0gj1$801$[email protected]..
    > The page can be found at
    http://www.cis.laguardia.edu.

  • Fnd script for upload the ldt file

    Hi Expert,
       How to write script for upload the ldt file containing program ,value set ,lookup code and DFF ,for XXCUST schema?
    Thanks

    7f4a32e8-5494-4664-a2f3-632ede8de56c wrote:
    Hi Expert,
       How to write script for upload the ldt file containing program ,value set ,lookup code and DFF ,for XXCUST schema?
    Thanks
    FNDLOAD commands can be found in (Tips and Examples Using FNDLOAD (Doc ID 735338.1)).
    Thanks,
    Hussein

  • Script for uploading the Approved Supplier in bulk

    Dear All
    I need the Script or API to upload the approved supplier List in bulk
    Regards
    Afsar

    Afsar --
    You're very unlikely to get an answer to this question in this forum, which focuses on the Oracle Configurator product.  You should look for another forum where this subject would be more relevant.
    Eogan

  • Reg:How to add fields to the scripts in detail

    How to add fields to the scripts in detail.
    Plz give me one example help me out.

    Hi
    add fields to the scripts by sending that field between  two &s.
    for example if u want to add lifnr of lfa1 table then pass field like this.
    &wa_lfa1-lifnr&.here wa_lfa1 is work area for internal table it_lfa1.
    if name1 then &wa_lfa1-name1&
    in this way you can add fields to the script under any window.
    i am sending one example program for scripts.
    &--structure declaration--
    TYPES:BEGIN OF ST_LFA1,
          LIFNR TYPE LFA1-LIFNR,
          NAME1 TYPE LFA1-NAME1,
          LAND1 TYPE LFA1-LAND1,
          ORT01 TYPE ORT01,
          REGIO TYPE REGIO,
          END OF ST_LFA1.
    TYPES:BEGIN OF ST_EKKO,
          EBELN TYPE EKKO-EBELN,
          BUKRS TYPE EKKO-BUKRS,
          AEDAT TYPE EKKO-AEDAT,
          ERNAM TYPE EKKO-ERNAM,
          BSTYP TYPE EKKO-BSTYP,
          LIFNR TYPE EKKO-LIFNR,
          END OF ST_EKKO.
    TYPES:BEGIN OF ST_EKPO,
          EBELN TYPE EKPO-EBELN,
          EBELP TYPE EKPO-EBELP,
          LOEKZ TYPE EKPO-LOEKZ,
          AEDAT TYPE EKPO-AEDAT,
          MATNR TYPE EKPO-MATNR,
          NETWR TYPE EKPO-NETWR,
          END OF ST_EKPO.
    &--internal table,work area declaration--
    DATA:WA_LFA1 TYPE ST_LFA1,
         IT_LFA1 TYPE STANDARD TABLE OF ST_LFA1,
         WA_EKKO TYPE ST_EKKO,
         IT_EKKO TYPE STANDARD TABLE OF ST_EKKO,
         WA_EKPO TYPE ST_EKPO,
         IT_EKPO TYPE STANDARD TABLE OF ST_EKPO.
    &--data declaration--
    DATA:TOTAL TYPE EKPO-NETWR,
          V_EBELN TYPE EKKO-EBELN.
    data: v_item(20) type c.
    &--parameter for purchase document number--
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    PARAMETERS P_PURDOC LIKE V_EBELN.
    SELECTION-SCREEN END OF BLOCK B1.
    START-OF-SELECTION.
      PERFORM GET_DATA_FROM_EKKO.
      PERFORM GET_DATA_FROM_LFA1.
      PERFORM GET_DATA_FROM_EKPO.
    &--grand total--
      LOOP AT IT_EKPO INTO WA_EKPO.
        TOTAL = TOTAL + WA_EKPO-NETWR.
        CLEAR WA_EKPO.
      ENDLOOP.
    &--open form--
      CALL FUNCTION 'OPEN_FORM'
       EXPORTING
        DEVICE                            = 'PRINTER'
        FORM                              = 'Z_50886_VENDOR'
        LANGUAGE                          = SY-LANGU
       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.
    &--write form for header details--
      READ TABLE IT_EKKO INTO WA_EKKO INDEX 1.
      CALL FUNCTION 'WRITE_FORM'
       EXPORTING
         ELEMENT                        = 'HEAD'
         WINDOW                         = 'HEADER'
       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.
    &--write form for item details--
      LOOP AT IT_EKPO INTO WA_EKPO.
      concatenate wa_ekko-ebeln wa_ekpo-ebelp into v_item.
        CALL FUNCTION 'WRITE_FORM'
         EXPORTING
           ELEMENT                        = 'ITEM'
           WINDOW                         = 'MAIN'
    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.
      ENDLOOP.
    &--write form for vendor details--
      READ TABLE IT_LFA1 INTO WA_LFA1 INDEX 1.
      CALL FUNCTION 'WRITE_FORM'
       EXPORTING
         ELEMENT                        = 'VENDOR'
         WINDOW                         = 'ADDRESS'
       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.
    &--write form for grand total--
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
        WINDOW                         = 'TOTAL'
    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.
    &--close form--
      CALL FUNCTION 'CLOSE_FORM'
       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.
    *&      Form  get_data_from_ekko
    FORM GET_DATA_FROM_EKKO .
      SELECT EBELN
             BUKRS
             AEDAT
             ERNAM
             BSTYP
             LIFNR
          FROM EKKO INTO TABLE IT_EKKO WHERE EBELN = P_PURDOC.
    ENDFORM.                    " get_data_from_ekko
    *&      Form  get_data_from_lfa1
    FORM GET_DATA_FROM_LFA1 .
      IF NOT IT_EKKO[] IS INITIAL.
        SELECT LIFNR
               NAME1
               LAND1
               ORT01
               REGIO
               FROM LFA1 INTO TABLE IT_LFA1 FOR ALL ENTRIES IN IT_EKKO WHERE
                    LIFNR = IT_EKKO-LIFNR.
      ENDIF.
    ENDFORM.                    " get_data_from_lfa1
    *&      Form  get_data_from_ekpo
    FORM GET_DATA_FROM_EKPO .
      IF NOT IT_EKKO[] IS INITIAL.
        SELECT EBELN
               EBELP
               LOEKZ
               AEDAT
               MATNR
               NETWR
               FROM EKPO INTO TABLE IT_EKPO
               WHERE EBELN = P_PURDOC.
      ENDIF.
    ENDFORM.                    " get_data_from_ekpo

  • Why all sudden I get "Safari is no longer responding because of a script on the webpage  Do you want to stop running the script, or let it continue"

    I havent uploaded, downloaded, installed, deleted anything new. I've followed any online forums to empty safari history, temp cache, safari cookies, rebooted, still the message comes up ever 3rd page I visit, or even just typing this out, it comes up after a typed line and half? Others on the net have had to reinstall or reformat their macbook. Seriously hoping I dont have to as its such a pain to reinstall exactly way I have it now.
    Suggestions? Other than throwing it off a bridge like i want to right now? thanks in advance
    Btw, im on mac os x 10.5.8 however when i go to update, says theres nothing new to update. Theres a whole drop down list of other versions, is that a bad thing?

    From your Safari menu bar click Safari then from the drop down menu select Preferences.
    Select the Security tab.
    Deselect:  Enable JavaScript
    Quit then relaunch Safari. If you don't see the script dialog again, reselect the JavaScript box in Preferences.

  • Unable to upload sql scripts in oracle database express edition 10g

    Hi!
    To start, I inform you that I am beginner with Oracle. I installed Oracle 10g Express Edition on my Ubuntu 9.10 like this:
    :~$ dpkg -i oracle-xe-universal_10.2.0.1-1.0_i386.deb
    :~$ /etc/init.d/oracle-xe configure
    and I keep default value. Then I go on http://127.0.01:8080/apex, I login with system account, I create another dba account etc ... all looks very well ! Then I follow this tutorial: http://st-curriculum.oracle.com/tutorial/DBXETutorial/index.htm
    and I am unable to load sql script which is given in this tutorial: load_sample.sql (page:What to do first> Loading Data). I try with a little sql script and same result. I use gedit with UTF-8 and load in UTF-8, my browser is Firefox (I try with Epiphany also).
    The result is: when I upload a script, The browser returns "script uploaded." Then I can click on my script but the file is empty ! Nothing is done when i click on "run". Also I can' create a script; With Epiphany browser, the frame to write is all red. To import a script I have to copy one by one request in sql commands. I try also to change the owner of load_sample.sql:
    -rw-r--r-- 1 oracle dba 49969 2010-01-10 12:05 load_sample.sql
    But it doesn't work. If someone has an idea ? Thanks for your help.
    regards
    Alex.
    load_sample.sql:
    CREATE TABLE regions
    ( region_id NUMBER
    CONSTRAINT region_id_nn NOT NULL
    , region_name VARCHAR2(25)
    CREATE UNIQUE INDEX reg_id_pk
    ON regions (region_id);
    ALTER TABLE regions
    ADD ( CONSTRAINT reg_id_pk
    PRIMARY KEY (region_id)
    ) ;

    Hi,
    So, go to shell ,position yourself in the path where load_sample.sql is, login to the XE as the user with whom you need to run load_sample.sql , and execute
    +@load_sample.sql.+
    Sorry to hijack this thread but I am having exactly the same problem in Ubuntu, it seems as if IE is the only browser that allows you to do this, but installing that in Ubuntu looks like a whole other world of pain I do not really want to get involved in at the moment.
    I like the sound of just shortcutting the sql upload through the shell but I'm a beginner and I do not understand your comment well enough to implement it myself.
    Could you please explain these in more granular layman's terms for someone who is unfamiliar with Linux syntax?
    By 'Shell' do you mean the Terminal or the SQL Command Line? What exactly should I be typing in there to execute the sql?
    I have saved the SQL file on my desktop (jon@jon-pc, it's a virtual Ubuntu machine on a Windows Vista host).
    Thanks in advance
    Jon

  • Uploading and script error

    Hi, I was trying to upload a file using fileReference, but
    the error comes when it's a big file saying:
    The script is causing flash to run slowly. Just wondering if
    there is a timeout defined in fileReference or how can I increase
    it.
    thanks.

    Hi Venkatesh,
    I am testing SU01 t.code using ECATT.I have used TCD recording.I create script and test the script.I have complted parameterisation.When i'm trying to test the  file it shows the follwing log In ecatt.
    No batch input data for screen SAPLSUU5 0100*
    The file have diffrent userids emails firstname lastname.
    how i resolve the error.Pls help on this.I always got same error in diff T.codes also.
    Thanks
    Ravi

  • Script in JavaScript does work properly on every web browser apart from Firefox (After FF update the script stopped working properly).

    Hello,
    script was always working correctly on every web browser. Unfortunately after (probably) last update Firefox stopped handling with it.
    Script is the part of forum based on popular MyBB (http://www.mybb.com/). I put a screenshoot below, which should easily show how did the script work.
    http://screenshooter.net/data/uploads/ug/tg/dyre.jpg
    After clicking on any icon (e.g. bold "B") it shows "[undefined=undefined]" and then clicking shows no effects.
    Errors from "WWW console" after icon clicking:
    TypeError: mnu is undefined - line 641
    TypeError: tag is undefined - line 1163
    Here I posted problematic script:
    http://pastebin.com/D8HmLEKK
    Best regards!

    See [[/questions/939971]]

  • Help with file uploader, php script, Windows Authentication

    I am trying to setup a really basic web-based file uploader that I will expand upon later. I have the flex application working well enough (very basic). However, I have a php script in a secure folder using windows authentication. When I try to send the file to the script, it doesn't seem to like my credentials, and refuses to do anything. I do not get an error message; just nothing happens.
    My questions are:
    Does anybody know where I should've looked before posting this thread?
    Do I even have PHP set up correctly? (At first I just made a txt file and put a .php extension on it, then I tried to setup PHP on the server, but it was a little confusing for me)
    Is Windows Authentication the problem?
    I do plan on implementing SQL Server in the future (to keep track of Files and user-defined attributes for files), but I do not want to store the files in SQLserver, just their pathnames.
    Is there a simple way to use ColdFusion (for free) to acheive this end?
    I am somewhat experienced at coding applications, but am totally new to server-side scripts.
    This is my php script:
    <?php
    $tempFile = $_FILES['Filedata']['tmp_name'];
    $fileName = $_FILES['Filedata']['name'];
    $fileSize = $_FILES['Filedata']['size'];
    move_uploaded_file($tempFile, "./" . $fileName);
    ?>
    This is my flex application:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                      xmlns:s="library://ns.adobe.com/flex/spark"
                      xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
    <fx:Script>
         <![CDATA[
         private var fileRef:FileReference
         private var uploadFilePath:String
         private function selectFile():void
              fileRef = new FileReference();
              fileRef.addEventListener(Event.SELECT, fileRef_select);
              fileRef.browse();
         private function fileRef_select(evt:Event):void
              fileRef.upload(new URLRequest("http://SERVERLOCATION/PDFUploader.php"));
         ]]>
    </fx:Script>
         <s:Button top="30" left="5" label="Browse" click="selectFile()"/>
    </s:Application>
    Thanks to any who take the time to respond.

    Hey, so far all I have found is this tutorial.. I'm about to try it out
    http://www.smartwebby.com/Flash/external_data.asp

  • Get error when installing .json back up file A script on this page may be busy, or it may have stopped responding. You can stop the script now, open the script

    get error when installing .json back up file A script on this page may be busy, or it may have stopped responding. You can stop the script now, open the script
    Also tried to chang places.sql or what ever to my back up .json file and that wouldnt work. Is there a way to just move my backup .json file some where my bookmarks are a bigger file and i t will take a bit to upload.

    A script on this page may be busy, or it may have stopped responding. You can stop the script now, open the script in the debugger, or let the script continue.
    Script: chrome://browser/content/places/editBookmarkOverlay.js:909

  • Error while hitting button 'upload' (login script)

    In order to create an alias/shortcut for a user to his network homedrive I'm trying to upload a login script.
    Under Profile Manager > Login > Scripts > Login script, I want to upload a script but when I hit the "upload"-button I get this error (translation from Dutch to English):
    There has been an error
    Reload Profile Manager en try again
    Error: TypeError: 'undefined' is not a function (evaluating 'target.tryToPerform(action,sender)')
    This error keeps re-occuring when I try to upload a script.

    Hey Piet Prinsloo,
    Could you please let me know whether you are using ExportPDF or Adobe Reader for file conversion.
    If you are using Export PDF service, then please check your internet connection and try using a different browser.
    If Reader, then please choose Help > Check for Updates and use the latest patch of Reader i.e. 11.0.10
    Does this happen with every PDF file you try to convert or any specific one?
    Hope to hear from you.
    Regards,
    Anubha

  • Uploading Selenium Scripts to OTM

    Hi ,
    Can we upload selenium scripts to OTM as a third party .? I have a jar and a bat file . when i run the bat file on cmd prompt i am able to execute the jar .
    How can i implement the same on OTM.

    Hi,
    Yes, if you can run it from a bat file then you should be able to create a third party test in OTM and execute it. The only thing is that to indicate pass/fail OTM requires you to write a regex pattern to parse the output from the CLI. Can you output something from the selenium script or bat file to indicate pass/fail? I haven't used selenium scripts.
    Regards,
    Jamie

  • Upload sql scripts

    I am trying to upload a script to creat my data base in Oracle XE 10g
    My file long is 957K
    1 error
    the file size exceeds the limit...
    Edited by: user9536987 on 21/01/2009 12:28 PM

    I am trying to upload a script to creat my data base in Oracle XE 10gWhat are you trying to do exactly ?
    My file long is 957KWhich is bigger than 500,000 bytes (maximum script size).

  • The script of MDDC algorithm to use in ns2

    Hello everybody I am a student in Master and I have a simulation project of the algorithm MDDC ..
    i hope that anyone know the script of MDDC algorithm to use in ns2  for  ubunto to help me
    Thanks in advance

    Hi Basma,
    Unfortunately, we don't have a plugin for using the ns2 simulator with LabVIEW. You could use the Call Library node to call compiled code from LabVIEW but this is complicated for an application like ns2. I would recommend either building the model for the MDDC algorithm in LabVIEW or just using the ns2 application directly. I found a good link that walks through someone else experience with the ns2. I hope this helps!
    Network Simulator 2 for Wireless : My Experience 
    http://www.winlab.rutgers.edu/~zhibinwu/html/network_simulator_2.html
    Modeling and Simulation of Wireless Networks
    http://cms.comsoc.org/SiteGen/Uploads/Public/Docs_Globecom_2009/1-2009GlobecomD_D_M_S_Overview.pdf
    Thanks,
    Frank
    Application Engineer
    National Instruments

Maybe you are looking for

  • MobileMe Services has stopped working

    I recently updated iTunes and downloaded iCloud on my PC (with Vista 32-bit), since I use an iPhone and an iPad. Since then, each time I turn on Outlook 2003, a message comes on twice that says: "MobileMe Services has stopped working." I know many pe

  • WD 1TB External Hard Drive not working

    I first purchased this product from Best Buy in July. It worked fine on my PC. I get on to the iMac in August (6 months ago from yesterday, happy anniversary), and it takes FOREVER! I reformatted it to Mac OS Extended. I repaired the disk permissions

  • Ouput a string in a calculated column(Sqlscript)

    Hi there. I am having issues with something that appears to be really simple. I just want to add a calculated column in a projection and print a string in this row. Like the example below:                          var_sales = CE_PROJECTION(:var_in,  

  • Updates won't install - Creative cloud

    1. Tried to update illustrator using the Adobe Application Manager 2. Received an "Update Failed" pop-up window 3. Clicked on the Error log link. Report showed: Error Code: U44M1P7 4. Called Adobe support 5. They sent me an e-mail (Case Number: 01844

  • Photoshop Elements 4 Slide Show Tips

    I just spent a weekend making five slide shows with Photoshop Elements 4. I made PDF files and DVDs from all of them, and I experimented extensively. Here are some things I learned: Making a slide show in Elements 4 is simple and reasonably intuitive