Limited Number of visible slides in TOC?

Hi,
I have a project with 22 slides marked as visible in my TOC. When I preview the project, TOC items 1-19 navigate to the slide correctly when I click on them, but items 20-22 don't do anything. Is there a limit to the number of items that will work on the TOC, or should they all be able to work? I'm not sure what is going wrong that would cause these three slides not to play from the TOC.

I do have a quiz—the last working TOC item navigates to a quiz slide. I've attached a screen shot of the quiz settings, and the quiz properties.
Thanks, I appreciate the help and quick response!

Similar Messages

  • What is the limited number of users?

    What is the limited number of users?

    WHile your question is a bit too vague to answer with certainty I'll start with a res[ponse and you can fine tune it if it is not what you are asking about.
    The number of users of any single product for a single user license at any given moment in time is one.

  • Automatic "number of visible categories"

    Hello,
    did anyone know how to implement in code automatic number of visible categories in graph. I need to do in code something that user can do manually on graph by clicking: Right button mouse click on a vertical axis of ALV Graphics -> Format gridlines -> Scale tab -> Checkbox 'Automatic' (number of visible categories).
    I need the same effect, but before first display of ALV graphics. I have to mention, that I don't implement manually the AVL Graphics. It's all default, by clicking a button on my ALV Grid.
    Is it possible to change it in code?

    Hi all
    this Problem is known as BUG No. 2768129, tar: 2748723.995
    From Tar:
    When creating 50 files in a directory that is mounted through NFS, and doing an ls afterwards, only 40 files are listed. The number of files listed depends on the length of the file names. If the file names are longer it can happen that ls lists less files.
    It appears that this behaviour is specific to the HP-UX NFS client when it accesses the 9iFS NFS Server.
    Solaris, or Linux NFS clients behave correctly. Additionally, the HP-UX NFS client against another NFS server (for example an HP-UX NFS server, or a Tru64 Unix NFS server) is also behaving correctly.
    This can only be seen when using NFSv3. When the 9iFS NFS directory is mounted using NFSv2, all files are listed correctly.
    That's the recommended workaround.;-)
    bis denne...
    Rico

  • Question When I do a search for an image I only have a limited number of images. There used to be a ton of pictures on my screen and an unlimited amount of pictures to look through. Is there a way of changing this back to the way it used to be???

    Question
    When I do a search for an image I only have a limited number of images. There used to be a ton of pictures on my screen and an unlimited amount of pictures to look through. Is there a way of changing this back to the way it used to be???

    Thanks.  So there's no means of knowing whether a text message has been delivered, not to mention time of delivery.  Perhaps I've gone for the wrong phone.  It might do a lot but seems to miss out on some basics.

  • Re-Toast DVD - is it the same as IDVD - That is can you burn a number of .mov slide shows on the same disk?  Thank you

    Re-Toast DVD - is it the same as IDVD - That is can you burn a number of .mov slide shows on the same disk?  Thank you

    Toast can author and burn video DVDs but it's not nearly as versatile as iDVD is in creating video DVDs.  Toast can only create one menu so all items must be on it, i.e. no sub-menus, no animated menus, etc.

  • Scrolling table. Getting Number of Visible rows from User Settings.

    Hello everyone,
    I hope you can show me the way to the light! here is my problem:
    I have to control the scroll of a table, for allow to the user to see always one blank row for entry proposes.
    For that I know that I can ge the number of visible rows and the first visible row through the methods:
    cl_wd_table->get_visible_row_count( ).
    cl_wd_table->get_first_visible_row( ).
    The problem is that the user can modify the number of visible rows through the user settings in the table ( right button on the table "User Settings->more..." ) and it doesn't modify the value returned by the method cl_wd_table->get_visible_row_count( ).
    How could I get the visible rows set up by the user in his user settings for control the scroll dynamically?
    Many thanks in advice.
    G.

    Hi G,
    The changes what user will be making will be classified as personalization.
    I was looking into the ways of finding the user specific personalization in the code and then callin the mthod set_first_visible_row.
    There are few classes related to personalization like CL_WDR_PERSONALIZATION_SERVICE and CL_WDR_PERS_MANAGER.
    I tried calling method get_pers_data of class CL_WDR_PERSONALIZATION_SERVICE. But for me it was not returning any data.
    You can also look into these classes and try to fetch user specific personalized data with methods available.
    Another way which I thought is to create a component  configuration and make the number of rows as Final so that end user is not able to personalize this ( I know u won't agree on this  ).
    @ Thomas: Any specific inputs from your side on this problem.
    Regards
    Manas Dua

  • ADF Pagination - Customize number of visible rows

    Hi,
    Jdev - 11.1.1.5.0
    I want to provide a drop down option to select 'the number of visible rows'. Based on the option, it should display table content accordingly with the specified number of rows.
    Ex: I've a ViewObj to be displayed as a table.Table contains around 500 rows. I've dropdown with 50,75,100 values. If I select 50 from the drop down, the total rows will be devided by 50. It means, 10 pages 1,2,3,4,5,6,7,8,9,10 with links pointing to the corresponding 50 rows.
    I should be able to see first 50 rows by default. If I click on link 2, it should display rows from 51 to 100 etc. If I click on link 3, it should disply rows from 101 to 150 etc.
    Please suggest, if you have any suggestion or pointer on this use case.
    Thanks in advance,
    Samba

    hI,
    Thanks for your information.
    Able to achieve pagination. But before implementing this process, I am filtering the table content to be display using View Criteria.
    After following ADF Traditional pagination, unable to apply validations to filter the content. (http://codeplay.net/2011/04/21/simple-adf-traditional-pagination-2-with-business-component/)
    As I've transient attributed, if checkboxStatus = "Y" then only i am displaying those rows. Can you suggest any clue to provide validation on the data before displaying the content with pagination.
    -Samba.

  • JTextArea - number of visible rows

    Hi,
    I have a JTextArea wihch has a dynamically width and height. that is depending on the size of the window (JFrame).
    I am setting the size of JTextArea with pixels via "setBounds", so I do NOT use the constructor JTextArea(width, height)
    1) How do I get the number of visible rows?
    Let say JTextAreas has 20 visible rows. The textfile has 60 lines.
    Say, I scrolled to the middle, so 20 rows before, and 20 rows after are not visible.
    2) How do I get the value 21. (I don't mean the cursor position. At this scrolled-scene, rows between 21 and 40 are displayed.)
    thanks
    Aykut
    Background:
    I am trying to read the content of a very big textfile 100MB to 10GB in JTextArea.
    Via "File" it is not possible to do this. Via "RandomAccessFile" it is (I think) possible.
    So I will try only to read the content of the textfile which fits to the current visible part of the JextArea.

    solution for question 2 is: in 2 steps:
    step 1
    // JSCROLL Listener
        class MyAdjustmentListener implements AdjustmentListener {
            // This method is called whenever the value of a scrollbar is changed,
            // either by the user or programmatically.
            public void adjustmentValueChanged(AdjustmentEvent evt) {
                Adjustable source = evt.getAdjustable();
                // getValueIsAdjusting() returns true if the user is currently
                // dragging the scrollbar's knob and has not picked a final value
                if (evt.getValueIsAdjusting()) {
                    // The user is dragging the knob
                    return;
                // Determine which scrollbar fired the event
                int orient = source.getOrientation();
                if (orient == Adjustable.HORIZONTAL) {
                    // Event from horizontal scrollbar
                } else {
                    // Event from vertical scrollbar
                // Determine the type of event
                int type = evt.getAdjustmentType();
                switch (type) {
                  case AdjustmentEvent.UNIT_INCREMENT:
                      // Scrollbar was increased by one unit
                      break;
                  case AdjustmentEvent.UNIT_DECREMENT:
                      // Scrollbar was decreased by one unit
                      break;
                  case AdjustmentEvent.BLOCK_INCREMENT:
                      // Scrollbar was increased by one block
                      break;
                  case AdjustmentEvent.BLOCK_DECREMENT:
                      // Scrollbar was decreased by one block
                      break;
                  case AdjustmentEvent.TRACK:
                      // The knob on the scrollbar was dragged
                      break;
                // Get current value
                int value = evt.getValue();  // how many pixels from the row 0 to the top of the visible JTextArea, if you scroll just once, than it is the same as fontHeight
                System.out.println("value = "+value);
                System.out.println("fontHeight = "+fontHeight);
                current_scroll_position = value / fontHeight;
                System.out.println("current_scroll_position = "+current_scroll_position);
    step 2
    AdjustmentListener listener = new MyAdjustmentListener();
    text_pane.getHorizontalScrollBar().addAdjustmentListener(listener);
    text_pane.getVerticalScrollBar().addAdjustmentListener(listener);

  • Number of visible rows

    hi,
    I want to display all the records of the table without restriction. Normally If I have 1000 records then the number of visible rows will be equal to the length of the table and we get scroll option to see the other records. If I want to make the number of visible rows equal to number of records is it possible?
    thanks,

    Hi,
    Assign the count of records to the 'No of rows' property of the table.
    Regards
    Basheer

  • Why is asking a question to Firefox so difficult, and limited to a limited number of 'characters'?

    Why is asking a question to Firefox so difficult, and limited to a limited number of 'characters'?

    Sorry for the confusion; it seems as though I am the one confused--after jumping through several hoops, I thought I was sending a question to the Firefox help support...my question was about 7 characters too long to send, apparently.

  • HT201229 Is there a limited number of people/numbers than can be blocked?

    I'm just curious if there are a limited number of people that can be blocked using this new feature on iOS 7.

    I have not seen any mention of a maximum number. I've also not seen any reports of anyone hitting a maximum. If there is a limit it must be extremely large or there definitely would have been reports or complaints here by someone.

  • What kind  of  index on limited number of distinct values in a large table

    Hi all,
    can any one help me
    what kind of index on limited number of distinct values in a large table
    Thanks,

    Hi,
    it's better to do full table scan when values are evenly distributed. Indexes are good when you want to select less than 10% of all data (it depends).
    BUT you can use index when there is another data distribution - e.g. value 'Unprocessed' 1%, 'Processed' 99% (and you have computed statistics). Generally in datawarehouse you could use bitmap index, because it is small and fast, but it's not suitable in OLTP with many data modification. Then you can use b-tree index or functional index.
    create index idx on mytable (decode('Unprocessed', 1, null));This funcional index will be small and fast too, because there won't be any null values (but you must use this clause in select statement to use index).

  • OIF and number of visible tabs

    Hello FPM-Experts
    I'm wondering if someone can tell me what the maximum number of visible tabs in a OIF is.
    Regards,
      Mathias

    Hello Ulrich
    I didn't mean the total number of tabs, I meant the number of tabs that are usally visible in default resolution Do you have any experience or is here any rule of thumb?
    Regards,
      Mathias

  • How to restrict a text field to accept limited number of digits (only) with leading zeroes

    I am trying to restrict a field for accepting only limited number of digits that can have zeroes in the begining - this why I can't use Numeric field. Can anybody help?

    Hi Niall,
    Thank you very much,
    I did something like what you told me - thought I used script in ordetr to prevent entering any chracters except digits.
    In Change event I enterd the following script:
    // Restrict input to digits only - Number of digits (characters) assigned in Object Palette - Field Tab
    if((xfa.event.change != 1) && (xfa.event.change != 2) && (xfa.event.change != "3") && (xfa.event.change != "4") && (xfa.event.change != "5") && (xfa.event.change != "6") && (xfa.event.change != "7") && (xfa.event.change != "8") && (xfa.event.change != "9") && (xfa.event.change != "0"))xfa.event.change
    = "";
    This does the job.
    Thank you,
    Peter.

  • Number of visible text fields

    Hi all,
    Trying to upload document numbers from Excel into SAP via transaction F-03 using SAP GUI Scripting.
    My approach is to enter values one by one and press Enter when the last visible text field is reached. Then enter another batch of values, press Enter and so on..
    The problem is that I do not know how to get that event when the last visible field is reached.
    I know the solution but for tables when you can count a number of visible rows (.visibleRowCount).
    Thanks in advance.

    Hi Dmitry,
    in this case, I would proceed as follows:
    1. before the position command the system error handling switch off with
    on error resume next
    2. behind the position command the test of error number with
    if err.number < 0 or err.number > 0
    For example:
    on error resume next
    err.clear
    'position command from existing script
    if err.number > 0 or err.number < 0  then
    'processing . . .
    end if
    on error goto 0
    Declaration on the solution: In a non-relevant line will it not work. This one can evaluate it.
    Regards,
    ScriptMan
    Edited by: ScriptMan on Apr 19, 2010 7:36 PM

Maybe you are looking for

  • Adobe Media Encoder for CS4 error Could not read from the source

    Hello, I get an error when I try to export from Premiere CS4. It doesn't matter how I export. Seems like an easy fix, but I can't figure it out. Any help is appreciated: - Source File: C:\DOCUME~1\ARTWHI~1\LOCALS~1\Temp\extra and b roll.prproj - Outp

  • Hi there can you help?looking to import my library from my external HDD ?i have my current library on my ipod right now from earlyer

    i recently needed to make more space on my laptop ,so i made a backup of all that was on my laptop with an external Hard Disk Drive, i was then told to reformatt my laptop (ie delete everything back to how it was when i bought it) big mistake . I los

  • GroupWise 8 + Outlook 2013 on the same PC (headaches)

    So I have a problem that's been making me pull my hair out and was hoping someone could offer some advice. OS - Windows 7 Professional x64 (all Windows Updates installed) GroupWise version - 8 I have a user (who is a local admin on that machine) who

  • Sql query on emp table

    SQL> select * from emp; EMPNO EMPNAME SAL empd 1 DJ 2800 26-MAR-06 2 VJ 9800 12-APR-00 2 VJ 7800 27-MAR-06 1 DJ 8800 27-MAR-06 The output i am expecting is as follows, I need to find the max sal, min sal ,max saldate, min saldate of each employee. Em

  • Selecting Multiple things

    I just recently purchased the Snow Leopard upgrade. The installation appeared to go fine. But, now I can't select multiple files and open them. Like, I have files of pictures. I then select a large group of them and click to open, figuring that they