Delete the question numbering

Hello

I am using Captivate 4. I want to remove the numbering of a question answer multiple choice. I read in a previous post that in previous vesion of Captivate that this was not possible and a work-around was to make the first letter of the issue of the same color as the background. The numbering to copy and so you wouldn't see it. Can someone tell me if Captivate 4 lets you remove the numbering?

Thank you

Peter

Hello

Click file > export > captions and subtitles of the project. This will give you a Word document. Modify the document to remove unwanted numbering. Close and save. Click on import > captions and subtitles of the project. Re-import the mass in the project document.

See you soon... Rick

Useful and practical links

Captivate wish form/Bug report form

Certified Adobe Captivate training

SorcerStone blog

Captivate eBooks

Tags: Adobe Captivate

Similar Questions

  • Find/change the question numbers and create the Table of contents

    Hello! I need help to find all my item numbers and apply a paragraph style so I can use them to create a Table of contents page.

    The sample numbers

    #12345

    #12345-5

    #12345-20

    #12345-ABC

    #12345/N

    I tried to enter #^? ^ ? ^ ? ^ ? ^ ? in the search/replace and but it is exactly 5 characters after the sign #. I wonder if you can find all characters starting by # and up until the last characters.

    Once I found all item numbers, how can I apply the paragraph style to have these characters after the sign #? Because I only want to show item numbers without the # sign on the Table of contents/Index page.

    In addition, I have InDesign CS2, which have no function GREP maybe I can do this without the GREP?

    I really appreciate any help. Thank you very much.

    Are your numbers by themselves in a separate paragraph? OTHERWISE you can not USE the table of contents feature to list all the numbers.

    If are, then just look at # in find/replace, then set it to change formatting a new paragraph style (you must create this style in CS2) that you want to include in the table of contents, then as you say, you can use find/replace once more on the history of the TOC to remove the # of all numbers.

  • Delete the question

    Hello
    At the end of the restore script, I need to delete data in tables that are inserted. And i written as below and it takes 30 min to 10000 lines. This is huge for me. I suppose to be deleting lines from more than 120000. Why this deletion it takes a lot of time not idea.could u please advice. I tried 3 ways of deifferent as below but no use.
    DELETE
    FROM ibis.cw_upload_queue_item cuqi
    WHERE  EXISTS
      ( SELECT 1 FROM ibis.e_coursework ec
      WHERE ec.file_name=cuqi.unique_file_name
     
      );
    
    and 
    
    DELETE
    FROM ibis.cw_upload_queue_item cuqi
    WHERE cuqi.unique_file_name IN(
      ( SELECT ec.file_name FROM ibis.e_coursework ec)
     
      );
    
    SET serveroutput ON
    DECLARE
    type t2
    IS
      TABLE OF cw_upload_queue_item.unique_file_name%type
    INDEX BY PLS_INTEGER;
      TYPE2 T2;
      --cursor c1 is select DEPTNO,DNAME from dept;
    BEGIN
      --open c1;
      --loop
      SELECT file_name BULK COLLECT INTO TYPE2 FROM e_coursework
    WHERE file_name is not null;
      --EXIT WHEN type2.COUNT = 0;
      forall i IN type2.first..type2.last
      DELETE FROM ibis.cw_upload_queue_item WHERE unique_file_name=type2(i);
      
      dbms_output.put_line(sql%rowcount);
    END;
    table structure
    
      CREATE TABLE "IBIS"."CW_UPLOAD_QUEUE_ITEM" 
       (     "UNIQUE_FILE_NAME" VARCHAR2(100 BYTE) NOT NULL ENABLE, 
         "PORTFOLIO_TEMPLATE_ELEMENT_ID" NUMBER, 
         "YEAR" NUMBER(4,0), 
         "MONTH" VARCHAR2(9 BYTE), 
         "SCHOOL_CODE" VARCHAR2(6 CHAR), 
         "PERSON_CODE_ADDED" VARCHAR2(6 BYTE), 
         "PERSON_CODE_SUBMITTED" VARCHAR2(6 BYTE), 
         "STATUS_ID" VARCHAR2(4 BYTE), 
         "ADDED_TO_QUEUE_TIMESTAMP" DATE, 
         "SUBMITTED_FOR_PROCESSING_TS" DATE, 
         "UPLOAD_STARTED_TIMESTAMP" DATE, 
         "UPLOAD_COMPLETE_TIMESTAMP" DATE, 
         "FAILURE_STATUS_ID" VARCHAR2(4 BYTE), 
         "FAILURE_TIMESTAMP" DATE, 
         "FILE_NAME" VARCHAR2(300 CHAR), 
         "FILE_EXTENSION" VARCHAR2(4 BYTE), 
         "FILE_SIZE" NUMBER, 
         "PAPER_CODE" VARCHAR2(25 BYTE), 
         "SELF_TAUGHT" VARCHAR2(1 BYTE), 
         "SHARED" CHAR(1 BYTE) DEFAULT 'N', 
          CONSTRAINT "PK_CW_UPLOAD_QUEUE_ITEM" PRIMARY KEY ("UNIQUE_FILE_NAME")
      USING INDEX PCTFREE 0 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS 
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "IB_INDEXTWO"  ENABLE, 
          CONSTRAINT "FK_CW_UPLOAD_QUEUE_STATUS" FOREIGN KEY ("STATUS_ID")
           REFERENCES "IBIS"."CW_STATUS_LOOKUP" ("STATUS_ID") ENABLE, 
          CONSTRAINT "FK_UPLOAD_QUEUE_FAIL_STAT" FOREIGN KEY ("FAILURE_STATUS_ID")
           REFERENCES "IBIS"."CW_STATUS_LOOKUP" ("STATUS_ID") ENABLE, 
          CONSTRAINT "FK_QUEUE_ITEM_PERSON_ADD" FOREIGN KEY ("PERSON_CODE_ADDED")
           REFERENCES "IBIS"."PERSON" ("PERSON_CODE") ENABLE, 
          CONSTRAINT "FK_QUEUE_ITEM_PERSON_SUB" FOREIGN KEY ("PERSON_CODE_SUBMITTED")
           REFERENCES "IBIS"."PERSON" ("PERSON_CODE") ENABLE, 
          CONSTRAINT "FK_UPLOAD_QUEUE_TEMP_ELEMENT" FOREIGN KEY ("PORTFOLIO_TEMPLATE_ELEMENT_ID")
           REFERENCES "IBIS"."CW_PORTFOLIO_TEMPLATE_ELEMENT" ("PORTFOLIO_TEMPLATE_ELEMENT_ID") ENABLE, 
          CONSTRAINT "FK_UPLOAD_QUEUE_ITEM_FILE_TYPE" FOREIGN KEY ("FILE_EXTENSION")
           REFERENCES "IBIS"."CW_FILE_TYPE" ("FILE_EXTENSION") ENABLE
       ) PCTFREE 20 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "IB_DATATWO" ;
     
    
      CREATE INDEX "IBIS"."CW_UPLOAD_Q_ITEM_IDX" ON "IBIS"."CW_UPLOAD_QUEUE_ITEM" ("YEAR", "MONTH", "SCHOOL_CODE", "PAPER_CODE") 
      PCTFREE 0 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS COMPRESS 2 
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "IB_INDEXTWO" ;
     
      CREATE UNIQUE INDEX "IBIS"."PK_CW_UPLOAD_QUEUE_ITEM" ON "IBIS"."CW_UPLOAD_QUEUE_ITEM" ("UNIQUE_FILE_NAME") 
      PCTFREE 0 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS 
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "IB_INDEXTWO" ;
     

    You can read this article on indexing of columns FK given your specific situation. In general, make sure that all the fiber Plastic columns are indexed.
    http://www.DBA-Oracle.com/t_foreign_key_indexing.htm

  • How can I delete my questions?

    How to remove one of my questions in this forum?

    Best regards

    Filip

    You cannot delete the question yourself.  If you tell us the link to the issue you want to be removed we can point to for real, and I hope that among the host organizations it will remove

  • Hello.. I've forgotten the answers to my security questions... I do not have the chance to remember the... What can I do now? No idea how delet old questions and put the new ones? PLEASEEE help me

    Hello.. I've forgotten the answers to my security questions... I do not have the chance to remember the... What can I do now? No idea how delet old questions and put the new ones? PLEASEEE help me

    Hello

    If you set an alternate e-mail address, you can reset your security questions. Follow the instructions here to check if this option is available:

    If you forgot the answers to your questions of security of Apple ID - Apple Support

    Otherwise, you will need to contact the Apple Support. The information is available here:

    Contact Apple for assistance with the security of the Apple ID - Apple Support accounts

  • How to delete all the phone numbers in the blocked list?

    How can I delete all the phone numbers in the blocked list?

    I want to delete a large number of blocked number, but now I can't remove the numbers blocked by one, are there ways to eliminate several numbers or the complete list at the same time?

    Thank you!

    No sorry. The fastest method seems to be to go to settings > phone > blocked (or settings > Messages > blocked) and select the editing mode. You could make a suggestion to Apple that offer more options: http://www.apple.com/feedback/iphone.html

  • R7000 drive NAS cannot delete the folders permissions question user-person not

    I have the R7000 with a Seagate STBV4000100 4 to USB 3.0 drive connected. I can connect to it very well, driving shares of work etc. Since a WIN 7 64 bit OS file system using windows Explorer I can create folders, etc.

    It comes occasionally when I try to delete some files or folders, I get the following message;

    "You must be authorized to perform this action."
    You need authorization of Unix User\nobody to make changes to this file"

    It would seem that I am not able to change the permissions of either windows Explorer.

    If anyone knows how I can change the permissions so I can delete from windows Explorer?

    One thing of note. When I copied the files/folders on the NAS of the windows system drive, some files have been marked read-only. Not sure if this is part of the question, but anyway. How do I set the permissions to something so I can remove them from windows?

    NOTE: If I disconnect the drive of the router and connect directly to the computer... it works fine. As the router and the PC are not on the same floor, is not practical and defeated the purpose. Suggestions welcome!

    After a few reformats the drive, it worked for me. The eSata disk files are exactly like Windows Explorer 'standard '. I can save, load, delete, change properties, etc... Because it worked, I had to turn off the router once, and after a reboot, nothing had changed. While working. (except the bad 5G wifi and "freaky" interface, but it was like before)...

  • I can't delete the IMAP subfolders questions...

    I got the files set up for family, work, etc.  I guess gmail went and set up the same subfolders, so there are two copies, and never to filter emails for half of them.

    I want to delete the subfolders, all (except of course the basics) and start over.  It doesn't let me delete these folders.
    The error is "the IMAP server could not delete your folder.  If the file has already been deleted, please update your list of folders for this IMAP server. »
    Another error is "cannot select 'Family' on the IMAP server.  Try to update the list of folders, and then try again. »
    It won't let me hide the files either.
    I searched for how to remove remove the folders, IMAP, how update server update the list of files and information what ever is there, I don't understand all this.
    All I want to do is delete the subfolders and it shouldn't be this difficult.
    I removed all the labels and all of the subfolders in gmail.
    I use Windows 7 Live Mail and gmail and it is IMAP.
    Keep in mind, I'm really not that computer savy, so some detailed, 'dumbed down' instructions would be useful.
    Thank you!

    I thought about it!

    Let's start first of all, you will LOSE your emails when you delete these files, unless all your emails are also stored in the main Inbox of Live Mail or Gmail.  If you delete your emails on the server of Gmail or ask them to work around the Inbox, they're GONE, so BACK to the TOP YOUR STUFF if do not want to lose him.
    ^^^
    In fact, I think that everything can end by in the Inbox, but don't take this chance. :)
    If there is an easier way, someone please chime.
    That's what I did:
    Go to Gmail and delete any subfolders you want.  Everything will now be without a label.
    In Live Mail:
    Go to the 'Accounts' tab
    Click 'properties '.
    Go to the tab that says "IMAP".
    Uncheck the two square boxes.
    Click OK - it will be now update--> unwanted files disappear (except for the basics, sent/drafts/spam, etc.)
    Yay!
    Now go back to Gmail and recreate your news labels and filters and repeat the above process---> new subfolders with all your newly classified mail!
    Filters, don't forget to click on the box to apply to all e-mail messages stored on Gmail, and they will all close up in the appropriate subfolder.
  • Question to delete the virtual machine

    Hi all

    ESXi 4.0 and 4.1

    1. when I "delete VM from disk", why sometimes the record (with disk vmdk files) are not deleted? Is this a normal behavior?

    2. If the size of the virtual machine is 100 GB, can I expect that there will be 100 GB of space released in the data store?

    Thank you.

    Fajar.

    (1) why vmdk can be detached? What is the cause?

    1 - in fact the only one - is that the virtual disk has been manually detached.

    (2) why ESXi don't simply delete the entire folder when you are prompted to "remove disc"? You can probably avoid this kind of problem.

    For security reasons, only files that are known to belong to the virtual machine will be removed. The problems you get with deleting too many files is generally much more severe than the one you if a file is not deleted.

    I check the file against the inventory, but it becomes tiring when the folder is located in the shared data store, I check against several hosts.

    In 99% of cases (have you seen, I did not use the word "generally") ' delete drive ' will delete all files related to the virtual machine. In the case of a shared storage you don't have to check on each host, since, in the majority of cases (again once I have use 'usually) all guests have access to the same storage.

    Another reason why the - mainly the vmdk files - files cannot be deleted, is when they are locked. For example, by a hanging backup process.

    André

  • You can delete the corresponding lines of the quiz question slide?

    I have two slides corresponding quiz with eight corresponding items on each slide. The user selects the corresponding answers, the lines drawn by the question to answer Captivate gets really annoying. At the time that all eight matches are completed, the slide is very busy with crossing lines.

    Is there a way to disable this feature layout of Captivate? I would have preferred that the lines appear not at all.

    Thanks for any help or suggestion, you can provide!

    If you have Captivate 6.1 then you can use the Drag and Drop Wizard corresponding custom interactive slides and you will not the lines in the output and you can also include the slide in the quiz and allow Drag and Drop properties declaration.

    Thank you

    Vikas

  • I am trying to print PDFS from Safari, but can not see the page numbers

    I just opened a document PDF 700 + pages in Safari and need to print the odd pages and there, but I can't see the page numbers displayed when I scroll the document. When I view the same document on an iPad, the page numbers change when I scroll but on my iMac (with the help of Safari 10) they appear not at all - and 700 + pages is a lot to go wrong! The clues how I can spend on 'display the page number?

    The default Apple PDF Internet plug-in used by Safari does not display the page numbers (except if they are in the footer of the PDF document in question), and there is no setting in Safari preferences to turn on this feature. Your best bet is to download the PDF file, then open it in preview or Acrobat Reader, where the thumbnails will be the correlation to page numbers. Then you can select several arbitrary thumbnails using the control button to print those selected pages. In the Pages section of the print Panel, you select "Selected Pages in the sidebar".

    The PDF Internet plug-in installed by Adobe Acrobat Reader or Pro displays the page current and total page in its turnaround Panel. If there are page numbers in the footer of the PDF file accessed, they are not deleted. You must enable Internet Adobe plug-in to Safari preferences: Security Panel.

  • Delete the contents of a folder named downloadhist.xml?

    I want to be able to remove the contents of a folder named "downloadhist.xml".  The folder is located in local disk C:/users/user name/appdata/Roaming/MSN6/a bunch of letters and numbers/downloadhist.xml.

    The record appears to contain information about the Web sites that I have visited, but not all.  If I can delete content it will make anything wrong?

    I appreciate any help you can give me.

    David P.

    Hello V6.

    You can delete temporary Internet files from your computer by using the disk Cleanup utility.

    http://Windows.Microsoft.com/en-in/Windows-Vista/delete-files-using-disk-cleanup

    You can also try to delete the files in this folder and check if you have any questions. If it's a system file it would not allows you to delete the file.

    Thank you
    Irfan H, Engineer Support Microsoft Answers

  • When I delete the programs my free space happens to be less instead of more. How is it.

    Remember - this is a public forum so never post private information such as numbers of mail or telephone!

    Ideas:

    • You have problems with programs
    • Error messages
    • Recent changes to your computer
    • What you have already tried to solve the problem

    The game, February 10, 2011 00:53:17 + 0000, Home land Defender wrote:

    Remember - this is a public forum so never post private information such as numbers of mail or telephone!

    Ideas:

    * You have problems with programs * error messages * recent changes made to your computer * that you have already tried to solve the problem

    Please, in the future, remove all the verbiage above when you ask for a
    issue. It has nothing to do with your question. And ask your
    questions in the body of the message, not in the title. The title
    should be used only for a brief description of what is the question
    everything.

    Delete what whether he simply moves to the basket. It normally
    does not change the free space at all - not until you have emptied the Recycle Bin
    bin.

    Ken Blake (MS-MVP)

  • Problems with the page numbering

    Hello there ' All!

    I received a few questions about the numbering of the pages:

    1. When the notes are present, they appear over my page numbers (in the lower left corner), which makes them invisible. How to avoid this?
    2. How can I ignore numbering for some pages, as the cover page, table of contents etc. ?
    3. How can I connect page numbers in my table of contents to my actual page numbers?

    Thank you!

    1A, ill-conceived layout? Page numbers should ideally be placed on your master pages, and outside of the margins, you book to plain text (i.e., top, side, or underneath the purple square). Move the frames of page number outside the place of purple Director. If there is no room for this, you need to adjust your margins!

    2. you can 'ignore' the page numbers (they will keep existing), but you can hide them in several different ways. Easier - and more dirty - trick is to put a white rectangle on them (don't do this!). You can also (Cmd) Ctrl + Shift + click on any element on a master page, so "free him" and then just delete the entire frame, with the page number and everything (I wish you didn't do this...). The best way is to assign a new master page to only those pages; a specially created for this purpose (if you have other elements that should appear on all pages), or simply the "[None]" blank page.

    3 search 'referrals' help if you use CS4. You can also search for "Table of contents", it may be useful to regenerate all the content, so the text is up-to-date as well.

  • Change the Format of the Question

    I repositioned the content of a Question of Likert scale in support of our model. Several (Captivate 2.0) weird things happen.

    Firstly I have centered the numbering of the pages in a bar, when I saw, the pagination is not centered, in fact it is higher on the screen. I played around with the positioning until it displays correctly but when I'm on the editing screen is far away.

    Secondly, I moved the question and the rating scale and the buttons in the center of the screen with an area of high point behind them. It seems that the buttons are assigned to both groups to move. They are sometimes attached to the description of the scale (agree not agree, etc.) and sometimes they are attached to the issue.
    Anyway, once they moved with the rating scale descriptors, at the preview of the objects were all on display and were not where they were in edit mode.
    Another thing, that I noticed when I first selected the objects and have begun their repositioning with the down arrow key, they have immediately left justified and the left edge of the screen, I couldn't shift to the right. I had to drag them. I believe that is where they became disconnected from the grid screen real and begun previewing differently. Edit and preview were different.

    I searched the forums and found nothing of the sort. I hope that a service pack for Captivate soon appears. Captivate 1.0 was buggy, but Captivate 2.0 has many undocumented features that really adversely affect the tasks to accomplish. Quick Create is really slow down when you have to deal with all the questions. I also noticed that the number of questions that appear on the forum seems to be increasing.
    Sufficient ventilation. Everyone knows about this issue and to know what part secret screen I'm supposed to touch to get preview screens and the right edition?

    Thanks for your reply Captiv8r.
    Regarding the size of the screen, I was able to view the entire screen without scrollbars, snap to grid is turned off.
    Quite strange when I deleted the corrupted question slide, snap to grid and recreated the question slide, I have encountered the problem again.
    weird

Maybe you are looking for

  • How can I add a radio station?

    Hello, I used to listen to a radio station in iTunes and recently deleted by mistake. Anyone know how to reinstall? Thanks in advance.

  • Cannot create a recovery image

    Hello I just bought a HP Pavilion x 2, it has a 64 GB SSD.  I want to create a recovery image using the HP utility but when I try, it fails. I think it is because there is not enough space on the Windows partition to create the image.  I have a USB d

  • Title/text will not appear FCPX

    Hey all! When I try and add a title, and then change the text, it will not be displayed. It is as if she is invisible. You can 'location' it should be, but no text will appear. Any help much appreciated!

  • Analog outputs with different time scales

    I use products AO of a card PCI-6731 for an application scan head and I have some difficulties to achieve peak performance, that I need. I am contolling the map with nidaqmx drivers in c ++ Basically, an output controls scanning in the direction Y (w

  • How can I increase the size of the text in my messages

    When I type this info here the letters are super small. How can I increase the size of the letters very as I type right now?