Objects flicker from screen to screen

Hello,
First project using Captivate 4. (4.0.0 Build 1596)
All our objects are flickering when we're moving from slide to slide. For example, on slide 1 I have a highlight box, a text box and a simple click box in a field (infinite). When clicked it moves to the next slide. The actual screen (background) doesn't flicker (or blink) but the objects do (highlight box, text box).
It flickers in Preview mode and in Publish mode as well.
Any help with this would be greatly appreciated.
thanks.

Hi there
Personally I'd be shocked if configuring things as you state corrects the issue. The blog post you pointed to is really about a totally different problem. The problem deals with objects disappearing at the end of slide playback.
Actually, I might think that if you configured a slide in the middle of a project with "No action" as the exit action, you would likely introduce a new issue. The slide would likely just pause playback and not automatically progress to the next slide. I haven't tested this yet to see if that's the case but plan to.
It would be nice to see the project where the "flicker" occurs so that we may better visualize what is being referred to here.
Cheers... Rick
Helpful and Handy Links
Captivate Wish Form/Bug Reporting Form
Adobe Certified Captivate Training
SorcerStone Blog
Captivate eBooks

Similar Messages

  • My iPad screen keep flicking from page to page. I have turned it off and on again but it keeps flicking. Any suggestions?

    My iPad screen keeps flicking from page top page. Any suggestions?

    Give this a Try:
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • Open and editor windown from a dialog screen.

    Hi,
    Does anybody know how to open an editor window to write large text notes (1,000 chars or more) from a dialog screen?
    Then how this data is stored on a table?
    I need to save large amounts of text and I have seen this on SAP transactions.
    Any help will be appreciated.
    Thanks,
    Orlando.

    Oh, I see.  I would not suggest using a sapscript editor. I would use the text editor that I mentioned early.  If you really want that functionality of the sapscript editor, you can do that.  Either way you will need to create a custom text object/id to save your text to the db.  Here is an example of using the sapscript editor.
    report zrich_0002.
    data: header type THEAD.
    data: txt_lines type table of tline with header line.
    header-TDOBJECT = 'AUFK'.
    header-TDNAME   = '001000000001'.
    header-TDID     = 'LTXT'.
    header-TDSPRAS  = sy-langu.
    header-TDLINESIZE = 70.
    * First read the text, if there is any.
    call function 'READ_TEXT'
      exporting
    *   CLIENT                        = SY-MANDT
        id                            = header-tdid
        language                      = sy-langu
        name                          = header-tdname
        object                        = header-TDOBJECT
    *   ARCHIVE_HANDLE                = 0
    *   LOCAL_CAT                     = ' '
    * IMPORTING
    *   HEADER                        =
      tables
        lines                         = txt_lines
    * EXCEPTIONS
    *   ID                            = 1
    *   LANGUAGE                      = 2
    *   NAME                          = 3
    *   NOT_FOUND                     = 4
    *   OBJECT                        = 5
    *   REFERENCE_CHECK               = 6
    *   WRONG_ACCESS_TO_ARCHIVE       = 7
    *   OTHERS                        = 8
    if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    * throw editor, allow user to change
    call function 'EDIT_TEXT'
      exporting
    *   DISPLAY             = ' '
    *   EDITOR_TITLE        = ' '
        header              = header
    *   PAGE                = ' '
    *   WINDOW              = ' '
        SAVE                = 'X'
    *   LINE_EDITOR         = ' '
    *   CONTROL             = ' '
    *   PROGRAM             = ' '
    *   LOCAL_CAT           = ' '
    * IMPORTING
    *   FUNCTION            =
    *   NEWHEADER           =
    *   RESULT              =
      tables
        lines               = txt_lines
    * EXCEPTIONS
    *   ID                  = 1
    *   LANGUAGE            = 2
    *   LINESIZE            = 3
    *   NAME                = 4
    *   OBJECT              = 5
    *   TEXTFORMAT          = 6
    *   COMMUNICATION       = 7
    *   OTHERS              = 8
    if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    * When user comes back from editor, save the text
    call function 'SAVE_TEXT'
      exporting
        CLIENT                = SY-MANDT
        header                = header
    *   INSERT                = ' '
    *   SAVEMODE_DIRECT       = ' '
    *   OWNER_SPECIFIED       = ' '
    *   LOCAL_CAT             = ' '
    * IMPORTING
    *   FUNCTION              =
    *   NEWHEADER             =
      tables
        lines                 = txt_lines
    * EXCEPTIONS
    *   ID                    = 1
    *   LANGUAGE              = 2
    *   NAME                  = 3
    *   OBJECT                = 4
    *   OTHERS                = 5
    if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    So for your case, you must create a custom Text Object and ID via SE75.
    REgards,
    Rich Heilman

  • Authorization object for plant on selection-screen

    Hi All,
    I need to cehck the authorization object for plant on sleection screen..the palnt is select-options.
    I have written the code
    Declaration of local constants.
      CONSTANTS : lc_i(1)  TYPE c VALUE 'I',
                  lc_eq(2) TYPE c VALUE 'EQ'.
      REFRESH : r_werks.
      LOOP AT s_werks.
        IF s_werks-low IS NOT INITIAL.
          AUTHORITY-CHECK OBJECT 'M_MATE_WRK'                "Check if the user has autorization for the plant.
                               ID 'ACTVT' FIELD '03'
                               ID 'WERKS' FIELD s_werks-low.
          IF sy-subrc NE 0.
            r_werks-sign   = lc_i.
            r_werks-option = lc_eq.
            r_werks-low    = s_werks-low.
            APPEND r_werks.
          ENDIF.
        ENDIF.
      ENDLOOP.
      LOOP AT s_werks.
        IF s_werks-high IS NOT INITIAL.
          AUTHORITY-CHECK OBJECT 'M_MATE_WRK'                "Check if the user has autorization for the plant.
                               ID 'ACTVT' FIELD '03'
                               ID 'WERKS' FIELD s_werks-high.
          IF sy-subrc NE 0.
            r_werks-sign   = lc_i.
            r_werks-option = lc_eq.
            r_werks-low    = s_werks-high.
            APPEND r_werks.
          ENDIF.
        ENDIF.
      ENDLOOP.
    My doubt is will the authorization will check the plants in between 1001 and 2001..suppose i have pplants 1001,1002,1003,1004,2001..Now will the above code will check for all the plants or only 1001 and 2001 if i specify in the select-options.
    Regards,
    raj

    Hi Raj
    First no need to LOOP AT s_werks and check s_werks-high as it will always be present only once in the table s_werks.
    Do this
    SELECT werks FROM t001w INTO li_werks
    WHERE werks IN s_werks.
    LOOP AT li_werks.
    *check your authority thing here and fill the range
    ENDLOOP.
    Pushpraj

  • Calling selection screen from another selecton screen.

    Hi guys,
    I want to call default selection screen of one program from default selection screen of another program.
    Is that possible . would appreciate some helpful answers.
    Thanks,
    Venkat.

    it is possiable.
    1.submit
    2. call transcation t_code.
    Syntax
    SUBMIT <prog>.
    For more information about the SUBMIT statement, see Calling Executable Programs (Reports)
    Assume the following simple report:
    REPORT ZDYN3.
    WRITE / 'Dynamic Program!'.
    The following executable program (report) starts, modifies, and restarts ZDYN3:
    REPORT ZMASTER1.
    DATA CODE(72) OCCURS 10.
    DATA LIN TYPE I.
    READ REPORT 'ZDYN3' INTO CODE.
    SUBMIT ZDYN3 AND RETURN.
    DESCRIBE TABLE CODE LINES LIN.
    MODIFY CODE INDEX LIN FROM
    'WRITE / ''Dynamic Program Changed!''.'.
    INSERT REPORT 'ZDYN3' FROM CODE.
    SUBMIT ZDYN3.
    The output of this program is displayed on two subsequent output screens. The first screen displays:
    Dynamic Program!
    The second screen displays:
    Dynamic Program Changed !
    When you use the SUBMIT statement, all modifications made to a program during runtime take immediate effect before they are submitted. In the above example, ZDYN3 is submitted from ZMASTER1 first in its original and then in its modified form, generating different results.
    This is not the case if you change the codes of include programs or subroutines dynamically.
    Assume the following include program:
    INCLUDE ZINCLUD1.
    WRITE / 'Original INCLUDE program!'.
    and an executable program (report) for modifying and including it:
    REPORT ZMASTER2.
    DATA CODE(72) OCCURS 10.
    DATA LIN TYPE I.
    READ REPORT 'ZINCLUD1' INTO CODE.
    DESCRIBE TABLE CODE LINES LIN.
    MODIFY CODE INDEX LIN FROM
                'WRITE / ''Changed INCLUDE program!''.'.
    INSERT REPORT 'ZINCLUD1' FROM CODE.
    INCLUDE ZINCLUD1.
    If you run ZMASTER2, the source code of include program ZINCLUD1 is changed and replaced in the system. However, the last line of ZMASTER2 executes the older version since the runtime object of ZMASTER2 is generated before ZINCLUD1 is modified. Only when ZMASTER2 is run a second time, does the system determine that ZINCLUD1 has been changed. Exactly the same is true if you dynamically modify the source code of a subroutine and call it from within the same program.
    One way to solve this problem is to use the INCLUDE statement within an external subroutine that is called by the program. This allows you to create or modify include programs or subroutines and use the updated versions directly in the same program.
    Assume the following include program:
    INCLUDE ZINCLUD1.
    WRITE / 'Original INCLUDE program!'.
    and an external subroutine:
    PROGRAM ZFORM1.
    FORM SUB1.
         INCLUDE ZINCLUD1.
    ENDFORM.
    The following program reads the include program, modifies it, enters it back into the system, and calls the subroutine.
    REPORT ZMASTER3.
    DATA CODE(72) OCCURS 10.
    READ REPORT 'ZINCLUD1' INTO CODE.
    APPEND 'WRITE / ''Extension of INCLUDE program!''.' TO CODE.
    INSERT REPORT 'ZINCLUD1' FROM CODE.
    PERFORM SUB1(ZFORM1).
    This produces the following output:
    Original INCLUDE program!
    Extension of INCLUDE program!
    In this case, the updated version of the include program is used in the subroutine because its time stamp is checked when the subroutine is called, and not when the calling program is generated.

  • Workflow error from purchase requisition screen

    How can I check workflow error / status / information from purchase requisition screen. Is there any other transaction ?

    Goto SWI6 or SWI14 and enter the object type (standard is BUS2105 for PR) but in your organization if custom Object type used then enter that and execute you will see the list here
    enter the selection period

  • How do I remove stray digital images of backward slashes from my laptop screen?

    How do I remove a stray digital image of a backward slash from my computer screen?

    I don't know if it's myself here Allen, but these look like marks relating to the LCD panel itself.
    I've seen this on iBooks which have small marks. They are not dead pixels as such but darken spots cast in a  very small line. When I've seen this before it's been due to pen pointers or object witch have been used to point at the screen. Normally people have used these object to touch the screen,which has left these very small marks.
    It seem to be common on earlier iBook's and PowerBook, maybe due to the type of LCD panel they use.
    I maybe wrong here, but thought it might be worth mentioning.

  • SOLVED FIXED Lenovo W500 Screen Blank / Screen Flicker on battery after 3 minutes idle

    When my W500 is on battery power and idle for 3 minutes the screen will flicker once then when I press a key it will blank briefly again before I can continue using the system.
    this drove me crazy for over a year, but I finally found the answer:
    Once again (I am a long time thinkpad user) Lenovo has shot their own foot.  
    To save battery power the default setting is to adjust the refresh rate to 50Hz after three minutes idle.
    If you are a writer, nothing is more irksome than having to wait for your screen to blank everytime you go back to type!
    go to:  Control Panel -> Power Options 
    Select Power Manager tab then click "Launch Power Manager"
    In the "Power Manager" click the "Power Schemes" tab
    then press the "edit" button to edit the currently selected scheme (or whichever one you want to remove flicker from)
    Press the "Next" button
    then click "Lower display refresh rate" under battery settings and select "NEVER"
    Ugh.    
    All of the Wizards that Lenovo adds for managing desktop schemes, backups, etc. are just buggy.
    the bios is buggy too, screen blank on reboot, resolution resizing when switching locations.
    All the way around, Lenovo starts with a solid peice of hardware, and proceeds to destroy its robustness, with poorly executed features.
         (Not that you are reading this Lenovo, but there is a lesson in this!)
    anyway, I hope this helps some other poor souls out there!
    --dan

    xset -q:
    Keyboard Control:
    auto repeat: on key click percent: 0 LED mask: 00000000
    XKB indicators:
    00: Caps Lock: off 01: Num Lock: off 02: Scroll Lock: off
    03: Compose: off 04: Kana: off 05: Sleep: off
    06: Suspend: off 07: Mute: off 08: Misc: off
    09: Mail: off 10: Charging: off 11: Shift Lock: off
    12: Group 2: off 13: Mouse Keys: off
    auto repeat delay: 500 repeat rate: 30
    auto repeating keys: 00ffffffdffffbbf
    fadfffefffedffff
    9fffffffffffffff
    fff7ffffffffffff
    bell percent: 50 bell pitch: 400 bell duration: 100
    Pointer Control:
    acceleration: 2/1 threshold: 4
    Screen Saver:
    prefer blanking: yes allow exposures: yes
    timeout: 600 cycle: 600
    Colors:
    default colormap: 0x22 BlackPixel: 0x0 WhitePixel: 0xffffff
    Font Path:
    /usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/Type1/,built-ins
    DPMS (Energy Star):
    Standby: 7200 Suspend: 7200 Off: 14400
    DPMS is Disabled

  • Why are my photos smaller when I access the camera from the lock screen?

    I have an iPhone 4s using IOS 5 and I have noticed that when I access my iPhone camera from the lock screen (by double clicking the home button) that the photos I take are only 640 x 480 pixels, but when I unlock the phone and click the Camera icon the photos 3264 x 2448 pixels.  I would pefer to always shoot the larger sized photos.  Is there a way to change this?

    Are you travelling towards the object you are photographing at a spectacular speed?  If so, you may be experiencing the doppler effect!

  • Camera problem from the locked screen

    I am using an iphone 5s and having problems with the camera from the locked screen.
    When i flick up the locked screen to use the camera, i am given a blank screen. When i press the home button the camera quickly appears before returning me to the locked screen.
    If i want to use the camera i have to unlock the phone.

    Try resetting your device (nothing will be lost): Hold down the Home and Power buttons at the same time and continue to hold them down until the Apple appears (up to 30 seconds). Once the Slide to Unlock screen redisplays, see if the camera will now come up with you slide up.
    Cheers,
    GB

  • How do you use Time Machine to restore a specific users account?  I can't do it from the user screen because I am not allowed.  I can't do it from the admin because I can't see other users in Time machine.

    I can't restore my user account from the users screen because I get an alert that Mac OS needs something.  I can't restore in TimaeMachine from the Admin screen because I can't see other users home folders.  What can I do?

    See Pondini's TM FAQs for starters.

  • I downlaoded Firefox 4 and now it won't let me open up on another screen..I have 2 screens side by side!!I used open up mulitable browsers and move them from screen to screen!Now i cant..Only opens to screen 1!!

    Before i downloaded Firefox 4, i could open up mulitable screens and move them from screen to screen..I have one computer with 2 screens side by side..Say i open up your browser and then open up another browser session,I could then move that browser session to the other screen,,Great for researching and looking at different websites side by side!!Now i cant even shrink it and move that browser to the other side(other screen)..Before i could!!!

    A brief and probably non-helpful answer: I know of no way to eliminate your large amount of duplicates other than by repetitive, tedious manual effort.
    *There has got to be a simpler way.*
    I hope you're right, but I don't think there is a simpler way.
    BACKUP:  It also appears that the only way I can back up the catalog is to shut down LR.  Really?!
    Yes, really

  • How come the switch user option is missing from my lock screen?

    I upgrade to Lion my iMac Core 2 Duo and now when I lock the screen the switch user option is missing from the lock screen, you just have to cancel o renter as the original user, so that if another member of my family wants to switch and use the mac he or she cannot do it.
    This is what I am talking about (image taken from a lion review): http://dl.dropbox.com/u/134544/forum/Schermata%2007-2455766%20alle%2011.05.12.pn g
    The switch user option is totaly absent, I just have the cancel.
    It that a bug or what?
    Please note this happens only when I lock the screen from the screensaver, i.e. requesting the password to restart from the screensaver, if I get to the login windows all users appears correctly and people can switch back and forth.
    Thank you.
    –&#8232;cordialmente,
    tiziano solignani, da  Mac
    http://ts.solignani.it (splash)
    http://goo.gl/p6Sb0 (libri)

    I just talked to apple support.  They said Lion doesn't support this feature.  They gave me a work-around, which was to disable requiring a password in the screen saver.  Then enable user switching so it appears in the top right of the banner.  Note that since the screen saver no longer locks the screen, in order to actually lock the screen the user must click on the upper right user list and select something like "Login user...".
    This issue has left me disappointed with apple for a few reasons.  Hopefully someone at apple will take note:
    1. Apple removed a useful feature.
    2. Apple did not provide a response to this thread which would have been the best forum to inform users of this change.  It would have saved me and apple one long phone call.

  • How can I control an iPad from a touch screen which is mirroring the iPad screen

    How can I control an iPad from a touch screen which is mirroring the iPad screen.
    This is a very important application for disability students who wish to use iPad apps but do not have sufficient fine motor skills to use the small screen of an iPad but could use a large format display touch screen.
    There must be a way.?????????? Help!!
    Peter Niass
    [email protected]

    Have a look here
    http://www.macstories.net/iphone/the-external-touchscreen-that-can-control-an-ip hone/

  • I just bought a new MacBook Air. In my old one, I could go from screen to screen by using three fingers to swipe over the key pad. This one just sits there. It is Yosemite. How do I set up preferences so I can use three fingers to move from screen to

    I just bought a new MacBook Air. In my old one, I could go from screen to screen by using three fingers to swipe over the key pad. This one just sits there. It is Yosemite. How do I set up preferences so I can use three fingers to move from screen to screen?

    Those choices are controlled via System Preferences, Trackpad.

Maybe you are looking for

  • Unknown Error while trying to log in

    While I was attempting to authorize my computer to play music, and even to just log on to my account, I got a message that read "We could not complete your iTunes store request. An unknown error occurred (-9808). There was an error in iTunes store. P

  • How to enter BIOS on new Satellite L300?

    Hi Just bought today.... I am anxious to install other operating systems but can't figure how to enter BIOS to enable it to boot from CD. Any help appreciated Daka

  • HELP GETTING Started with Sun Access Manager without TEARS.

    I am new to Sun Access Manager. I am quite familiar with how Sun Java Identity Manager works. The following is the issue I am facing. I've downloaded the following images from the sun website java_es_05Q4-ga1-solaris-x86-1-iso and java_es_05Q4-ga1-so

  • HTTP Adapter for ESB/BPEL

    hi, i need to know if there is any adapter available to call a HTTP service or any other alternative to call a HTTP web service. Please reply as soon as possible. Thanks Kiran

  • AE CS3 crashes when setting audio format options for MP3

    I've just submitted a bug report, but I wanted to see if anyone experienced this or have any suggestion. Basically, when I add an MP3 audio to a comp, and trying to make a movie (exporting it as uncompressed QT), when I press the Format Options butto