How do I launch a software demo from within a Captivate 6 presentation?

I'm trying to figure out the best way to weave together a presentation which leads into a full screen software demo - back to the presentation and into a full screen training session.  I have all of the separate peices completed but I can't see a simple way to do it. 
I'm imagining there must be a way to insert a button which launches the (SWF, html, exe file) sofware demo and another button I can insert into the demo which will take me back to the correct page in the presentation.  I just can't see how to apply that as a command.
Any help would be gratefully received.

Rod,
A couple of suggestions from a fellow Rod:
Don't set your publish folder to be the same location as your project CPTX files.  Your folder will get very messy and make it much harder to find what you want.  Keep your project source files in one folder and point your published files at another folder reserved for that purpose.
Make sure your publish folder location has been set up as a trusted location in your Flash Global Security settings.  Google for info about it if you are a newbie. Lots of info on the web.  Bottom line is that without Flash Security set up properly, lots of stuff (especially links) won't work.
Never have spaces in your publish file names.  You can set the output filename in the publish dialog.  You need to remember that your content is quite likely to end up on a web server, and web filenames should never have spaces because it can break links.
Always use all lowercase for all filenames.  Windows servers won't mind mixed case filenames, but if your content happens to land on a different type of web server one day, then the mixed case can cause broken links.
Publish your project (without the spaces and with lowercase name) at least once to the output folder if you are creating a new folder there. And then copy any video files, SWFs, PDFs or other stuff that will need to be called by your published content into the publish folder location so that it will be available for linking.
I know Adobe says you can point the links at the CPTX file and Captivate is supposed to work out that you are actually wanting to link to the output file it will publish, but quite frankly I find it more reliable to just link to the HTM file.  If that HTM file and the SWF/JS etc that it needs to call are in a different folder from the file you are linking from, then you need to set up a RELATIVE LINK, not an ABSOLUTE LINK.  If you don't know what these are and how to create them properly, Google for info again.  The web is full of good tutorials about linking.

Similar Messages

  • How to delete/remove the software component from integration repository

    Dear All
    How to delete/remove the software component from integration repository which we have created some Data and message types.
    Regards
    Blue

    Hi,
      Follow the steps below to delete the Software component:
    1. Delete the created Data Types, Message Types, Message Interfaces, Message Mappings, Interface Mappings and other imported objects like RFC's or IDoc's. Activate all changes.
    2. Then delete the namespace and the default datatypes present with the namespace after checking "objects are modifiable".
    3. Then delete the SW component, after placing the radio button in "Not permitted".
    Regds,
    Pinangshuk.

  • How do I copy printer software files from a folder on my desktop to a CD?

    How do I copy printer software files from a folder on my desktop to a CD?

    Select all the files, right click and choose burn.

  • How Do you abort a software update from your iTouch

    Help! How do you stop a software update that is being downloaded from your iTouch??

    You shouldn't as it may cause a myriad of other issues.  Why do you want to abort it?
    B-rock

  • How do you launch a bluetooth sync from a Treo 650?

    I have successfully connected my Treo 650 to my Mac via bluetooth and can run Hotsync by going thru the steps in the Bluetooth application on the Treo.
    However, isn't there a simpler "one-button" way to launch Hotsync via bluetooth from the Treo --analogous to the button you push when you use USB?
    This seems so obvious but I can't find a "how to launch" direction in the Treo manuals or the Palmone website.
    Thanks,
    Rich

    David, thanks. It was so obvious. I didn't realize the Hotsync logo was a button! I was looking right at it.
    Rich

  • How do I locate the Software Setup screen within Photoshop Elements trial product?

    How do I get to the Software Setup screen within Photoshop Elements 11 trial product (to convert from trial to paid-up)?

    If you are on trial application, so whenever you launch Photoshop Elements Editor, it will give you the option to serialize your product.

  • How can I execute an external program from within a button's event handler?

    I am using Tomcat ApacheTomcat 6.0.16 with Netbeans 6.1 (with the latest JDK/J2EE)
    I need to execute external programs from an event handler for a button on a JSF page (the program is compiled, and extremely fast compared both to plain java and especially stored procedures written in SQL).
    I tried what I'd do in a standalone program (as shown in the appended code), but it didn't work. Instead I received text saying the program couldn't be found. This error message comes even if I try the Windows command "dir". I thought with 'dir' I'd at least get the contents of the current working directory. :-(
    I can probably get by with cgi on Apache's httpd server (or, I understand tomcat supports cgi, but I have yet to get that to work either), but whatever I do I need to be able to do it from within the button's event handler. And if I resort to cgi, I must be able to maintain session jumping from one server to the other and back.
    So, then, how can I do this?
    Thanks
    Ted
    NB: The programs that I need to run do NOT take input from the user. Rather, my code in the web application processes user selections from selection controls, and a couple field controls, sanitizes the inoputs and places clean, safe data in a MySQL database, and then the external program I need to run gets safe data from the database, does some heavy duty number crunching, and puts the output data into the database. They are well insulated from mischeif.
    NB: In the following array_function_test.pl was placed in the same folder as the web application's jsp pages, (and I'd tried WEB-INF - with the same result), and I DID see the file in the application's war file.
            try {
                java.lang.ProcessBuilder pn = new java.lang.ProcessBuilder("array_function_test.pl");
                //pn.directory(new java.io.File("K:\\work"));
                java.lang.Process pr = pn.start();
                java.io.BufferedInputStream bis = (java.io.BufferedInputStream)pr.getInputStream();
                String tmp = new String("");
                byte b[] = new byte[1000];
                int i = 0;
                while (i != -1) {
                    bis.read(b);
                    tmp += new String(b);
                getSelectionsDisplayTextArea().setText(getSelectionsDisplayTextArea().getText() + "\n\n" + tmp);
            } catch (java.io.IOException ex) {
                getSelectionsDisplayTextArea().setText(getSelectionsDisplayTextArea().getText() + "\n\n" + ex.getMessage());
            }

    Hi Fonsi!
    One way to execute an external program is to use the System Exec.vi. You find it in the functions pallet under Communication.
    /Thomas

  • How can I call a java class from within my program?

    I was wondering if there's a platform independent way to call a java class from my program.

    Here's my scenario. I'm working on a platform independent, feature rich, object-oriented command prompt program. The way I'm designing it is that users can drop classes they write into my bin directory and gain access to the class through my program. For example, they drop a class named Network.class in the bin directory. They would type Network network at my command prompt and gain access to all the methods available in that class. They can then type system.echo network.ipaddress() at my prompt and get the system's ip address. I have it designed that there's a server running in the background and the clients connect to my port. Once connected the end-user can enter their user name and password and gain access to the system. When they type a command they actually call another java program which connects to my server using a seperate thread. They can then communicate back and forth. I have it set that everything has a process id and it's used to keep track of who called what program. Once the program is done it disconnects and closes. Rather than getting into the nitty gritty (I didn't want to get into heavy detail, I know how everything will work) I'm really interested in finding out how I can call a java program from my program. I don't want it to be part of the app in any way.

  • How to restrict the ordering of apps from within an app

    My grandkids somehow run up charges by ordering apps from within an app they are using usually games  without even knowing they are doing it. How do I restrict them from doing it?  And how do I get the charges to Itunes removed when this happens?

    You can go into settings, and restrictions and turn off 'in app purchases'
    You may also want to set your apple id from 'require after 15 minutes' to 'require immediately'
    As to getting the charges reversed you can contact the app developer. Maybe they will reverse the charges, but they don't have to. The terms of sale are that all sales are final.

  • How to get the RGB Working Space from within a Filter Plug-In?

    Within my Filter Plug-In I need to access the image's icc profile data. I know this can be accomplished with the according data structure 'iCCprofileData'. But what if there is no profile assigned to the image? Then iCCprofileData is NULL and the default should apply which is the 'RGB Working Space' (assuming the Plug-In works in RGB mode only, what it does). But how can I get to know what the 'RGB Working Space' is from within my Plug-In?

    As far as I know, the profile provided to the plugin API should never be NULL. If the image is not color managed, it still should have the working space profile in the ICCProfileData field.

  • How to get the edit channel link from within the channel?

    Following problem:
    I want to include a link to edit the settings of a channel in the channel contents. The link should be the same as the edit button on the frame of the channel container. Searching through the provider jsps I found that the edit link is created in single.jsp. The code I need seems to boil down to
    <dt:obtainContainer container="$JSPProvider">
      <dtsingle:singleContainerProvider>
      <dtpc:getStringProperty key="editContainerName" id="editContainerName" scope="request"/>
      <dt:getName id="SingleContainer" scope="request"/>
      <jx:declare id="editContainerName" type="java.lang.String"/>
      <jx:declare id="SingleContainer" type="java.lang.String"/>
        <dtsingle:obtainSelectedChannel>
    <A HREF="<dtpc:getDesktopURL/>?action=edit
    &provider=<%=editContainerName%>
    &targetprovider=<dt:getName/>
    &containerName=<%=SingleContainer%>"
    TARGET="_self"> EDIT! </A>
        </dtsingle:obtainSelectedChannel>
      </dtsingle:singleContainerProvider>
    </dt:obtainContainer>However I am unable to get that working in the channel, as I always receive a ProviderException on the line with
    <dt:obtainContainer container="$JSPProvider">
    What am I doing wrong, or is does the obtainContainer simply not work from within a channel?
    If anyone can help me out to get the edit link it would be greatly appreciated. Any hints and/or sample code would help alot.
    thanks!
    Message was edited by:
    obstler42

    Hi Detlev ,
    Thank you very very much . We could figure out how to get the URL and Driver information from there .I have rewarded the points also.
    Thanks
    Ravi
    Message was edited by: Ravi Krishnan

  • How to get the Weblogic Server Id from within java code

    I would like to log which server (among a cluster) a certain job is running on. Is there a way to get the server id from within Java code (this code is in a session bean if that is relevant.)
    By server id I mean the "Name" column in the summary of servers on the weblogic console.
    Thanks,
    ken

    Use the two entries close to the bottom of the page: "list WebLogic
    MBeans:listMBeans.jsp
    display MBean attributes and operations:showMBean.jsp"
    Nils
    Anatoly wrote:
    >
    Cameron,
    That page has these items on it:
    which one do you think helps with my issue?
    Misc WebLogic examples
    LongRunningTask
    Execute tasks in parallel using WebLogic Execute Threads
    Weblogic stats (5.1)
    Reload Servlet(s) programmatically (5.1)
    Network classload from WebLogic:using reflection,or the launcher
    Weblogic 5.1 debugging properties
    Seppuku pattern readme
    Using dynamic proxies to intercept EJB invocations (6.1)
    list WebLogic MBeans:listMBeans.jsp
    display MBean attributes and operations:showMBean
    Thanks to Marcelo Caldas for filter by type option and nice UI!
    Using com.sun.jdmk.comm.HtmlAdaptorServer with WebLogic 6.1
    Cool
    EJBGen
    Dimitri
    back
    "Cameron Purdy" <[email protected]> wrote in message news:<3c7a745d$[email protected]>...
    JMX ... see http://dima.dhs.org/misc/ for some info on JMX in Weblogic.
    Peace,
    Cameron Purdy
    Tangosol, Inc.
    Clustering Weblogic? You're either using Coherence, or you should be!
    Download a Tangosol Coherence eval today at http://www.tangosol.com/
    "Anatoly" <[email protected]> wrote in message
    news:[email protected]..
    Does anyone know who to get the managing server URL's port
    from within the EJB code running on Weblogic 6.1?
    The URL port is not default (not 7001), but when creating
    initial context, I am not specifying the URL in properties.
    Due to that, trying to the the PROVIDER_URL property from
    environment does not return anything.
    Appreciate any responses.
    -Anatoly
    ============================
    [email protected]

  • How can I call a LabVIEW executable from within another LabVIEW executable?

    I have a customer requirement for two LabVIEW executables. Based on their current setup, they need to run executable "A" or "B", both of which are under independent revision control. I have created a third "selection" executable that allows the operator to choose between one of the two, but I am receiving errors when I attempt to call a LabVIEW executable from within a LabVIEW executable using either the "System exec" VI or the "Run Application" VI. If I call a non-LabVIEW executable (such as Windows Explorer) everything works fine.

    > I have a customer requirement for two LabVIEW executables. Based on
    > their current setup, they need to run executable "A" or "B", both of
    > which are under independent revision control. I have created a third
    > "selection" executable that allows the operator to choose between one
    > of the two, but I am receiving errors when I attempt to call a LabVIEW
    > executable from within a LabVIEW executable using either the "System
    > exec" VI or the "Run Application" VI. If I call a non-LabVIEW
    > executable (such as Windows Explorer) everything works fine.
    As with the other poster, I suspect a path problem. You might try the
    path out in a shell window, and if it works, copy the complete absolute
    path to LV to see if that works. LV is basically passing the comma
    nd to
    the OS and doesn't even know what is in it, so you should be able to get
    it to work.
    The other poster commented on subpanels, which is a good suggestion, but
    without going to LV7, an EXE can have open more than one VI. You can
    use the VI Server and the Run method to fire up another top-level VI.
    The decision is whether you want both to be in unique processes.
    Greg McKaskle

  • Import Software Components from within CE/NWDS (NW CE 7.3.x)

    Hi,
    I cannot find a clear statement in the documenation (sap help / nwds inside docu), whether it is possible to import sofware components into the ES-Repository from within the CE NWDS.
    I am unsure, if it is an authorization problem or if one has to make a detour via the Web-Start/Swing-Client just for the import of SWCs into the ES Repository. Any Ideas?
    Thanks
    Chris

    Hello Sheldon, I've seen that you've been pending for an answer for a while.
    The thing is that you do not need to install 7.1 EHP1 with 7.3. It's either one or the other.
    7.3 is an evolution of 7.1 EHP1 and is the new platform on which to deploy MII while 7.1 EHP1 has been around now for a few years.
    Cheers,
    Arnaud

  • How to save CD files to disk from within Flash?

    Hi.
    Is there any way I can copy files from a swf in a CD ROM to
    users computer?
    Some kind of "save to..." from within flash... ?
    Maybe I can explain better what I need to do:
    I have an external .swf, loaded into an .EXE.
    In the .swf, I need to put buttons to downloads of wallpapers
    and stuff.
    This is where my troubles start...
    tks for your time.

    pedrosantos.dsgner wrote:
    > Hi.
    > Is there any way I can copy files from a swf in a CD ROM
    to users computer?
    > Some kind of "save to..." from within flash... ?
    >
    > Maybe I can explain better what I need to do:
    > I have an external .swf, loaded into an .EXE.
    > In the .swf, I need to put buttons to downloads of
    wallpapers and stuff.
    >
    try
    http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context= LiveDocs_Parts&file=00002210.html
    or 3rd party tools like Jsystem from
    http://www.flashjester.com/?section=tricks_jtools_jsystem
    Regards
    Urami
    Happy New Year guys - all the best there is in the 2006
    <urami>
    http://www.Flashfugitive.com
    </urami>
    <web junk free>
    http://www.firefox.com
    </web junk free>

Maybe you are looking for

  • O/P format info req for an SAP standard reprot.---urget???

    Hi I need to change the O/P display format for the tocde IH01,its an SAP-standard report for PM,but displays the O/P in an different format,is there any way so that i can make it to ALV,or SAP list format. I want to save the dat of O/P in an excel,bu

  • Need help : for changing the flv movie size

    i am loading my flv thogh xml link if load my flv the same size what i kept in my folder using script shall i change the movie size because lot of movies is loads dynmicaly i cannot go and change each and evry movie so some body can help me to change

  • Blank documents

    Have a gwise 7.0.3 post office with several libraries attached to it. On 2 of the libraries when I click on the documents it opens the associated application but not the data. I have tried saving the document but it saves with 0 bytes. I have run an

  • Can't Get Anywhere in Windows 2003 VPN System with AE 2009

    Hi, This is driving me nuts, and I'm wondering if anyone can help. Since purchasing a new 2009 Airport Extreme, I can't see any servers when logged into my company's Windows 2003 VPN system. I log on and authenticate fine, it looks like I see the VPN

  • Options for monitoring health of SCSM 2012 SP1 using SCOM 2012 SP1

    Hi, I've done some research on how to monitor SCSM using SCOM (version 2012 SP1 for both) and found two options: Option 1 - Agent-based monitoring. With SCSM2012 SP1, it looks as though the agent is already present (for upgrades and also for fresh in