Static Display of TOC with Narration Textbox Overlay

I'm working on a new project (and am still fairly new to Captivate). I want to have the TOC displayed (overlay, not separate) and be able to have the user click a button and open a text box with the narration for that slide overlaying the TOC. In other words, I want to have the user be able to toggle between the TOC and the slide narration text. I also need to have the TOC display on the slides when I am doing the programming for the project so that I can make sure all of the other slide elements are positioned correctly around the TOC/narration text area.
Is this possible? I've tried everything and looked everywhere I can think of and have not been able to find anything that describes how to do this.
Thanks very much for your help.
Michael

can the background color and font style and color be changed?
Yes.  You set them through the normal CC settings (via the Skin Editor).
Second, I have one slide I am using as a menu slide so I need to be able to play three different audio files depending on where the user is in the course – there is a welcome when they first start, a “continue” audio when the introduction has been completed letting the user know the modules are available, and a “conclusion” audio file that is played when the user completes the modules and the conclusion is unlocked and available.
Currently, I have 3 different text captions that are linked to 3 related audio files (imported into highlight boxes) and shown/hidden depending on where the user is in the course so the text caption is displayed with the appropriate audio file.  Can this be done with the widget? It appears that there is only 1 CC and text-to-audio file available for each slide.
You are right.  There's only one CC and text-to-audio file for each slide.  The widget only repositions and resizes the CC panel.  You "may" be able to use micro-navigation to jump to a specific frame of a slide where you could play that section of audio and CC text.  Then have a button that pauses the side at the end of each section that would "go to next slide".  Here's a post describing micro nav.
http://lilybiri.posterous.com/micro-navigation-in-adobe-captivate
Jim Leichliter

Similar Messages

  • Static displays only on main monitor

    I have a brand new 2.93 GHz 6 Core Mac Pro with an ATI Radeon HD 5870 graphic card with three 30" Apple Cinema displays connected (using Apples Mini DisplayPort to Dual-Link DVI Adapters).
    On a several occasions the monitor (bought about a month ago) designated as the main (by the menu bar) has flickered a few times and then that monitor fills with static... I can still see the desktop through the static, the mouse and keyboard works fine on the monitor, after a several minutes the static flickers out and that monitor is back to normal, or if I put the monitors to sleep that monitor will return to normal.... the other two monitors remain static free during these incidents... I have tried switching the monitors between the mini display ports and the dual-link port but I still get the static display on the monitor... I'll also try using a different monitor as main.....
    Dud monitor or dud graphics card?
    Has anyone else noticed similar problem with the new Mac Pro with the ATI Radeon HD 5870?

    It's a bug in 10.5.6. What you should do is make export a copy of your photos that you want displayed from iPhoto to a folder. Put that folder wherever you want, probably ~/Pictures
    Then tell the screen saver app to pull the images from there and it will work again on both of your displays. Very annoying.

  • How do I display a JDialog with a JTextArea in it?

    Hello.
    How do I display a JDialog with a JTextArea in it?

    http://java.sun.com/docs/books/tutorial/uiswing/mini/index.html
    import javax.swing.*;
    import java.awt.*;
    public class Test extends JDialog{
         public Test(){
              JPanel contentPane = new JPanel(new BorderLayout());
              JTextArea ta = new JTextArea();
              ta.setText("JDialog with a JTextArea in it");
              setContentPane(contentPane);
              contentPane.add(ta);
              setSize(300,300);
              setVisible(true);
         public static void main(String[] args){
              new Test();
    }     

  • How to display polygons both with line contour and filled interior?

    How to display polygons both with line contour and filled interior?
    Java3D 1.3, Java 1.4.1-rc

    Hi,
    I just started with Java3D last week.
    I assume you mean drawing polygons with outlines (wireframe) in one color and polygon face filling with another color. If so, I've got the same question! (I usually think of "contour" to refers to plotting surface intensity of independent data like temperature or elevation, but I don't think you mean this.)
    The only solution I've found so far is to make two shapes with the same geometry.
    Here's an example - an outlined and filled cube. I made it using a generalize class DualShape which is two shapes with the same geometry, but one filled and one as a line.
    It works, although I can't say I understand the setPolygonOffset(), knowing what value to set. Without the command, the depthbuffer can't consistently decide which should be in front between the fills and lines so it looks bad.
    I certainly think it would be nicer to do both internally, like:
    pa.setPolygonMode(pa.POLYGON_LINE || pa.POLYGON_FILL);
    And then have setFillColor and setLineColor for each.
    I don't know why they don't allow this - maybe OpenGL can't do it like this so Java3D follows.
    If anyone has any better ideas I'd like to hear about it.
    Tom Ruen
    class DualCube extends DualShape // cube with outline and fill colors
    public DualCube(float ax, float ay, float az, //cube lower corner
    float bx, float by, float bz, //cube upper corner
    float br, float bg, float bb, //border color
    float fr, float fg, float fb) //fill color
    setGeometry(new CubeGeometry(ax,ay,az,bx,by,bz),br,bg,bb,fr,fg,fb);
    class DualShape extends BranchGroup //general shape with outline and fill colors
    Appearance ap1,ap2;
    PolygonAttributes pa1,pa2;
    ColoringAttributes ca1,ca2;
    Shape3D s1,s2;
    public void setGeometry(Geometry geo, float br, float bg, float bb, float fr, float fg, float fb)
    //filled shape:
    addChild(s1=new Shape3D(geo, ap1=new Appearance()));
    ap1.setPolygonAttributes(pa1=new PolygonAttributes()); pa1.setPolygonMode(pa1.POLYGON_FILL);
    ap1.setColoringAttributes(ca1=new ColoringAttributes()); ca1.setColor(fr,fg,fb);
    //lined (wire) shape:
    addChild(s2=new Shape3D(geo, ap2=new Appearance()));
    ap2.setPolygonAttributes(pa2=new PolygonAttributes()); pa2.setPolygonMode(pa2.POLYGON_LINE);
    ap2.setColoringAttributes(ca2=new ColoringAttributes()); ca2.setColor(br,bg,bb);
    pa2.setPolygonOffset(-1000); //Uncertain what "float" value to use!
    class CubeGeometry extends IndexedQuadArray //cube geometry data
    private static final int[] faces =
    0,3,2,1,
    0,1,5,4,
    1,2,6,5,
    2,3,7,6,
    3,0,4,7,
    4,5,6,7
    private static float[] verts = new float[24];
    public CubeGeometry(float ax, float ay, float az, //lower limit
    float bx, float by, float bz) //upper limit
    super(8, IndexedQuadArray.COORDINATES , 24);
    int n;
    n=0; verts[n]=ax; verts[n+1]=ay; verts[n+2]=az;
    n=3; verts[n]=bx; verts[n+1]=ay; verts[n+2]=az;
    n=6; verts[n]=bx; verts[n+1]=by; verts[n+2]=az;
    n=9; verts[n]=ax; verts[n+1]=by; verts[n+2]=az;
    n=12; verts[n]=ax; verts[n+1]=ay; verts[n+2]=bz;
    n=15; verts[n]=bx; verts[n+1]=ay; verts[n+2]=bz;
    n=18; verts[n]=bx; verts[n+1]=by; verts[n+2]=bz;
    n=21; verts[n]=ax; verts[n+1]=by; verts[n+2]=bz;
    setCoordinates(0, verts);
    setCoordinateIndices(0, faces);

  • My child got ahold of my mac book. She did something and now there is a "dialogue box" that is constantly displayed and it essentially narrates all of my actions, telling what I am doing and viewing etc. help me get rid of this, please.

    My child got ahold of my mac book. She did something and now there is a "dialogue box" that is constantly displayed and it essentially narrates all of my actions, telling me what I am doing and viewing etc. Along with it every icon I click shows a box arond it . Help me get rid of this, please.

    Choose system preferences, then under 'Personal' choose 'Universal Access''
    You will see a checkbox called 'Voice Over'' (under the seeing tab). Switch this to off.
    Good luck
    Max

  • Displaying the TOC of a RH6 project in RH8

    As a companion question to my other recent post re RH6 to RH8 TOC, specifically:
    If I have a RH6 project which I open in RH8, how do I display the TOC of the RH6 project without creating a brand new one so I can view and edit it?

    Apologies if I have misunderstood your question but just try double clicking on the TOC file that has been updated from RH6 when you opened the project in RH8. You'll find it in the Project Set-up pod.
    Read the RoboColum(n) for mutterings on RoboHelp, Technical Communication Suite and technical communication.

  • Displaying values from JSP in textbox

    I want to fetching values from database table using JSP and display the values in a textbox in a textbox. I found if the value is a single word, it can display correctly. but if the values are multiply words, there are just the first word appeared in the textbox. for example, I want to fetche address: 5 East 98th Street, just 5 appeared in textbox. The code is as follows:
    key = request.getParameter("key");
    person = homePerson.findByPrimaryKey(key);
    <input type="text" name="Address" value= <%= person.getAddress() %>>
    Can someone suggest on this problem. Thanks in advance.
    Qiang

    <input type="text" name="Address" value= <%=
    person.getAddress() %>>do this
    value="<%=person.getAddress()%>"
    dont forget the code... as in html spaces are ignored in values if they are not in codes.

  • I am using a mini display to hdmi with my macbook and the display works fine. However, the sound will only play iTunes such as music and movies but when i go online to watch movies on youtube it will not play any sound. Please help

    I am using a mini display to hdmi with my macbook and the display works fine. However, the sound will only play iTunes such as music and movies but when i go online to watch movies on youtube it will not play any sound. Please help

    HDCP maybe? Read this http://www.macnn.com/articles/08/11/26/displayport.drm.conflict/

  • How do I get my new 27" Thunderbolt Display to work with my mid-2010 Macbook Pro?

    How do I get my new 27" Thunderbolt Display to work with my mid-2010 Macbook Pro? Or am I SOL?
    Hardware Overview:
      Model Name:    MacBook Pro
      Model Identifier:    MacBookPro6,1
      Processor Name:    Intel Core i7
      Processor Speed:    2.8 GHz
      Number of Processors:    1
      Total Number of Cores:    2
      L2 Cache (per Core):    256 KB
      L3 Cache:    4 MB
      Memory:    8 GB
      Processor Interconnect Speed:    4.8 GT/s
      Boot ROM Version:    MBP61.0057.B0F
      SMC Version (system):    1.57f18

    You can't. Theoretically, Thunderbolt devices that only transfer video and audio should work with Mini DisplayPort MacBooks like yours, but it's not the case of the Thunderbolt Display. Its firmware doesn't allow it to be used with non-Thunderbolt Macs, so you can't use the Thunderbolt Display with the Mid 2010 MacBook Pro.
    Instead, you have to look for another screen, or you can get an adapter and connect the MacBook Pro to a TV

  • I have an Retina display MacBook Pro with HMDI out port. I also have an HDMI to Component cable with Audio Plugs. How can I get HDMI out to work with this cable when plugged into the Component and Audio ports on my TV?

    I have an Retina display MacBook Pro with HMDI out port. I also have an HDMI to Component cable with Audio Plugs. How can I get HDMI out to work with this cable when plugged into the MacBook Pro and connected to the TVs Component and Audio in ports.

    Will not work.  To my knowledge, dual converting like that isn't supported.  The Mac must detect the connected video output device and that sort of info cannot be done across an analog component uni-directional connection.

  • External Display not working with MacBook Pro 13" (early 2011)

    I just bought the current MacBook Pro 13" (i7 processor). My external display (Benq 20"W, 1600x1050) always says "No Signal Detected!". I've tried it with a DVI-Adapter (Griffin Video Display Converter) and with a VGA-Adapter (LMP Mini DisplayPort-VGA-Adapter). With lower resolution I once got a picture (but with weird lines). On my old MacBook (white, 2.16 Ghz) there was never a problem with this display (also OS X 10.6.6). Who can help?

    Check this post if you want more info:
    http://discussions.apple.com/thread.jspa?threadID=2774718
    The gist is that DVI is currently very iffy through Thunderbolt. Mini display -> mini display OR mini display -> HDMI should work fine. It's most likely not your adapter itself but the fact that it's DVI.
    If you can, get a mini display -> HDMI adapter and try that (assuming your external has HDMI).
    I should hear back tomorrow or Monday from apple engineers with more specific info about this issue and I will update then.
    BTW- DVI anywhere in the chain will make things fail. Mini Display -> DVI and a DVI/HDMI cable won't work with any reliability (I've tested it on three completely different monitors).

  • Display Currency symbol with value in ALV Report

    Hi Experts,
    I need to display currency symbol with value in ALV Report like if currency type is dollar then $200.
    Here I am using field catalog type slis_t_fieldcat_alv and suing field merge catalog FM: 'REUSE_ALV_FIELDCATALOG_MERGE'
    I tried like this
        IF <fs_fieldcat>-fieldname = 'STPRS'.
          <fs_fieldcat>-seltext_s = 'Std Cost '.
          <fs_fieldcat>-seltext_m = 'Std Cost'.
          <fs_fieldcat>-seltext_l = 'Std Cost '
           <fs_fieldcat>-tabname = 'MBEW'.
          <fs_fieldcat>-ctabname = 'T001'.
          <fs_fieldcat>-cfieldname ='WAERS'.
          <fs_fieldcat>-datatype = 'CURR'.
        ENDIF.
    Please any one can suggest the solution for this.
    Advance Thanks.
    Regards,
    Bala Achari

    Hİ,
    Check this link.
    http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=24379571
    Take care.
    Çağatay

  • How to display 2 layouts with 2 different Header and Footer in a template.

    Hi,
    I am using XML Publisher 5.5. I have created one template which is having two layouts. I am using <?Start: Body?> and <?end body?> for displaying Headers and footers. Now my problem is, I need to display first layout with it's associated Header and footer and then second layout with other header and footer. But the two layouts should come in single template file. How is it possible?. Is there any work around? Please help me as this is the urgent requirement to my client.
    Thanks.
    Siva.

    No problem. Select Insert -> Break from the menu bar. Then select a "Section Break" - Next page.
    Header 1
    <?start:body?>
    Page 1
    <?end: body?>
    Footer 1
    ==================Section Break (Next Page)=================
    Header 2
    <?start:body?>
    Page 2
    <?end: body?>
    Footer 2
    Worked like a charm.
    Klaus

  • How do I share a Keynote project as Quicktime with narration on each slide?

    I have a Keynote presentation with narration embedded in each slide. It plays fine as a self-timed show. I tied everything together by "recording" the presentation (with no extra sound). This second version of the show plays fine within Keynote, starting always at the first slide. When I try to share this second show as a Quicktime, the sound is hit-or-miss: part of the narration on some slides, all of it on others, none at all on others. The total length of the QT movie matches the playing time of the Keynote presentation, but the sound is whacko. My workaround was to do a screen capture with iShowU, but I would like to know the solution to the problem within the Keynote program. I would appreciate hearing any ideas anyone may have. Thanks.

    Oh !
    thats a shame
    is there no public or semi public area to save a file to that can be shared

  • While updating my ipad to new software through itunes it got stuck and does not work anymore - it just displays the screen with symbols of itunes and the cable to connect to it - help - what should i do?

    while updating my ipad to new software through itunes it got stuck and does not work anymore - it just displays the screen with symbols of itunes and the cable to connect to it - help - what should i do?

    Disconnect the iPad, do a Reset [Hold the Home and Sleep/Wake buttons down together for 10 seconds or so (until the Apple logo appears) and then release. The screen will go blank and then power ON again in the normal way.] It is 'appsolutely' safe!, reconnect and follow the prompts.
    If that does not work then see here http://support.apple.com/kb/HT1808

Maybe you are looking for

  • Creating Bookmarkable URLs - two or more parameters

    I followed the tutorial "Creating Bookmarkable URLs" and I was able to pass 1 parameter OK with values from a database. I don't know the syntax for multiple parameters, though, when using the IDE Design view. I really would like to have bookmarkable

  • How to create empty text file on target system for empty source text file

    Hi All, I have an issue in handling empty file in the Text (FCC) to Text (FCC) file scenario. Interface picks text file and delivers on target system as text file. I have used FCC in both sender and receiver CCs. Interface is working fine if the sour

  • ORA-06512 - Mutating trigger

    Here is the code: CREATE OR REPLACE TRIGGER FPMENU00_update AFTER UPDATE ON FPMENU00 REFERENCING OLD AS old NEW AS new FOR EACH ROW BEGIN UPDATE FPSMNU00 SET Menu_Name = :new.Menu_Name WHERE Menu_Name = :old.Menu_Name; END; When I attempt to update t

  • Hide Attributes in Address book

    Good day ,  I tried to use ABSConfig to hide mobile number from Lync contact card with no luck ,  i couldn't find any proper documentation for ABSConfig, so what i already tried is  1 - Uncheck the "Enabled" check box for mobile attribute , along wit

  • USB-8473s Bus Monitor Won't Start

    Hello I have an 8473s USB CAN module I am trying to get working. I have MAX 5.5 and CAN 2.7.5 on Windows 7 The 8473s sometimes starts with a nice yellow USB light, sometimes with one that flashes green-yellow, sometimes one that flashes in a pattern