SEARCH function in Adobe Captivate 8 so that the user can search key words within a project?

Hi, I am wondering if there is a way to implement a SEARCH function in Adobe Captivate 8 so that the user can search key words within a project?

Hello again
Click the slide in the film strip, then examine the properties. You name the slide in the properties. And once you name it, the name should appear below the slide in the film strip, Then when you choose to enable the TOC, what you have there pulls in as shown below:
If you have already constructed your TOC and wish to change this later, repeat the steps of naming the slides. Then click the Reset TOC icon just above the Settings button in the TOC section of the Skin editor to pull in the new names.
Cheers... Rick

Similar Messages

  • In javascript, how do I open a dialog so that the user can input the value of a variable?

    I'm working on a script that will be used for many images, all of them using the same format (size of the image, layer layout, etc).
    All of these images will have a layer of text, and what I want is to have the script modify the horizontal length of the text layer (horizontal percentage scale), shrinking it so that all of the text appears on-screen, in case there's too much of it.
    But the text will vary from image to image, and what I want is for the script to display a dialog box were the user can input the text that will be put on the text layer and scaled down.
    Can this be done?

    If you want the user to both enter then fit the text while your script is running, here is one way to do that.
    var typeLayer = activeDocument.activeLayer;
    var type = typeLayer.textItem;
    var t = prompt ("Enter text" , "new text");
    type.contents= t;
    transformLayer();
    function transformLayer() {
         try{
         var desc = new ActionDescriptor();
            var ref = new ActionReference();
            ref.putEnumerated( charIDToTypeID('Lyr '), charIDToTypeID('Ordn'), charIDToTypeID('Trgt') );
        desc.putReference( charIDToTypeID('null'), ref );
        desc.putEnumerated( charIDToTypeID('FTcs'), charIDToTypeID('QCSt'), charIDToTypeID('Qcsa') );
            var desc1 = new ActionDescriptor();
            desc1.putUnitDouble( charIDToTypeID('Hrzn'), charIDToTypeID('#Rlt'), 0.000000 );
            desc1.putUnitDouble( charIDToTypeID('Vrtc'), charIDToTypeID('#Rlt'), 0.000000 );
        desc.putObject( charIDToTypeID('Ofst'), charIDToTypeID('Ofst'), desc1 );
        desc.putUnitDouble( charIDToTypeID('Wdth'), charIDToTypeID('#Prc'), 100 );
        desc.putUnitDouble( charIDToTypeID('Hght'), charIDToTypeID('#Prc'), 100 );
        desc.putBoolean( charIDToTypeID('Lnkd'), true );
        executeAction( charIDToTypeID('Trnf'), desc, DialogModes.ALL );
         }catch(e){}

  • Oracle apps are producing XML output in the C Mgrs that the user can't read

    Hi all,
    please help on the below issue.
    Oracle apps (AP & others) are producing XML output in the Concurrent Managers that the user cannot read. There are two flavors, as an error message: The XML page cannot be displayed Cannot view XML input using XSL style
    sheet.
    The following tags were not closed: XLAACCPB, LIST_APPLICATION. Error processing resource ''https://xxxxxxxxxxxxxxx... as well as the XML text itself: - 200 Payables 200 Payables Y 1 xxxx US EXPENSE GL 2011-07-15T00:00:00.000+00:00 N No Y Y N D No Detail Y Yes Y N No - - 200 Payables - - 95293 The journal import request 39073188 has failed for the ledger xxxx US EXPENSE GL.
    Thanks in advance
    Kumar

    please help on the below issue.Please post the details of the application release, database version and OS.
    Oracle apps (AP & others) are producing XML output in the Concurrent Managers that the user cannot read. There are two flavors, as an error message: The XML page cannot be displayed Cannot view XML input using XSL style sheet. What is the exact/complete error message?
    Please check the OPP log file for details about the error.
    Troubleshooting Oracle XML Publisher For The Oracle E-Business Suite [ID 364547.1]
    Unable to Display XML Page - "Cannot view XML input using XSL style sheet" [ID 730610.1]
    Unable To Review XML Output From Application : "Cannot view XML input using XSL style sheet" [ID 437749.1]
    Thanks,
    Hussein

  • How do I disable the paste function on a PDF so that the reader can write text on it but not copy and paste text onto it?

    I'm trying to create a PDF for my students to take notes on during class but I don't want them to be able to copy and paste the notes. I'm using adobe professional to create the PDF.

    Why do you want to prevent copy and paste? They can take screen shots of the pdf if they are real insistent? If you password protect your file, to prevent copy and paste, but that is trivial to circumvent. You can convert your pdf to tiff and then re-import, the resulting file will be an image pdf file.The contents will be an image which doesn’t prevent copy and paste, will prevent it being done as text.

  • Is there any way to embed the pdf file in the book created in iBooks Author to make it available to be downloaded or sent to email? So that the user can print it out.

    Is there any way to embed the pdf file in the book created in iBooks Author to make it available to be downloaded or sent to email?
    I'm making the book for children and there is one chapter providing coloring pages. So I wish to attach pdf files that allow users to download it at the end of chapter so that  they can print it out. Been searching through discussion, I've found some advice about taking screen snapshot page-by-page > then send the pics from photo album to email. However, I'm wondering if there's a way that make the process easier.

    Warehouse that PDF on your own server, then link to it from your book.
    Ken

  • I want to go to firefox 30.0, but that should be put completely fixed so that the user can't modify anything

    Hi,
    In our business, we use firefox currently version 19, that is complete modified version. All uswers cant modify settings to prevent problems. We want to update Firefox but we need modified version. Is there a modified version for our needs?
    kind regards
    Mike

    Sorry, Mozilla doesn't have customized builds for institutional use.
    FrontMotion does MSI builds for mass installations.
    http://frontmotion.com/Firefox/index.htm
    Or your IT dept can build their own using CCK2 Wizard.
    https://addons.mozilla.org/en-US/firefox/addon/cck2wizard/
    http://mike.kaply.com/

  • How to verify that the user has changed table row data before db update

    Hi all,
    Iam using Oracle ADF with EJBs.
    I have a single selection table that displays rows of data returned from a function of my data control.
    The columns of my table are editable so that the user can change the data. The user selects a row, changes the data in one or more columns of the row and saves the data by means of a submit button. The code in the submit button, identifies the row of the corresponding iterator that the user clicked on and updates the data in the database (using the 'mergeEntity' function of the EntityManager)
    Before saving the data, I want to put some logic to check whether the user has actually changed some data to avoid unnecessary updates in the database . But for this I need a technique to detect that the user has indeed changed some data in the table row.
    One technique I have been using so far was to isolate the iterator row of the table and then query the corresponding row in the database table and compare their values.
    Except from dummy, this technique is not efficient if the table contains many rows.
    Moreover, in my case I have observed that on successive updates on the same row , the query on the database returns the new values (user changed values) and not the actual values contained in the database table. This means that when the user updates an iterator row the cached data affect also the results of the SELECT statement from the actual database table!!! Isn't this strange ?
    Can somebody propose me a neat method to detect when the user has changed the the data of an iterator row ?

    Hey Alan,
    The below solution seems overly complicated to me and can not be implemented without a custom screen and/or the use of JavaScript. Also, if your main concern is that a user may accidentally loose all their data because they closed the browser window or the session times out before they hit the save button then this solution does not help you.
    There are a couple of simpler approaches you can take here:
    # If the use of JavaScript is permissible you can hook into the windows 'onUnload' event, and pop-up a message box which gives the user the opportunity to cancel closing the window and save their case if they haven't already.
    # Implement an autosave feature by hooking into one of events provided by web determinations. A simple (but rather naive) way of doing this would be to hook into the OnRenderScreenEvent and call save on the interview session every time the event fires. This guarantees that all the data the user has submitted will aways automatically be saved, thereby removing the need to make sure the user manually saves their data before closing the browser.
    Automatically making Web Determinations close a browser window has to be done using JavaScript. However, doing so means that a) it won't work for people who turn off JavaScript, which is commonly done for accessibility reasons b) you'll likely run afoul of the browser's security mechanism (they generally won't let you close a window that you didn't open and some really don't like you doing that at all).
    Thanks,
    Kristy

  • How do i put a loop round this so the user can only enter a number between

    how do i put a loop round this so that the user can only enter a number between 1 and 3 if a number like 4 is enter it will just say something like retry
    if (CA.trim().equals(ans1)){
    Out = "incorrect";
    else if(CA.trim().equals(ans2)){
    Out = "incorrect";
    else if(CA.trim().equals(ans3)){
    Out = "correct";
    else{
    System.out.println("Enter 1 2 or 3 try doin test again");
    System.out.println(Out);
    byte b[] = Out.getBytes();
    out1.write(b);

    You already know the conditions so here's some pseudocode.
    get input
    while(input is not what I want (between one and three))
            Inform user of improper input and ask for it again
            get new input

  • Wordware Publishing, Inc. announces the release of Adobe Captivate 3.0: The Definitive Guide

    Wordware Publishing, Inc. is pleased to announce the release
    of
    Adobe Captivate 3.0: The Definitive Guide by Brenda
    Huettner. Here's the description from the back cover:
    Adobe Captivate 3: The Definitive Guide, the follow-up to
    Wordware’s popular
    Macromedia Captivate: The Definitive Guide, steps you
    through all the procedures needed to create Flash movies based on
    any software on your desktop. You’ll learn how to create
    Flash movies, edit individual screens, add and edit sound, even add
    interactivity (with or without grading) for complete customization.
    The expanded e-learning chapter in this edition discusses a variety
    of ways to build quizzing functions with individual questions and
    question pools. A chapter on branching shows how to move slide
    elements on a visual display, and how to create paths through a
    movie that give each viewer a unique experience. This book covers
    everything from getting the software installed and activated,
    manipulating the movie files, adding and editing audio, and
    building quizzes, all the way to delivery mechanisms of the final
    output and integrating your movies with other applications.
    With this book, learn to:
    * Install and configure Captivate.
    * Create and edit movies.
    * Add, delete, edit, and rearrange slides.
    * Incorporate audio and interactivity in your movies.
    * Create e-learning content through the use of question
    slides and branching functions.
    * Use a variety of Captivate tools including templates and
    MenuBuilder.
    Brenda Huettner is a technical writer, author, speaker, and
    consultant with more than 20 years of experience in the technical
    communication field. She has written manuals, Help systems,
    procedures, proposals, and training materials for a variety of
    corporate clients, authored Macromedia Captivate: The Definitive
    Guide and co-authored
    RoboHelp for the Web and
    Managing Virtual Teams from Wordware Publishing. She is a
    Fellow of the Society for Technical Communication, a member of the
    IEEE Professional Communication Society, and a member of the
    Usability Professionals Association. Brenda is a regular presenter
    at conferences across the country where she speaks on
    documentation, management, and career issues.
    Wordware is offering all Adobe forum members a special
    disount of
    35% off the list price when purchased through our shopping
    cart at
    www.wordware.com. Just enter the
    coupon code
    capt0497 when ordering. As a special bonus, the discount is
    good for all titles on our site and includes free freight for
    readers in the continental U.S.
    Thanks and enjoy the book,
    Tim McEvoy
    Wordware Publishing, Inc.

    Wordware has the book in stock right now and orders placed
    before 3pm CST (we're in the Dallas, TX area) go out same day.
    Orders placed over the weekend will go out on Monday.
    Please let me know if you have any other questions.
    - Tim
    Wordware Publishing, Inc.

  • Is there search function just limit itself to just the bookmarks section only

    Is there a search function just limit itself to just the bookmarks section only and not search through the entire document?

    Hi jchua77,
    This feature is not there in Acrobat software.
    You can fill out the wish form to request one : https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • Cant open PDF files..It says the adobe acrobat reader that is running can not be used to view files in a browser..plz suggest the solution.thanks

    Whenever i try to open a PDF file it says " The adobe/acrobar reader that is running can not be used to view files in a web browser. Plz exit adobe/acrobat readerand exit your web browser and try again." Wt do i need to do, plz suggest.
    Regards
    Aditya Bhargava

    Hi adityabhargava01-
    My first suggestion is to upgrade to the most recent version of Firefox by going to this link:
    http://www.mozilla.org/en-US/firefox/new/
    My second suggestion is to read this article on how to many your preferences on how Firefox deals with PDFs and all other file types:
    [[Options window - Applications panel]]
    I hope that helps!

  • Acrobat plug-in. I get this when try to opem. The Adobe Acrobat/Reader that is running can not be used to view PDF files in a Web Browser. Please exit Adobe Acrobat/Reader and exit your Web Browser and try again. Don't problems w/ Internet Explorer-

    Acrobat plug-in.
    The Adobe Acrobat/Reader that is running can not be used to view PDF files in a Web Browser.
    Please exit Adobe Acrobat/Reader and exit your Web Browser and try again.

    See if you can find a NPPDF32.DLL files in the Firefox program folder (C:\Program Files\Mozilla Firefox\)
    You can see the installed plugins on the about:plugins page.
    * http://kb.mozillazine.org/about%3Aplugins
    You can set the pref plugin.expose_full_path to true on the about:config page to see the full path of plugins on the about:plugins page.
    It is best not to leave that pref set to true as it exposes that full path to web servers, so reset that pref to false after you are done with the about:plugins page.
    You can open about:plugins and about:config via the location bar, like you open a website (about: is a special protocol to access some build-in pages).
    If you get a warning when opening the about:config page then you can confirm that you want to continue.
    See Manually uninstalling a plugin:
    * https://support.mozilla.com/kb/Troubleshooting+plugins

  • Cant open pdf file ..it says....the adobe/acrobat reader that is running can not be used to view PDF files in a web browser. please exit adobe/acrobat reader and exit your web brouser and try again

    cant open pdf file ..it says....The adobe/acrobat reader that is running can not be used to view PDF files in a web browser. please exit adobe/acrobat reader and exit your web browser and try again

    -> [[Troubleshooting extensions and themes]]
    -> Clear Cookies & Cache
    * https://support.mozilla.com/en-US/kb/Template:clearCookiesCache
    -> [[How to clear the cache#w_clear-the-cache|Clear the Network Cache]]
    '''Plugins Updates'''
    Your Flash plugin is quite older. You need to update it.
    * Adobe Flash Player 11.0.1.152 (3.59 MB)
    * http://get.adobe.com/flashplayer/
    Your Java plugin is quite older. You need to update it.
    * Java Version 6 Update 29
    * http://java.com/en/download/index.jsp
    * [[Using the Java plugin with Firefox]]
    -> Update All your Firefox Plugins
    * https://www-dev.allizom.org/en-US/plugincheck/
    * http://www.mozilla.com/en-US/plugincheck/
    '''When Downloading Plugins Update setup files, Remove Checkmark from Downloading other Optional Softwares with your Plugins (e.g. Toolbars, McAfee, Google Chrome, etc.)'''
    Check and tell if its working.

  • The Adobe Acrobat/Reader that is running can not be used to view PDF files in a Web Browser. Please exit Adobe Acrobat/Reader and exit your Web Browser and try again.OK. I followed the instruction and the problem still persists.

    I got the following pop-up when I tried to open an online PDF file:
    The Adobe Acrobat/Reader that is running can not be used to view PDF files in a Web Browser.
    Please exit Adobe Acrobat/Reader and exit your Web Browser and try again.
    I tried many time, and it really doesn't work.
    The plug-in I have is Adobe Acrobat 8.3.0.280

    After I upgraded to Firefox 5, I had the same problem and I did a work around temporarily. I went the tools menu, then Add-ons, then clicked the "Plugins" on the left side (4th one down). I "disabled" both Adobe Acrobat 8.3.0.280 and Adobe Acrobat 10.1.0.536 using the disable buttons on the right side. PDF files now open again. However they are outside the actual browser.
    My guess is that Adobe didn't catch up yet with a new update to work with Firefox or vice versa.
    Hope that helps!
    Michael

  • During installation of Adobe Photoshop Lightroom 4 the program is searching for msvr100.dll which is not available in windows 7 files. What to do?

    During installation from DVD of Adobe Photoshop Lightroom 4 the program is searching for msvr100.dll which is not available in my Windows 7 files. What to do?

    This provides those files Error "Unable to start correctly - 0Xc00007b"

Maybe you are looking for

  • Index of the row created in webdynpro for ABAP

    hi experts , i got a problem tht , i hve a table and i am using the onaction enter . so wen i created a new row and press entr on tht i want to read the index of tht row . so pl help in this . thanks in advance  . its urjent ... setu

  • Cant get new ipod to download songs from my itunes

    Hello, I have just gotten back a 3rd replaced ipod. the previous 2 were stuck with the exclamation icon folder when i connected to my computer to download songs from itunes, and i tried everything but cd not restore them. I no have a new one and am a

  • CRM BP Identification number entries (Identification tab) from CRM to ECC

    Hi, I have a requirement to map the CRM BP Identification number entries (under Identification tab) from CRM to ECC alongwith BP flow from CRM to ECC. 1. Is it mapped by standard framework and do we have any view in ECC customer master to display the

  • AFP Graphics

    When using AFP we are seeing over 69,000 different images in one print file which seems excessive especially since the images should be re-used. Does the LOG2PSEG utility have to be used to create page segments from graphics (LOG files)?

  • Guild Wars 2 : Standard Edition?

    Now we have ourselves a release date. Will Best Buy be selling a physical copy of the standard edition of Guild Wars 2? Will it be available for prepurchase and/or preorder? I'm NOT interested in getting the digital edition or the collectors edition,