Current slide label

Hello!

I am using captivate 5 and generally variable "cpInfoCurrentSlideLabel" as the title of the slide in a slide text caption. Captivate 5 junks the text, and only the first 15 characters appear on the screen (However, when changing the label of the blade is not limited. Does anyone have the same problem, and someone has a work around to solve, rather than use a single text of the caption and type the name again (and change if the label changes)?

Thank you

akoharek

Hello

Open the properties panel which will show you the properties of the legend of text inserted into the slide.

Now, after you press F2 (to enter editing mode), click Insert the Variable in the Format of the text caption properties panel section.

For reference, see the attached screenshot.

Variable type: System

Variable name: whatever the system variable you want to insert.

Max Length: You can set the maximum length

Thank you and best regards,

Roger Simon

Tags: Adobe Captivate

Similar Questions

  • How to get the number of the current slide in Captivate 9?

    With the help of Cap 9.

    Is there a system variable containing the number of the current slide?

    I build a quiz with a drag and drop interaction in the pool of questions. Naturally, the built in Question x of y object is not included, so I have to build a replacement of some sort. Found some old posts on this topic, but the proposed solutions do not seem to work with the current version of Captivate.

    Yes, cpInfoCurrentSlide.

  • Text-to-speech audio continues to play for any other slide - but the current slide is suspended from the output

    Captivate 8.0.1.242 - Windows 7 64 bit - swf format.


    I have this weird error. I have the audio text to speech in my classes. I don't want the PlayBar of captivate. So I have buttons in the content to navigate forward. Each slide is hanging out and waiting for the user to click on the buttons navigate forward. My sound works for the first 2 slides text. Otherwise said, he plays as in the timeline and then stops. Waiting for the user to click on the button before you go to the next slide and the same routine. But after 2 blades, it will not stop. He continues to play the whole audio other slides in the whole cptx. But the current slide is suspended. So I hear everything supposed to be played for other slides, but all I see is a slide.


    When I click on the next slide, he begins to play the audio where it supposed to start for the current slide and plays again all other text in audio from the other slides. This is repeated again and again. Anyone have any idea why this is happening?

    Check the calendar for audio clips, increase the duration of the slide a little and make sure that there is a small space before and after the clip.

    Sorry wanted to add a screenshot, but this feature is currently disabled on this forum.

  • 6. trouble with pieces of the slide next poster/bleeding on the current slide in Captivate

    Similar to this thread - http://forums.adobe.com/message/4734635 - where unfortunately no resolution has been published.

    I use 6 Captivate and I have a problem with pieces of the next slide after the current one, display/bleeding on the current slide.

    This is visible when published.

    There is no transition on the slides.

    It is published in SCORM format, but the error also exists on the pdf file when it is published as.

    Any advice on how to fix this please?

    Please see screenshot below. Thank you.

    error.png

    Disable the compression options in the preferences one by one and publish again until you see the results.  It is usually the advanced project Compression option that is responsible.

    See this page on the project preferences:

    http://www.Infosemantics.com.au/Adobe-Captivate-troubleshooting/how-to-set-up-preferences

  • Why don't the current slide?

    Why not make the current slide, but audio areas?

    Not at all, for the most part it is not a subfolder. But your problem is that you don't have it on a network location, it must be on your system! And you have projects implemented cache, probably also the normal projects on a network drive. That's your problem.

    Lilybiri

  • Why then I jump to the current slide this time?

    I use Adobe captivate 5.5. I have a series of actions on a slide, and I wish they could be replayed if the student clicks on the "replay" button To do this, I want to assign the action of linking to slide (the current slide) on the button 'replay', so that the read head can be given at the beginning of the slide and everything can start again. However, the list of slides for the BACK button does not include the current slide. I remember to do it in a different situation, and it worked fine.

    Can someone tell me why I can't go to the current slide this time?

    I just checked the project I made before where I could access the slide to migrate. It turned out that: If you directly assign the button to jump to slide in the properties panel, it does not include the current on the list of slides slide; However, if you assign a 'advanced actions', add 'jump to slide' who advanced action script, then the current slide will be available in the list of slides. Very interesting.

  • How to restart the current slide in captivate?

    Hi all

    I have a slide in captivate 4 that contains several boxes that appear in the same place as the last when we click on an "ok" button (I use the chronology of fade in and out relevant legends). The customer asked when you get to the final, a watch reset button which will reload the current slide, so you could read it again, if you need (weird!).

    I'm sure the answer is obvious in the face but can't find a relevant action for the button. Could someone help please!

    Thanks in advance

    Chris Maile

    Hi Chris,

    Try to resolve your problem:

    slide1 is the slide where - that you want a button that takes the departure of slide1.

    1 have a fake Blade (say D slide) just before the slide 1.

    2 have a button on slide 1 which would have 'Jum'a drag' action and would take the user to the D slide.

    3. ask to "go to the slide" action on the OnSlideEnter bone slide D and go to slide 1.

    Let me know if this helped you to solve the problem.

    Manish

    http://blogs.Adobe.com/Captivate

  • Coloring slider labels

    Can I change the colors of the labels on a slider programmatically?  So far, I tried this:

    char lblArr[3][25] = { "TOP\033fg990000\033bg009900",                                      "MDL\033fg009900\033bg000099",                                      "BTM\033fg000099\033bg990000" };for( i=0; i<3; i++ ){   ReplaceListItem (g_C9492_pnl, C9492_SLIDER_RING, i, lblArr[i], i+1);   ReplaceListItem (g_C9492_pnl, C9492_LISTBOX, i, lblArr[i], i+1);}
    

    The labels in the listbox control is not replaced, but they are not colored. The labels in the slider is not replaced, but the escape sequence are included in the text of the label (and they are not colored).

    DRM for any help...

    Hi BA,.

    use escape codes for the listbox controls, you must set them before the text you want to assign. In addition, you must pass to the escape the real value of the color that you want to set (i.e. 0 x 990000), not its representation of string ("990000") as you do now. This code works colors assigned to the item in the listbox control:

    int i;

    char lblArr [3] [25];

    sprintf (lblArr [0], "\033fg%06X\033bg%06XTOP", 0 x 990000, 0 x 009900);
    sprintf (lblArr [1], '\033fg%06X\033bg%06XMDL', 009900 0 x, 0 x 000099);
    sprintf (lblArr [2], "\033fg%06X\033bg%06XBTM", 000099 0 x, 0 x 990000);
    for (i = 0; i< 3;="" i++)="">
    ReplaceListItem (panelHandle, PANEL_LISTBOX, I, lblArr [i], i + 1);
    }

    Unfortunately this is not possible on the rings of cursor (InsertListItems documentation mentions only listboxes when examining the color escape codes).

  • menu current slide?

    Hi guys, cs4 flash as3

    Ive got 4 buttons horizontally, when one of the buttons is turned on I want a marker to slide the active button (the page the user is currently), the button selected and of course, to that page appear (it will be a movie).

    are there movies that anyone knows how I can steal some code where at least a tutorial that will help me

    Thank you

    RUS

    The display below may be useful.  I don't know if the poster never solved his problems, umbrella code she showed has worked very well for me when I tested it - she started many discussions on the same subject.

    http://forums.Adobe.com/thread/754879?TSTART=90

  • How to get a current active label (Detailitem)

    Hello

    I looked everywhere and still cannot find a solution for this simple task. I want to get the current value of the active Detailitem (af:showDetailitem) to a panelTabbed (using the java class)

    Work on Jdeveloper 11.1.2.4.0

    can you help me please?

    Hi user,

    have a bean try to bind the Showdetailitem have a listener of disclosure to use the property setdisclosed true or false according to the switching. If you click on sdi2 means other than false else true do.

  • Shares advanced, you get the text of the caption to display on the current slide to the feedback of the users?

    Hi all

    I am trying to create a 'simple' (Captivate 7.0.1). Word search puzzle

    The user must be able to find the 5 words hidden in a random order.

    5 necessary items have been found, legend text informed the user that he or she has completed the puzzle and can click on the next button to move forward.

    puzzle_1.gif

    The problem I encounter is that the caption text does not appear in the slide, although the number of clicks/selections required is met.

    Note: When to advance to the next slide, and then enter the puzzle slide text caption shows and triggers. (see below)

    puzzle_2.gif

    All advice and/or advice will be appreciated.

    OK, thanks for the help, Rod - I'll add a button to the slide.

  • Configure the ADF to entry number Slider label labels

    Hello

    I show a cursor number of entry in "Hugo" and values is between 0 and 100.

    The problem is that the label degraded to the top of the user interface...

    What I mean is that the number is 123456... 99100 and numbers are superimposed making it unreadable.

    Is it possible to configure this component such that only certain values are displayed such as 0-20-40-60-80-100 to avoid the congestion of the user interface.

    JDEV 11 g PS3

    Hello

    Try to set the attributes majorincrement and minorincrement to 20 as in the example below:

    
    

    Jean Lou

  • Head to the beginning of the current slide of rewind button

    Hello

    I would like to include a button on the slide which, when clicked, just starts the slide replay. I noticed when I put a button on the page I want to add this feature to, I don't have an option to replay the slide (or if I do, I'm missing). Can someone help me?

    Thank you

    Dan

    You can not do this by default. You must use actions to progress. You can take the help of micro-navigation of Lilybiri blog post.

    http://blog.lilybiri.com/micro-navigation-in-Adobe-Captivate

    If you use Captivate 6 or 7, just note that "rd" in the system variable has been replaced by 'cp '. For example, "'rdinfoCurrentFrame ' is now 'cpinfoCurrentFrame'."

    In addition, for more information on system variables for CP 6, you can check his post:

    http://blog.lilybiri.com/system-variables-in-Captivate-6

    Anthony

  • Replay current slide

    In the past, I was able to add an image button and assign an Action replay/restart the slide, the user displays advanced standard.  I attribute to the variable cpCmndGotoSlide with the rdInfoCurrentSlide, then continue.

    He worked in versions 5 and 5.5, but I think that it's the first time I tried using a new, draft v6 (not converted from an earlier version).  It is not replay, it moves to the next slide.

    When I went to create the Action, I noticed that the variable rdInfoCurrentSlide - all the variable rdXXX, actually--had been removed and replaced with cpXXX as cpInfoCurrentSlide versions.

    Could there be a problem with the new variable?  Am I missing something?

    I think that CP (depends on the exact version of the COP6, check because it must be 6.0.1.240 or 6.1.319) translates rdinfoCurrentSlide cpInfoCurrentSlide that begins with 1 instead of 0. Take a look at my presentation of system variables, the link is here:

    http://blog.lilybiri.com/system-variables-in-Captivate-6

    Try

    Expression cpCmndGotoSlide = cpInfoCurrentSlide - 1

    Lilybiri

  • Disable the slider labels during the repositioning of objects?

    There is a small black box that follows the cursor autour when you reposition an object with the mouse (click + drag).  This is often an area I need to see in a position to order something correctly.

    These are the labels that I refer to circled in red:

    annoyingcursorlabels.jpg

    I don't see an option in the preferences anywhere, nor is at - it an option to hide these labels in the view menu.  It is a problem for me in Photoshop and Illustrator.  Anyone know how to get rid of these?

    Try disabling preferences > guides > measurement labels

Maybe you are looking for