Is there a tip action that will open and close the table of contents?

I like that in CP5, Adobe has allowed users to change the icon associated with opening and closing of a Table of contents in layers.  Having said that, unfortunately, they show if small, I don't see what I created.  So, I was wondering, is there an advanced action or an action script that I could assign to a button that will allow my users open/close the table of contents?

Thoughts?

Eric

I created a quick and dirty AS3 widget that can be used in Captivate 4 and Captivate 5 projects to open / close a table of contents in overlay with your own button mode.

http://www.cpguru.com/2010/10/14/free-TOC-button-widget-for-Adobe-Captivate-4-AS3-and-Adob e-Captivate-5.

Have fun; (o)

/ Michael

Tags: Adobe Captivate

Similar Questions

  • A menu button using custom on the slide to open and close the table of contents of Captivate 7

    Hello

    I have a custom menu button. When the user clicks on I want to see the table of contents, (I see there is a State to display the table of contents), but when the user clicks on the same menu again button on this slide how to hide the table of contents. IE, go hide and show.

    Thank you

    Captivate 7.0.1 contains a rocking action that allows you to enable a Boolean variable (for example the system variable that displays or hides the table of contents), and shutdown.  Use this action.

  • WebHelp, view a topic that is not present in the table of contents

    Hello

    I'm working on RH8. I use multiple TOC and created a table of contents with only the first 4 chapters. After having generated the WebHelp by using that FAKE, even if I look for a subject that did not exist in the table of contents, I can see the help.

    Ideally, if the topic is not added to the table of contents, should not be displayed even if someone searches for it.

    Please help me with this.

    Looks like you expect the table of contents to control what is in the construction and it's not the way it works. It is simply the pointer on key issues, which may need to support the topics where you wouldn't wish that the user to start and that might clutter up the table of contents.

    What you see, it's the way it is supposed to work and how a HAT I've seen. The table of contents indicates what you want to highlight, the search finds all that is in the build.

    You can use exclude research in properties, introduced in RH8. In this way the subject is in the build-up but not searchable.

    If you don't want certain topics, use TCC to exclude.

    See www.grainge.org for creating tips and RoboHelp

  • Open and close the Panel the Subvi front

    Hi all

    Run LabVIEW 2011 on Windows 7 x 64.  I am trying to get a Subvi front to open from my main PC with the touch of a button, then close with a button press in the Subvi.  Here's the piece of my main FP who calls the VI and opens the FP

    Locations is defined in another loop and all loops are in a flat order.  I made this way because I want to start with the first press and not stop my main loop to run.  So I don't know if I can run in the same line as the event or not, I've moved the element to the left loop around a lot.  Anyway the VI of openness seems to work very well.

    The problem arises when you try to close the Subvi for the SECOND time.  The code is here:

    As I said, the first time I open and close the VI everything works as it should, hopefully.  Then, I am able to reopen but now 'empty' button does not work and I can't close the window or even to open the block diagram to probe anything.  I tried to understand this point for a while, any insite would be greatly appreciated!

    Thank you

    Found my problem, I had the wrong boolean on one of my other events.  If this seems to be a good way to open/close a Subvi if anyone is interested!

  • Is there a way to "force" a title that is not screw up the Table of contents?

    I used SHIFT + ENTER to force the rest of the topic on the next line, but it screws to the top of the table of contents.

    Suggestions?

    Do not use hard returns. Anchor a block of empty anchor image in this position, running in Para, of equivalent right height to 3 lines of text in title.

    Put a non-breaking space between Tuesday and the morning, to keep them on the same line (Ctrl + SPACEBAR).

    Take the left edge of the AF with the graphical tool and drag it to squeeze the heading to the left until it sinks you want to appear on the page to the left. Table of contents entry will always be a single line.

    I can think of other ways to do this, but frame RRI technique is by far the easier and more understandable for the future stewards of document.

  • Open and close the connection in oracle procedure

    Here is the procedure I'm in I insert data into the table temp_soap_monitoring using the select statement. I have soap_monitoring table FONIC_RETAIL database where I want to take the data and insert into the table temp_soap_monitoring. I play the position of planner of all 5 minutes for this procedure so that I get always the latest data in soap_monitoring@fonic_retail table. The problem of this procedure is that it takes too much cost and the query execution time to perform this procedure. Whenever he tries to extract the data from db link and save my local database. I remember in Java, php, and other programming languages, we have method in order to open the db connection when we tried to extract data from db link and then once integration is complete, we can close the db connection. So the performance improves and also has no load on db link. In this method, we have to assign link db to retrieve the data. So I think is it possible to apply this logic in my oracle procedure. The question arises because at this moment I am hard code the link db, but now I have 3 db more links and I will not reproduce the same procedure by assigning diffferent db links.

    PROCEDURE  "EXT_SOAP_MONITORING" AS

    LAST_SM_ID Number
    := 0;
    LAST_CAPT_DATE DATE
    ;

    BEGIN

    SELECT LAST_TASK_ID INTO LAST_SM_ID FROM CAPTURING where DB_TABLE='TEMP_SOAP_MONITORING';

    insert into TEMP_SOAP_MONITORING(ID,REQUEST_XML,RESPONSE_XML,WEB_SERVICE_NAME,WEB_METHOD_NAME,CREATE_DATE,ERROR_CODE,ERROR_MESSAGE)
    select ID,REQUEST_XML,RESPONSE_XML,WEB_SERVICE_NAME,WEB_METHOD_NAME,CREATE_DATE,ERROR_CODE,ERROR_MESSAGE from
    SOAP_MONITORING
    @FONIC_RETAIL WHERE WEB_SERVICE_NAME ='RatorWebShopService'  and WEB_METHOD_NAME = 'placeShopOrder' and ID > LAST_SM_ID order by ID desc;

    update
    CAPTURING
    set LAST_TASK_ID=
    CASE WHEN ((SELECT MAX(ID) from TEMP_SOAP_MONITORING) IS NULL) AND (LAST_TASK_ID  IS NULL)  THEN (SELECT MAX(ID) from SOAP_MONITORING@FONIC_RETAIL)
    WHEN (SELECT MAX(ID) from TEMP_SOAP_MONITORING) IS NULL THEN LAST_TASK_ID + 1
    ELSE (SELECT MAX(ID) from TEMP_SOAP_MONITORING) END,
    CAPTURING_DATE
    = CURRENT_TIMESTAMP, LAST_CAPTURED_DATE = LAST_CAPT_DATE where DB_TABLE='TEMP_SOAP_MONITORING';

    END EXT_SOAP_MONITORING;

    I have it here is the procedure which I insert data in

    temp_soap_monitoring table by using the select statement. I have

    soap_monitoring table of FONIC_RETAIL database where I want to take the data and insert into the table temp_soap_monitoring.

    WHY? Why you are moving the data? Why not just use it table, is it already?

    The problem of this procedure is that it takes too much cost and the query execution time to perform this procedure.

    The solution is to FIND THE PROBLEM. Troubleshoot the code and find out where is the problem, if any.

    Based SOLELY on what you have posted the solution might be to add just an appropriate index.

    Whenever he tries to extract the data from db link and save my local

    database. I remember in Java, php, and other programming languages, we

    method to open the db connection when we tried to extract data of

    DB link and then once integration is complete, we can close the db

    connection.  So the performance improves and also has no load on db link.

    What? The LAST thing you want to do is keep the closing and opening of the connections. I don't know how 'remember you' from Java or other languages. The main reasons pools of connections were invented to AVOID have to repeatedly open and close connections.

    A db link not a NOT a "charge" - the "charge" is the query is made. If you write a poor query or have a poor data without the necessary index model, or have missing statistics, then you will get poor results.

    In this method, we have to assign link db to retrieve the data. So I have
    is it possible to apply this logic in my oracle procedure to belive. The
    question arises because at the moment, I'm hardcode db link but now I
    have more ties db 3 and I will not reproduce the same procedure by
    assigning diffferent db links.

    You can certainly write Java code to connect to each database with a direct connection. But all write code PL/SQL must include the database link. And the only way to avoid hard-coding the link is to keep the names of link in a table and use dynamic sql statements to build and run the query. This isn't what you want to do if you're looking for performance.

    SELECT LAST_TASK_ID INTO LAST_SM_ID FROM CAPTURING where DB_TABLE='TEMP_SOAP_MONITORING';

    For all we know which could be the WHOLE CAUSE of your problem. If there is no index on the table, you could do a full table to a table with lines scan 800 billion;

    We have NO WAY of knowing since you haven't posted info. Please read the faq to find out how to post a request for tuning and the info you provide.

    1. the query

    2. the table and index DDL

    3. the execution plan

    4 RowCounts for tables and query predicates

    5. the info on the stats: how you collected them and if they are up to date

    update
    CAPTURING set LAST_TASK_ID=
    CASE WHEN ((SELECT MAX(ID) from TEMP_SOAP_MONITORING) IS NULL) AND (LAST_TASK_ID  IS NULL)  THEN (SELECT MAX(ID) from SOAP_MONITORING@FONIC_RETAIL)
    WHEN (SELECT MAX(ID) from TEMP_SOAP_MONITORING) IS NULL THEN LAST_TASK_ID + 1
    ELSE (SELECT MAX(ID) from TEMP_SOAP_MONITORING) END,
    CAPTURING_DATE = CURRENT_TIMESTAMP, LAST_CAPTURED_DATE = LAST_CAPT_DATE where DB_TABLE='TEMP_SOAP_MONITORING';

    My guess is that TERRIBLE method of trying to get a 'LAST ID' is what's causing ALL your problems of performance. This method will not scale, and it will NOT properly work in a multiuser environment.

    You need create a good BATCH_CONTROL table that all processes use during the creation and execution of lots.

    The MASTER of the process batch:

    1 Gets a new BATCH_ID using a sequence

    2 locks the current row in the table control and uses / change the value "last".

    3 creates a new line in the control table for the new batch process

    4. the line of control to date with the start time, end time, result State, County, etc. for the batch

    Your likely PROBLEM of has NOTHING to do with the links of the db.

  • Webhelp from Rh 9 is the first default open book in the table of contents

    When generating 9 Robohelp webhelp, I find that the first book in the table of contents is by default open. It's an output generated from 9 hr property? If this isn't the case, please let me know the path for the parameters of this TOC.

    Help opens the default topic. If you have the TOC synchronized which is what most people prefer, the book is about this subject in will be opened. Move the default topic above the first book and you should get what you want.

    See www.grainge.org for creating tips and RoboHelp

    @petergrainge

  • No video and microphone when I open and close the laptop

    I have a Pavilion dv7 everytime I open and close my laptop to the camera and the microphone stops and it does not appear in Device Manager. It of like something is loose inside, this happened before its just out of warranty and how can it be solved?

    Thanks, I still have a warranty on the outside and I talked to them, so I'll send for repair. In the case of an ongoing problem I wish HP would recall and fix the problem.

  • Open and close the Popup with Javascript

    Using Apex 3.2

    I probably have done this lots of times in my old job, but do not have access to the code and now I can't work properly.

    I opened a window pop up with javascript
    Now, I need to close and refresh the calling page, but only if it ratifies the validation on the popup.
    I have an item hidden on my pop up called P7_FLAG.
    I have a process page after validation that affects P7_FLAG (only the value 1, if passes validation).
    I also have a "SUBMIT" button.

    So once I click my button "SUBMIT" page should look at validations, so ok, P7_FLAG the value 1, then close the popup and refresh the calling page.

    My current look of javascript like this
    <script type="text/javascript">
    function saveChanges(){
    doSubmit('SUBMIT');
    var test = $x('P7_FLAG').value;
    if(test == '1')
    {
    window.close();
    window.opener.doSubmit('REFRESH');
    }
    }
    </script>
    My button
    javascript:saveChanges();
    The problem is that I need to click twice on the button SUBMIT.
    First, it sets P7_FLAG
    Second time, it closes page and refreshes.

    I probably made a fundamental mistake, but today I can't.

    See you soon

    Gus

    Published by: Gus C 10 may 2012 12:48

    Sorry about that I was blind

    Add this function to your page

    
    

    Call this function on the loading of the page

    onload="onloadclose();"
    
  • AR 11 opens and closes the unexpectadly.

    I just downloaded AR 11 and every time I try to open a file PDF AR closes after a few seconds. I can't view any PDF file. My operating system is windows 7.

    You can try Windows Explorer, navigate to C:\Program Files (x 86) \Adobe\Reader 11.0\Reader, and then double-click Eula.exe and accept the license agreement

  • Why the menu bookmarks will remain sorted after that you sort and close the page?

    Newly added Favorites go to the bottom of the list. The page will sort from A to Z when we click on the sort icon... When you leave the page to sort and go back in the newly added bookmarks back not sorted to the bottom of the page.

    See also:

    Via the menu displays in the library to sort only shows bookmarks in the chosen sort order and constantly changing them (from where the name of views of this menu).

    By clicking on the header did the same thing.

    If you want to sort the bookmarks then you must right-click on a folder and use "Sort by name" to sort this issue.
    You cannot sort the individual bookmarks, only one folder can be sorted like this.

  • I have Photoshop elements 14. After that I have open and use it and close the program, I can NLE computer

    After that I open and use the editor of Photoshop elements 14 I have to rebot my computer to open the editor of Photoshop again.  I have a new computer with windows 10.  Help

    gerryc79215295 wrote:

    After that I open and use the editor of Photoshop elements 14 I have to rebot my computer to open the editor of Photoshop again. I have a new computer with windows 10. Help

    When you restart the computer, you mean "Restart" of the machine or do you want to say "shut down" and turn it back on to start.

    I ask this because in Windows reboot means restarting and you get this from the power button by selecting restart.  Also, in 10 Windows updates are required and they are installed without knowledge of the user but restarting does not automatically apply all the correctl patches; y. so if you restart the computer, we can eliminate this problem completely and move on to another test.

    The test another that I have is to reset the PSE14 preferences file, do you up the home screen then pressing 'CTRL + ALT + SHIFT' and clicking on the Button Editor.  This invites you to delete the preferences file before starting the editor.

  • Why are the table of contents will not appear when the project opened on the intranet?

    One of our projects RoboHelp 9 not open when the table of contents is open on the left.  It doesn't have a link that says 'Show', but the favorite opening would have the table of contents already developed.  All other projects pave the way.

    I have "Show Navigation pane link in topics" box on the settings WebHelp Navigation page. I adapted all webhelp settings to another project that opens correctly.

    What else can we do?

    Deanna

    Hmmm, the dialog box, the page that should open the WebHelp is actually named 'startpage.htm '. It would seem that it is the HTML page, you must link to the.

  • VI of hand stops fucntioning after as I open and close a Subvi to a structrue event.

    Hello

    I try to open a pop up vi of an event. I've been struggling with this for a while now. When I open a pop up vi and close it, the main vi stops correctly.

    I narrowed down it to the fact that the event that reminds the Subvi is never ending when the Subvi is closed.

    The attached picture is an example of what I'm doing. When I run the present, I never see the dialog box indicating "here.

    may be useful as an allusion to the problem...

    This does not work correctly if I run the vi, click to open the Subvi, close the Subvi (here the main vi is not working properly, do not click on anything whatsoever) then stop the main vi, run the main vi has even once, open and close the Subvi and then I see the dialog 'here '. , and my main vi works correctly.

    Thank you

    J

    What actually happens, is press you the Ok button and your panel closes and you set the stop 2 true.  OK, it's fine except that the stop Terminal 2 has already been read during this iteration of the loop.  So the loop will go again.  This time, it is read stop 2 to a REAL, but the structure of event needs an event before the loop can fill.  But the façade was already closed and you're stuck.

    As Dennis said, get rid of the 2 stop and just wire the TRUE constant straight out of the case of the event.  Wire a FALSE for all other cases of event.

  • How can I get the action to hide the table of contents to work as part of a conditional Action?

    GOAL: when a user takes the Quiz and fails, I wish they were able to get back underway and reviewing the materials before taking the quiz. As noted in other discussions, I have created actions advanced conditional and standard to achieve this:

    • Quiz results Slide Property executes the standard action "ResultsSlideVisitedAction", affecting a variable (AssessmentVisited) to 1, an indicator that the result slide has been visited.

    ResultsSlideVisited.PNG

    • If a user clicks the Retake Quiz button, instead of going to a "knowledge management", a quiz question classified early in the race with zero points, it goes to the first real quiz question. The slide to check knowledge runs the 'ExcludeKCAction', a conditional, looking to see if the result slide has been visited, which means that the quiz taken. If so, he jumps at the 1st question of the quiz slide.

    KCExclude.PNG

    • I changed my Quiz message fail to tell the user to click the button Retake (which works fine) or navigate using the table of contents to review topics and then resume the quiz. The problem with this is that if a user uses the table of contents and gets to go to the slide to verify the knowledge to conditional action, they are sent directly to the Quiz.
    • So, I took a different tact and decided to ask the user to use a "Back in the race" button to review the course and then resume the quiz. Because you cannot add buttons to the slide of results, I created an invisible button to reset the AssessmentVisited variable to 0, so when the GET to the verification of knowledge, they are not sent for the quiz. I did this by adding the image on a button, and then by superimposing an invisible rectangular shape on top of the button image. This allowed me to add advanced invisible form actions. It worked!
    • The last thing I want to do is to hide the table of contents, so there is no chance of the user to return without resetting the variable. I tried to add the action to hide the table of contents, but it doesn't seem to work. Is this possible?  I tried to move the TOC to hide as actions of 1st, 2nd and 3rd and sill does not. Here is a screenshot of the conditional action that runs when a user clicks on my return to the button a course:
    • ReturnToCourseCondition.PNG

    I appreciate any thoughts on a solution to hide the table of contents as well. Thank you.

    Hide the TOC works only for OCD in overlay, you use a table of contents separate?

    With respect to the Score slide buttons, you make it very complex, it is possible since version 6: buttons on Question/Score 6 Captivate Slides?-Captivate blog

Maybe you are looking for