Table of contents disable some modules?

Hi people.

I built a table of contents in Captivate 4, which I love.  I test, test review and case feedback student to show, but I don't want the learner must be able to get to these 3 modules of 8 at will.  Can I do this somehow?

Thank you

Rita

I made a small example of how to "lock" the slides using stocks advanced here: http://www.cpguru.com/2009/10/16/locking-content-in-adobe-captivate-4/

/ Michael

Visit my Captivate blog with tips & tricks, tutorials and widgets.

Tags: Adobe Captivate

Similar Questions

  • Is it possible to implement the sequences to browse to project with several tables of contents and conditionalized modules

    I use RoboHelp 9 with WebHelp output.

    I have five outings, which one contains help for common functions, while the other four contain help for modules under license. When a user opens a module under license assistance, the user sees the soul help and authorized assistance. In addition, the files are conditionalized so that the unauthorized search a help licensed module brings nothing.

    I have been solving problems with the previous topic and the next topic which, thanks William, I learned are associated with browse sequences. After having tried various configurations, I have a few questions:

    • HR support a sequence to travel alone in a project, even when the project has several outputs & fakes?
    • If HR supports a sequence to browse only, does that mean that there is no way to create a unique navigation for each separate output sequence?
    • If HR supports several sequences of travel, which is the workflow?

    I also maintain a table of 'master' contents which contains all the modules, frequent and without a license. What I've done for now is to autocreate a browse sequence based on the table of contents "master." When I generate the output of a module under license, which is conditionalized, I only see the table of contents for this module and, therefore, can only travel between books and subbooks for this add-on. I also checked that the subjects that do not appear in the module conditionalized as for another module licensed, do not appear in the list of search results either.

    Carol

    Me again, Carol

    You also questions about the functional differences between WebHelp and WebHelp Pro, so let me explain.

    I know only two major differences other than (the additional benefits of analytical feedback reports) and the management of 'Zones' with authentication in RoboHelp Server.

    1. The behavior of browse sequences as explained above
    2. The fact that the categories of content are not supported in WebHelp Pro for this latest version 9.

    In regards to sequences to browse you try to anticipate the various modules (licensed, etc.): multiple browse sequences are included in an single . File BRS. Sequences are defined in the XML code in the single file.

    As a solution (for WebHelp and WebHelp Pro), you could create a Help.brs of the NPM. that you have already created a module; then backup and archive. Then create a change for the different module before generating again. The Help.brs of the NPM. will need to have the same name as your project, so you will have to manage the .brs desired file in the project folder when you build this version. All your other choices (table of contents, Index, conditional tags, etc) remains the same for the respective modules.

    Finally, I notice that you generate apparently WebHelp Pro right now even if you are not published on the server of HR? This is really not the best practice. You must generate WebHelp plain for a web server that has no HR server on it (even if you can be getting away with it). Regarding your concern about "breaking" something; each output is placed in another! SSL! folder automatically when you build, so you should be able to generate WebHelp without interfering with the release of WebHelp Pro. Then, you can republish on the HR using WebHelp Pro Server, whenever the server is ready.

    John Daigle

    Adobe Certified RoboHelp and Captivate instructor

    Evergreen, Colorado

    www.showmethedemo.com

  • Create a table of contents in a module of captivate that navigates to other SCO

    How can I tell a link in a captivate SCO to go to a different SCHOOL? I know that I need this capability in the manifest of the code, but how do I include these instructions in the module itself? Fix a piece of code for the button contents telling him to open the new SCO and close the current SCO? Is there a tip action to do this, or do I have to call some Javascript?

    I know it's a big question, so a push in the right direction is appreciated.

    Which allows the SCORM 2004 standard and a particular LMS taken in charge are two different things.  If any LMS supports SCORM standard all my bet would be with SCORM cloud.  But YOU would still need to know how to encode the file imsmanifest.xml with the correct rules.  It is not as simple as most people want to (which is a big reason why SCORM is now slowly replaced by Tin can.)

  • A button next to a table of content coding buttons table

    I have a movieclip buttons table which is a table of contents for a module. I use a loop function to maintain their downward when clicked. All event listeners for each heading in the table of contents are encoded outside the loop, and each of them load an external swf file (in a table). I also have 'previous' and 'next' buttons that advance loading external swf files, but I also want the table of buttons to move forward and to highlight the next section. How to move the button outside its loop function table? I appreciate any idea.

    var buttonsArray:Array = [toc_mc.intro_mc, toc_mc.gen_mc, toc_mc.dist_mc, toc_mc.hered_mc, toc_mc.one_mc, toc_mc.two_mc, toc_mc.anim_mc, toc_mc.three_mc, toc_mc.four_mc, toc_mc.five_mc, toc_mc.six_mc, toc_mc.seven_m c, toc_mc.sevenB_mc, toc_mc.sevenC_mc, toc_mc.eight_mc, toc_mc.therapy_mc, toc_mc.therapyB_mc, t oc_mc.nine_mc, toc_mc.ten_mc];
    var i: int;
    function setButtons (): void {}
    for (i = 0; i < buttonsArray.length; i ++) {}

    buttonsArray [i] user.user = i;
    buttonsArray [i] .buttonMode = true;
    buttonsArray [i] .mouseChildren = false;
    buttonsArray [i] .mouseEnabled = true;
    buttonsArray [i] .addEventListener (MouseEvent.ROLL_OVER, playOver);
    buttonsArray [i] .addEventListener (MouseEvent.ROLL_OUT, playOut);
    buttonsArray [i] .addEventListener (MouseEvent.CLICK, doClick);
    }
    }

    function playOver(event:MouseEvent):void {}
    event.currentTarget.gotoAndStop (2);
    }

    function playOut(event:MouseEvent):void {}
    event.currentTarget.gotoAndStop (1);
    }

    function doClick(event:MouseEvent):void {}
    var currentBtn:int = event.currentTarget.id;
    setSelectedBtn (currentBtn);
    }
    function setSelectedBtn(id:int):void {}
    for (var i: int = 0; i < buttonsArray.length; i ++) {}
    If (id == i) {}
    buttonsArray [i] .gotoAndStop (3);
    buttonsArray [i] .buttonMode = false;
    buttonsArray [i] .mouseEnabled = false;
    buttonsArray [i] .removeEventListener (MouseEvent.ROLL_OVER, playOver);
    buttonsArray [i] .removeEventListener (MouseEvent.ROLL_OUT, playOut);
    buttonsArray [i] .removeEventListener (MouseEvent.CLICK, doClick);
    } else {}
    If (.currentFrame buttonsArray [i] == 3) {}
    buttonsArray [i] .gotoAndStop (1);
    }
    buttonsArray [i] .buttonMode = true;
    buttonsArray [i] .mouseEnabled = true;
    buttonsArray [i] .addEventListener (MouseEvent.ROLL_OVER, playOver);
    buttonsArray [i] .addEventListener (MouseEvent.ROLL_OUT, playOut);
    buttonsArray [i] .addEventListener (MouseEvent.CLICK, doClick);
    }
    }
    }

    setButtons();

    medPlay_mc.prev_btn.addEventListener (MouseEvent.CLICK, prev_onClick);

    medPlay_mc.next_btn.addEventListener (MouseEvent.CLICK, next_onClick);

    function next_onClick(event:MouseEvent):void {}


    current index refers to the table of swf file

    currentIndex ++;
    removeChild (loader);
    modBan_mc.visible = false;
    If (currentIndex > urlArray.length - 1) {}
    currentIndex = 0;
    }
    Loader.Load (new URLRequest (urlArray [currentIndex]));
    addChild (loader);
    addChild (toc_mc);
    addChild (medPlay_mc);
    }


    function prev_onClick(event:MouseEvent):void {}
    currentIndex-;
    removeChild (loader);
    If (currentIndex < 0) {}
    currentIndex = urlArray.length - 1;
    }
    Loader.Load (new URLRequest (urlArray [currentIndex]));
    addChild (loader);
    addChild (toc_mc);
    addChild (medPlay_mc);
    }

    use:

    var buttonsArray:Array = [toc_mc.intro_mc, toc_mc.gen_mc, toc_mc.dist_mc, toc_mc.hered_mc, toc_mc. one_mc, toc_mc.two_mc, toc_mc.anim_mc, toc_mc.three_mc, toc_mc.four_mc, OCD _mc.five_mc, toc_mc.six_mc, toc_mc.seven_mc, toc_mc.sevenB_mc, toc_mc.seve, nC_mc, toc_mc.eight_mc, toc_mc.therapy_mc, toc_mc.therapyB_mc, toc_mc.nine _mc, toc_mc.ten_mc];
    var i: int;
    function setButtons (): void {}
    for (i = 0; i
     
    buttonsArray [i] user.user = i;
    buttonsArray [i] .buttonMode = true;
    buttonsArray [i] .mouseChildren = false;
    buttonsArray [i] .mouseEnabled = true;
    buttonsArray [i] .addEventListener (MouseEvent.ROLL_OVER, playOver);
    buttonsArray [i] .addEventListener (MouseEvent.ROLL_OUT, playOut);
    buttonsArray [i] .addEventListener (MouseEvent.CLICK, doClick);
    }
    }

    function playOver(event:MouseEvent):void {}
    event.currentTarget.gotoAndStop (2);
    }

    function playOut(event:MouseEvent):void {}
    event.currentTarget.gotoAndStop (1);
    }

    function doClick(event:MouseEvent):void {}
    var currentBtn:int = event.currentTarget.id;
    setSelectedBtn (currentBtn);
    }
    function setSelectedBtn(id:int):void {}

    loadF (id);

    for (var i: int = 0; i< buttonsarray.length;="" i++)="">
    If (id == i) {}
    buttonsArray [i] .gotoAndStop (3);
    buttonsArray [i] .buttonMode = false;
    buttonsArray [i] .mouseEnabled = false;
    buttonsArray [i] .removeEventListener (MouseEvent.ROLL_OVER, playOver);
    buttonsArray [i] .removeEventListener (MouseEvent.ROLL_OUT, playOut);
    buttonsArray [i] .removeEventListener (MouseEvent.CLICK, doClick);
    } else {}
    If (.currentFrame buttonsArray [i] == 3) {}
    buttonsArray [i] .gotoAndStop (1);
    }
    buttonsArray [i] .buttonMode = true;
    buttonsArray [i] .mouseEnabled = true;
    buttonsArray [i] .addEventListener (MouseEvent.ROLL_OVER, playOver);
    buttonsArray [i] .addEventListener (MouseEvent.ROLL_OUT, playOut);
    buttonsArray [i] .addEventListener (MouseEvent.CLICK, doClick);
    }
    }
    }

    setButtons();

    medPlay_mc.prev_btn.addEventListener (MouseEvent.CLICK, prev_onClick);

    medPlay_mc.next_btn.addEventListener (MouseEvent.CLICK, next_onClick);

    function next_onClick(event:MouseEvent):void {}

    current index refers to the table of swf file

    currentIndex ++;
    removeChild (loader);
    modBan_mc.visible = false;
    If (currentIndex > urlArray.length - 1) {}
    currentIndex = 0;
    }
    loadF (currentIndex);

    setSelectedBtn (currentIndex);

    }

    function prev_onClick(event:MouseEvent):void {}
    currentIndex-;
    removeChild (loader);
    If (currentIndex< 0)="">
    currentIndex = urlArray.length - 1;
    }
    loadF (currentIndex);

    setSelectedBtn (currentIndex);

    }

    function loadF(i:int):void {}

    Loader.Load (new URLRequest (urlArray [i]));

    addChild (loader);

    addChild (toc_mc);

    addChild (medPlay_mc);

    }

  • Problems tab layout form/Leader TOC (table of contents)

    BACKGROUND

    I found it impossible to the TOC format with Chief tabs as I've seen the procedure described in the many forum posts, books and elswehere. I am an intermediate user of FrameMaker 9 FM running on Windows XP Pro. I run the same setup on a House and office with the same problem machine.

    I am in the process of migration of large volumes of documentation of our company LaTek to FM and this issue proves to be insurmountable. I need to have complete control over this process, instead of "make do" with the default TOC.

    I spent three days studying the nuances of the issue, which usually leads me to some insight or model that allows me to solve the problem, or at least share some clues on the forums. However, in this case, FM either does not work like its supposed to, or it implements my changes of apparently arbitrarily. So I don't know if it's a bug or a user error. I have also experienced the occasional crash of FM during all this work, often it is preceded by the designer of paragraph gel window and refusing to change your mind within the window (basic, by default, etc.).

    THE PROBLEM

    Specifically, I have learned to manage the General formatting with the blocks of construction on the page "reference", but the Chief tabs I use for the page numbers almost never spread, unless I use the TOC example included with FM.

    I am sure that they are properly formatted, I even copied examples directly from files that I know (example FM files) work.

    When I manually implement the process, I insert the tab between the blocks of construction (without space), define a RAS right tab, double click on and choose tab Manager option. Then I go to view 'page of body', save the document and regenerate the table of contents. Generally, nothing happens. Occasionally, after regeneration several times or by creating a table of contents fresh, some of the changes magically spread.

    I even tried to import the format of another table of contents, which doesn't seem to work randomly. Especially not.

    Any help is appreciated.

    Thank you

    Douglas

    You have set your tab outside the text frame (x6.25 ""). The maximum setting is only 4,625 ". The tab stops are within the context of the text block, not by the value of the leaders on the top.

  • Can someone just list all the reasons that may explain why some elements will not be displayed in a table of contents?

    Extremely frustrating. I've set up a catalogue, all the section headers I want to appear in the table of contents are tagged with the same paragraph style, but he simply refuses to include some of them - after a certain point in the book. I looked at all that I can think of to try to see what is different about these elements - and nothing. I have searched forums, cannot find a response - perhaps because it is a general question. But there are several reasons why for example the Annotator gradient may not appear in artificial intelligence (another thing that drove me crazy)... hoping someone similarly list the main factors that can break a table of contents, and I hope that my answer will be there somewhere.

    Nothing wrong with Win 7 (my OS of choice).

    This seems very unlikely in your case, but check to make sure that you have not the multiple styles with the same name in the groups of style or with capital letter.  You might want to try this, too: remove minor corruption by exporting

  • Is Acrobat Pro just for us. We have an employee handbook that needs editing. A part is current pdf, some of an earlier version. You want to get all in a manual, the table of contents automatically adjust and links to specific pages of the table of content

    Is Acrobat Pro just for us. We have an employee handbook that needs editing. A part is current pdf, some of an earlier version. You want to get all in a manual, the table of contents automatically adjust and links to specific pages of the table of contents.

    Acrobat Pro is certainly not the right tool for editing. You want to change the manual using the source - MS Word files for example. Once you have the full changes including OCD work as you want, Acrobat Pro is the tool to convert the source document to PDF format, and ensure the accessibility requirements of 508 - and preferably ISO 14289 (PDF/UA) - are met.

  • some links to external topics show a second table of contents

    It seems that when I click on a hyperlink to an external subject, the newly displayed section also displays it's own table of contents.  The parent TOC project is displayed, but then directly to the right of this, child OCD appears:

    2 tocs.jpg

    The table of contents left are my parent, the operating system just childhood OCD project, most right is the main subject of child project page (which is correct).

    How can I implement the projects so that the child TOC does not appear when you use hyperlinks to navigate between projects of the children?

    Thanks in advance.

    Jim

    using Robohelp HTML, RH8

    It is usually because you are linking to the homepage rather than the default theme.

    See www.grainge.org for creating tips and RoboHelp

    @petergrainge

  • Bars, tables of contents and ramifications

    I create my first module branching Captivate 8 and I have a few questions...

    1. Is it possible to have separate tables of contents for each branch?
    2. Is there a way to disable the reading and TOC bar on some pages only?

    Thanks in advance.


    Michael

    If you want a separate table of contents, you will need to create it yourself, which is not possible with the normal TOC of Captivate. You can hide slides in the TOC, you can group slides and even build on several levels, but that's all.

    Yes, you can lock the table of contents, there is already a variable system that you think still has the command Lock table of contents in the list. It is not possible to lock or disable the PlayBar, you can hide it on some slides. Use the event to enter the slide, both for the blocking of OCD or hide PlayBar... You can also hide the table of contents if you want, but this is only possible if the table of contents are overlaid.

  • Sensitive HTML5 seems to be the construction of a table of contents with a "bc-#" at the end of the favorite locations leading to failure. Can this be avoided?

    RoboHelp11 generates a table of contents where the places of the xxxx.htm #aaa of the form have a bc '-' and a final number added.  In the same place that a link in the text does not.

    No doubt there are some settings that causes this.  How can I disable this addition?

    What is the fault you are experiencing?

    The #bc-# are added when a subject is used repeatedly in the table of contents. HR uses this fact to know what breadcrumbs that they must. To avoid this, use excerpts rather than add the topic to the table of contents, several times.

    Kind regards

    Willam

  • Is it possible to have multiple tables of contents in webhelp output that can be chosen according to the role of the user/client?

    Our product is composed of several modules, for example, the modules-1 thru 8 - module.  We sold all 8 modules or some of them - in different combinations to different customers. I've developed help online in the same direction, that is, in the modules, help-1 to ' help-8. Each help module has its own table of contents.  According to the requirement for a particular client, I integrate the required modules, build the main table of contents using the mini-table of existing materials for each assistance, generate the sequence to browse and compile. This has been my routine until now.

    Now, the product development team would like to automate this process: for example, they want to give me the help of output for the 8 modules in integrated form, as well as tables of contents separate for a combination of different modules for different customers like, assistance, modules 1 to 8, 1-2-3, 1-5-6, etc..  They feel the moment this TOC fell in the output of aid, it should automatically start functioning - without compiling!

    I explained the process used to develop Robohelp projects, how TOCs are built, etc., but they want to know if there is a work around, so that when a customer asks for modules 3, 7 and 8, immediately, they can go down the table of contents (for 3-7-8) at the end of the project, and it should work - without compiling , or anything of that kind. I tried Google and Adobe Forum, but couldn't find something suitable.

    Do you have a solution? A solution to this problem?

    What you need is merged help.

    You generate a parent and all the child projects. You always install the parent and then any child projects, you need. OCD, search and index adjusts automatically. See the pages on my site.

    Note, however, that many people take another view for the development of your product. See all assistance and people then view information about something and realize that they need!

    See www.grainge.org for creating tips and RoboHelp

    @petergrainge

  • Add text to the table of contents or the skin

    Hello

    I want to add text to the table of contents that shows all the time (is not clickable).  Is it possible to display some text of infomration on the bar of navigation/table of contents?

    Or is it possible to add it to a skin it will appear at the bottom of the screen?

    Any help would be appreciated.

    Thank you!

    Hi Julie,.

    You can try the project--> TOC--> Info it will open a dialog box where you can enter information about your organization, as well as a logo.

    In addition, if you wish, you can change a TOC and their default legend items.

    To do this, close Captivate.

    Open Notepad-

    Paste below-

    [TOCStrings]

    SlideTitle = Module name

    Time = time

    Status = status

    MoreInfo = my info

    Clear = Wipe

    ClearToolTip = State of Wipe

    BookMarkToolTip = book-marking

    NoSearch = String not found

    CurrTime = what

    ---------------------------------------

    Save it as TOCStrings.ini

    and place this file in the location of the Adobe Captivate installation on your machine.

    Now launch and add a table of contents to the Porject and preview or publish and see the change.

    Thank you

    Anjaneai

  • Table of contents &amp; sections completed

    Hi all, just generally looking for some advice here.

    I develop some e-learning.  For now, assume that there are no quiz items in e-learning.  It's a bit linear e-learning, the user must read the information on each slide, click Next, go to the next slide, etc., and so on.  Assume that the e-learning module essentially contains four sections (call Introduction, Learn, Try and Conclusion).  FYI, e-learning will take place in the Cornerstone OnDemand LMS.

    I want users to have a Visual indicator that shows that they have achieved each of the sections.  I realize account I could use the Table of contents to show this to a certain extent and that is explored in method 2, but I would like your opinion on method 1:

    Method 1:  I would like to e-learning to launch on a Homepage blade I would create, which contains links to the four sections: Introduction, learn, try and Conclusion.  The user completes each section, he was invited to return to the slide of the House.  Whenever they form a section and return to the slide of the House, I would like to a green check mark to appear next to each completed section to indicate that they have made this article.  It is important that the user is able to log out of e-learning and back and that already completed sections still see the completed (indicated by the green check mark).  I guess I would need to use some sort of advanced actions.  Is it still possible in Captivate?

    Method 2:  I realize that I could use the Table of contents and that might just be simpler.  However, I prefer the method described in method 1, because I have much better control over the content.  However, if I use the table of contents, I would like to know the best way to show the State of implementation of the section.  I know that I have to group the slides in a folder in the table of contents, if for example I could group slides 2-10 in the case of Presentation , slides 11-20 in the record learning , slide 21-30 in the folder try and slides 31-40 in the folder of the Conclusion , however each once each article is completed by the user (normally indicated in the table of materials by a check mark green) It is not shown as complete in the table of contents.  The reason for this, is that I want the user to be able to view the article in the table of contents, but not the individual slides, and it appears a section appears only as finished in the table of contents if I show one or more slidesin of this article.  Is there a way to get around this limitation?

    I largely prefer to explore method 1 and method 2 is certainly viable if I can overcome the above restriction.

    I develop in Captivate 4 and Captivate 5 - I prefer Cp4, but happy to come back to Cp5 so is there any solution.  Thanks to everyone for all the advice!

    Hello

    Maybe my blog can help you? I offer a free model as well (it's for CP5), provided that you send me an email address (can be done via private message):

    Model for reuse the script

    Lilybiri

  • How can I display the table of contents for the iPod Touch to 6

    When I opened first of all iPod Touch Users' Guide, I used the table of contents (TOC) to locate and access sections in the manual. But, after looking through the manual for awhile, I tried to return to the table of contents, but it wasn't there! I have tried various things to see if the table of contents are being hidden, or if in some way, it has been deleted. Anyone can shed light on this mysterious event?

    What is the version of iBooks that you speak? There is an online version here: https://help.apple.com/ipod-touch/9/ Aha, I see the table of contents on the left disappears if you zoom before or make the narrow window and reappears if zoom you out or make it larger.

    TT2

  • Changing the font styles in the table of contents usingpages 5.6.2

    Hello

    I am writing a scientific assignment and I have some titles that contain italic characters such as: Importance of Bacillus cereus

    When I create a table of contents, these italics seem to disappear and I can't do these italics without making the entire table italic material - that is not what I want.

    I also have the same problem with the degrees symbol which is great script in my titles, but appears as '0' in the table of contents.

    Can anyone help please?

    Thank you!

    When you build a Table of contents, Pages v5.6.2 uses a brush regular Helvetica on all text in the generated TOC. He made his farewell to all the attributes of fonts can set up for your titles and headings. We can not selectively reapply text attributes to a part of a table of contents entry.

    If I use the degree symbol in the title or the title paragraph style, she survives as baseline Exhibitor in the generated table of contents. My degree symbol is entered as shift + option + 8 (on a U.S. keyboard).

Maybe you are looking for