Hide objects/information on recorded slide

Hello,
I want to hide information and objects on the recorded slides
in my project. So that if I publish them, you can't see that
specific info. Is it possible in Captivate?
Thx

Hi SoSch and welcome to our community
Indeed you may and it's easier than you think. I do this by
inserting a Highlight Box object. Configure the Border to 0 and the
Fill Color to match the area you are hiding. The eyedropper tool is
so good for this! Then position the highlight box over what you
want to hide.
Here's the cool part. Often, the area you want to hide
appears across multiple slides. I then copy the Highlight Box
object from where I created it, select the slides where I also need
it and paste. Poof! It's pasted on all the selected slides
in exactly the same place it was copied from which means I
don't have to futz with positioning it!
As a final step, you may choose to right click the Highlight
Boxes and merge them into the background. This has the same effect
as if you had popped the background into an image editor and
blotted out the undesired or sensitive information.
Hopefully this was helpful... Rick

Similar Messages

  • I record some information to some slides but the presentation doesn't start from the 1st one but from the one I started the recording. What should I do?

    I record some information to some slides but the presentation doesn't start from the 1st one but from the one I started the recording. What should I do?
    Also, can I use music as backround to some of the slides, not to all of them as I'd like to play videos on the others?

    I have reinstalled the drivers. I watched it install the realtec and cirrus drivers. Hovering the mouse over the speaker icon says 'speakers: HP'. They are actually 'Creative'. 'Properties' indicates 'IDT High Definition CODEC' and 'This device is working correctly'.
    Driver details gives 'c:\Windows\system32\drivers\dmk.sys'.
    There is still no sound, although the little level meter on the control shows a green bar rising and falling.
    Obviously, it thinks it's working, but there's no connection to the speakers. They're not muted, either. I checked that too.
    Any other ideas?
    Thanks.

  • SEM - Hide Warning & Information messages ?

    Hi,
    I'm validating user entries in FOX & displaying messages.
    Message log is displaying so many unnecessary logs like errors, warnings & information messages.
    on the error display pop-up window, there is a button to hide each individual type of messages.
    Is there a way to hide warnings & information messages default & show only error messages.
    for example, just for a single error message, I'm getting 5 message lines as follows.
    Information message      :     Check planning function (PF001) was executed.
    Warning Message          :     Errors occured when executing planning function.
    Error Message          :     Error is displayed here
    Information message      :     1 data records were read, 0 of them were changed, 0 generated.
    Information message      :     An automatic planning function was executed for layout LAY1.
    as it confuses end-users, is there a way to display only error messages if any?
    Appreciate any help.

    Raj,
    please check the following thread. It show an easy  solution when using the web interface.
    Web Interface Builder - Only Show Warnings and Errors in Message Tray
    Regards
    Marc
    SAP NetWeaver RIG
    PS: Next time try a search

  • Pasting recording slides

    This is my first Captivate presentation; basically a learning experience.
    I have a file that is converted from a PowerPoint slide show and another that is a recording of some activity in Word.  I attempted to copy slides from the recording and paste them into the PowerPoint presentation.
    When pasted into the PowerPoint show, the recording slides don't render correctly. I don't see the full width of the original recording, and when it shows a click on an object at the edge of the display, it jumps out of place to fit in the space rendered.
    Is that typical?  And what's the correct way to merge slides from PowerPoint and clips from a demo recording into a single Captivate presentation?

    Hello,
    Have some questions: are those two files that you want to combine in one CP-file, if I understand well, the same resolution? How did you copy the slides? And what is the Quality setting of the slides (Properties panel, General region)?
    Lilybiri

  • Multiple fill blank objects on one question slide?

    Hellou CP users, is it possible to put multiple fill blank objects on one question slide? And if, how can I manage them for quiz reporting and correct results?
    Yarik

    I think indeed that you want a score for each fill-in-the-blank object, and that is not possible with the default FIB question slides. Only MCQ has partial scoring.
    With TEB's and advanced actions that is possible. Also with the TextArea widget, as I explained in this blog post:
    http://blog.lilybiri.com/widgets-and-custom-questions-part-2
    http://blog.lilybiri.com/extended-textarea-widget-more-functionality
    TEB's have the advantage that as interactive objects, you can attach a score to them which is not the case for the TextArea widgets. But I would recommend getting Jim Leichliter's enhanced version of the TEB's as well, so that you can control what is shown in the TEB if you want to create a question with multiple attempts. I have described a use case recently in these forums but cannot remember exactly which thread. Jim's widget is free:
    http://captivatedev.com/2012/09/16/adobe-captivate-6-x-free-widget-text-entry-box-with-var iables/

  • How can I convert table object into table record format?

    I need to write a store procedure to convert table object into table record. The stored procedure will have a table object IN and then pass the data into another stored procedure with a table record IN. Data passed in may contain more than one record in the table object. Is there any example I can take a look? Thanks.

    I'm afraid it's a bit labourious but here's an example.
    I think it's a good idea to work with SQL objects rather than PL/SQL nested tables.
    SQL> CREATE OR REPLACE TYPE emp_t AS OBJECT
      2      (eno NUMBER(4)
      3      , ename  VARCHAR2(10)
      4      , job VARCHAR2(9)
      5      , mgr  NUMBER(4)
      6      , hiredate  DATE
      7      , sal  NUMBER(7,2)
      8      , comm  NUMBER(7,2)
      9      , deptno  NUMBER(2));
    10  /
    Type created.
    SQL> CREATE OR REPLACE TYPE staff_nt AS TABLE OF emp_t
      2  /
    Type created.
    SQL> Now we've got some Types let's use them. I've only implemented this as one public procedure but you can see the principles in action.
    SQL> CREATE OR REPLACE PACKAGE emp_utils AS
      2      TYPE EmpCurTyp IS REF CURSOR RETURN emp%ROWTYPE;
      3      PROCEDURE pop_emp (p_emps in staff_nt);
      4  END  emp_utils;
      5  /
    Package created.
    SQL> CREATE OR REPLACE PACKAGE BODY emp_utils AS
      2      FUNCTION emp_obj_to_rows (p_emps IN staff_nt) RETURN EmpCurTyp IS
      3          rc EmpCurTyp;
      4      BEGIN
      5          OPEN rc FOR SELECT * FROM TABLE( CAST ( p_emps AS staff_nt ));
      6          RETURN rc;
      7      END  emp_obj_to_rows;
      8      PROCEDURE pop_emp (p_emps in staff_nt) is
      9          e_rec emp%ROWTYPE;
    10          l_emps EmpCurTyp;
    11      BEGIN
    12          l_emps := emp_obj_to_rows(p_emps);
    13          FETCH l_emps INTO e_rec;
    14          LOOP
    15              EXIT WHEN l_emps%NOTFOUND;
    16              INSERT INTO emp VALUES e_rec;
    17              FETCH l_emps INTO e_rec;
    18          END LOOP;
    19          CLOSE l_emps;
    20      END pop_emp;   
    21  END;
    22  /
    Package body created.
    SQL>Looks good. Let's see it in action...
    SQL> DECLARE
      2      newbies staff_nt :=  staff_nt();
      3  BEGIN
      4      newbies.extend(2);
      5      newbies(1) := emp_t(7777, 'APC', 'CODER', 7902, sysdate, 1700, null, 40);
      6      newbies(2) := emp_t(7778, 'J RANDOM', 'HACKER', 7902, sysdate, 1800, null, 40);
      7      emp_utils.pop_emp(newbies);
      8  END;
      9  /
    PL/SQL procedure successfully completed.
    SQL> SELECT * FROM emp WHERE deptno = 40
      2  /
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM
        DEPTNO
          7777 APC        CODER           7902 17-NOV-05       1700
            40
          7778 J RANDOM   HACKER          7902 17-NOV-05       1800
            40
    SQL>     Cheers, APC

  • How to hide "Request Information" in FYI?

    Hi all,
    Please tell me how to hide "Request Information" in FYI. I know we can do it through Workflow. But i created a FYI using AME. Is it possible to do it on functional level.
    Regards,
    Pradeep

    Found the answers:
    1. The service Impl should implement the javax.xml.rpc.server.ServiceLifecycle interface.
    In this way you get access to a javax.xml.rpc.server.ServletEndpointContext, which gives access to amongst others javax.xml.rpc.handler.MessageContext, which gives access to request information
    2. In the Handler it is possible to store information on the MessageContext, which can be accessed in the service Impl (see 1.).
    Groeten,
    HJH

  • Can I put multiple object placeholder in Master slide?

    I would like to know if I can creat multiple object placeholder in Master slide or not.  After searching the disccusion, seems that this problem occur since Keynote 03 and is not improved till Keynote 09 now.  In fact, I would like to make a slide show of multiple photos, but I would like to arrange several photos in one slide and exactly the same position and size in each slide.  So, it would be easiler if I can make a master slide with mulitple object placeholders.  Can anyone help or if there is any alternative ways? Thank you.

    Apple Maps is not a GIS application. It might be one day. For now, you will have to use ArcGIS or something similar.

  • Master Slides image sitting on top of recorded slide image.

    When I record slides the only image that appears on the slide are the mouse movements and the Master Slide image.  It looks like the Master Slide image is "sitting on top" of the recorded image.  The recorded images are listed in the Library as Backgrounds.  Any ideas?  Thanks in advance.

    Look in the Properties tab > General accordion to see if Use Master Slide Background is selected.

  • Which SD Table holds the Technical Object Information?

    I am writing a report in SQ01 and can't find an SD table holding the technical objects information from the Sales contracts or orders. Can anyone suggest a table or which tables to joins I need. .
    Thanks
    Jen

    .... also:
    inner join with sales ordem item:
    VBPM-VBELN = VBAP-VBELN
    VBPM-POSNR = VBAP-POSNR
    Available fields:
    Technical reference object type
    Technical reference object
    Serial number

  • No base object information for AQ$_PROP_TABLE_1

    Hi all,
    My alert log is stating that there is no base object information for the AQ$_PROP_TABLE_1 table? This table is owned by sys which is preventing me from preparing the table.
    Q1) How did the database end up in the state?
    Q2) How do I fix it?
    I'm running 9.2.0.3.
    WARNING: no base object information defined in logminer dictionary!!!
    knlldmm: gdbnm=HLRDB.SITE1
    knlldmm: objn=6850
    knlldmm: objv=1
    knlldmm: scn=1004390
    SQL> select OBJECT_NAME from dba_objects where OBJECT_ID=6850;
    OBJECT_NAME
    AQ$_PROP_TABLE_1
    Enter user-name: sys as sysdba
    Enter password:
    Connected.
    SQL> begin
    2 DBMS_CAPTURE_ADM.PREPARE_TABLE_INSTANTIATION('AQ$_PROP_TABLE_1');
    3 end;
    4 /
    begin
    ERROR at line 1:
    ORA-12087: online redefinition not allowed on tables owned by "SYS"
    ORA-06512: at "SYS.DBMS_CAPTURE_ADM_INTERNAL", line 74
    ORA-06512: at "SYS.DBMS_CAPTURE_ADM", line 159
    ORA-06512: at line 2
    Many thanks,
    Warren

    Select the image you'd like to use as the placeholder, and assign it a "name" in the Inspector - also make sure that the name only contains standard letters, numbers or underscores and starts with a letter (no spaces or punctuation). Does it show up in the Actions menu after that?

  • Object information pop-up in case of object link

    Hi,
    I want to populate object information screen while creation of notification automatically if object link exist on that object.
    Thanks .

    Hi Rahul
    Go to
    SPRO>>>Plant Maintenance and Customer Service>>>Maintenance and Service Processing>>>Maintenance and Service NotificationsMaintenance and Service Notifications>>>Notification Processing>>>Object Information>>>Define Object Information Keys
    Define oject keys with all required parameters.
    Then
    SPRO>>>Plant Maintenance and Customer Service>>>Maintenance and Service Processing>>>Maintenance and Service NotificationsMaintenance and Service Notifications>>>Notification Processing>>>Object Information>>>Assign Object Information Keys to Notification Types.
    Assign your key and required notification type.
    In create notification once you enter an object ie. FL or equip. object informatin will come with all details.

  • DW Workbench - Source System : Object Information

    I recently applied some bi support packs through spam, and I realize now in my BW Workbench Source Systems
    under Modeling,  the active/inactive sign under Source System : Object Information column is no longer showing,
    which, usually indicate whether the connection to the source system is ok or not.
    Does anyone know what configuration is changed?
    Thanks.
    Edited by: BI Junior on Jul 16, 2009 8:04 PM
    Edited by: BI Junior on Jul 17, 2009 2:36 AM

    Thanks Mohan Kumar,
    I check the source system, it is ok.
    However, under that column, I used to have a active/inactive symbol which will tell me whether
    the connection is ok or not, now the symbol is gone, so I have to check to see whether the
    related source system ok or not.
    Could you see the symbol in your system? My BI7 ides was SP70009, now I updated to SP70016...

  • Can we translate in captivate 7? I Have tried and changed the Caption and Notes. Can we change the on screen text of te normal slides, interactive call out boxes, screen recording slides and quizzes? If yes, please let me know the process.

    Can we translate in captivate 7? I Have tried and changed the Caption and Notes. Can we change the on screen text of te normal slides, interactive call out boxes, screen recording slides and quizzes? If yes, please let me know the process.

    Of course! Here ya go
    For the record, I did create a new project with only two slides to try and duplicate the issue. I had the same problem. I unchecked the Mouse Click Sound check box, republished and the slide auto advanced. I'm wondering if a default sound file was somehow moved or deleted? I discussed uninstalling and reinstalling C7 onto my laptop, but that's a frustrating solution haha

  • Editing the recorded slide

    I am just new to Adobe Captivate - before I used another program.
    Now I am wondering if there is no way to edit the recorded slide.
    1. When I use the timeline I can find no way to mark a part of the slide at cut it away from the timeline.
    2. I am wondering that when I pause the timeline - the red line stops on the right place, but the the video is showing the first image again.
    When I record my slide  there are some popup windows I have to move to the right place for making the slide look good. The time I use to move the popup window I want to cut out.
    In the software I used before it was possible.

    Hi there
    From what you posted it would seem you recorded your movie using Full Motion (FMV) recording mode. Ouch!
    When you record using FMV, it is very similar to the old 8MM movies from years ago. If you filmed a room full of relatives and there was an ugly chair in the room, you would not be able to edit the movie so it mostly remained the same but the chair was gone. This sounds like what you are wanting to do.
    With a FMV all Captivate will allow you to do is to split the recording or append (splice) other recording bits. If you are wondering where this capability is, it's in a different editor that's not all that simple to find. Basically you need to locate the clip in the Library. This is pretty easy to do. Just right-click the clip in the Captivate editor and choose Find in Library. This should highlight the clip. Now in the Library, right-click the clip and choose Edit. This should open the FMR Editor.
    You would be well advised to ignore that FMV exists with Captivate. Seldom will you achieve a desirable result. Captivate works best in the Slide By Slide recording mode. We hope to see FMV "get there" and be on par with TechSmith's Camtasia Studio at some future point. Unfortunately, that point is likely to be a couple or three versions away.
    If I have something requiring FMV, I use Camtasia and output that as a SWF that I insert into Captivate. You can get some really good stuff that way.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

Maybe you are looking for