Captivate created file playing with time delay

I have an issue with some machines in the Company where Adobe Captivate files are not playing as created via Flash Player  ie where a slide should move onto another slide after a 3 seconds interval , this interval takes over 15 seconds. 
I am not getting any error messages and the files play as required but with the serious time delay  between slides.
The files created from Captivate are exe files.
The strange thing is that this issue only occurs in some machines in the Company and I am unable to determine a pattern as to this issue.
I have updated the Codec driver and the Graphic drivers on the affected machine but did not solve the issue.
I have tested an affected file on 2 of the same model machines  (HP Desktop machines) both running Windows XP SP3 with Adobe Flash Player 10.3  and IE8.0 .
The file played successfully on one of the machines but on the other machine there was a 10 second time lag between slides.
I have checked Task Manager and the process is only using 2-3% of the CPU so the machine has enough CPU to run the file .
I updated to Flash 11.1 on one of the machines and IE 9 but still encountered the same issue.
I have disabled the Anti Virus software (McAfee) while testing on one of the affected machines and this did not solve the issue.
All Machines have the latest approved Microsoft updates installed as required.
The files are created using Adobe Captivate 3 and are stored locally on the affected machines
The files created were created in captivate with a standard 30 fps option
Can you please advise on this issue

Welcome to our community
As I understand things, when you launch an EXE file created by Captivate, it decompresses and temporarily installs a runtime version of the Flash Player. So I'm wondering if perhaps on these machines where the delay is occurring, if it would help to perform the following steps:
1. Clear all temporary files
2. Perform a defragmentation of the hard drive
I'd try step one first and see if anything improves. Perhaps that's all that is needed. The second step is simply a good habit to get into.
Cheers... Rick
Helpful and Handy Links
Captivate Wish Form/Bug Reporting Form
Adobe Certified Captivate Training
SorcerStone Blog
Captivate eBooks

Similar Messages

  • I've installed Flip4Mac WMV in Lion and when I try to listen to audio in some sites, it starts playing and after about 0.5 seconds it starts playing again. So, I have the same thing playing with a delay... What is happening and how to fix it?

    I've installed Flip4Mac WMV in Lion and when I try to listen to audio in some sites, it starts playing and after about 0.5 seconds it starts playing again. So, I have the same thing playing with a delay... What is happening and how to fix it? Is there any other way to play theese kinds of files without using Flip4Mac WMV?

    Use Flash Media Server to stream the files.......set up a timer and have all three of them play at once....and have a button switch the streams depending upon which stream you want to play.....and wallah......
    you can also capture the stream.time from the video playing and resume from that point on the other videos as well....havent done this theoretically so I dont know how smooth the transistion between streams will be....but it can be done....
    plus u may have to use double buffering techniques to make sure it starts up right away......
    thelegendaryghost

  • How to create a demo with time limit?  (timebomb)

    Hello,
    I would like to create a demo of a game I made but want to limit the amount of time it will run once installed.  (30 days).
    Is there an xtra or a straightforward way to do this in lingo?

    there is no straightforward way to do it in any programming language. I'm currently developing a Director-specific trial version solution, but it's not ready yet for general/commercial use. Are you looking for a free solution or are you willing to pay?
    Trial Versions are used so users can try out your software and then buy it if the software is something they want. So, there are two parts to trial software;
    1. the code that handles the trial version
    2. the code that handles the product serial and registration/licence keys
    The code that handles the trial version needs to be able to do these things:
    1. Keep track of the trial period. This involves recording the first run date/time and incrementing that date/time when the software is launched each subsequent time and comparing that against the trial period.
    2. Protect against backdating - turning back the computer clock to get more trial time.
    3. Protect against uninstall/reinstall.
    Dealing with all three of these issues becomes complicated; let's look at a solution using a licence file. What about a licence file will solve all the issues listed above?
    1. The licence file will contain the First Run Date (FRD), the Last Run Date (LRD), and other specific user and product info.
    2. A licence file should be encrypted to ensure it cannot be tampered with.
    3. A licence file should be moved to the user's AppData (or equivalent) folder by the installer software (such as NSIS). This ensures the first run date is only ever recorded once... what do I mean by this? If your app had to check first before opening and writing to the license file, then someone could easily circumvent the trial version by deleting the file at which point your application would be forced to move/write the licence file again and the user would be able to start the trial over again. Well, the installer only ever runs once. So, if it copies over the licence file during the installation process then our application, when it runs the first time, only has to check if the file is there; if not then the trial has been tampered with, if it's there then read the FRD, and if blank then we can be sure it's writing the FRD for the first and only time.
    4. The file could be hidden to ensure that an un/reinstallation of your software wouldn't circumvent your trial security. Another method is to write to the registry some entry that's obscure or looks like some other info for your software... this is what's called security by obscurity which is frowned upon in the industry, in general, but there's really no way around it in the case of trial software methods.
    5. A licence file can be used as a red-herring if you want to use an obscure/hidden registry entry to save the real trial version information. If that's the case, you should follow the same steps as above and have your installer write the initial registry entries so it cannot be as easily circumvented by your code checks.
    Encryption is a big part of trial version security. If you're using MX2004 or above then you can find javascript ports of some strong encryption algorithms such as AES or RSA. RSA is an asymmetrical (ie public/private key) encryption algorithm whereas AES is a symmetrical (ie. private key) algorithm. The important things to look for in an implementation are ones that will encrypt a variable length string. These implementations use modes to encrypt fixed length chunks of the string, thus making the core encryption algorithm useful in practical situations such as encrypting variable length strings.
    Creating a trial/registration .dir file (trial window) that gets published with the main application .dir file:
    Below, I've outlined these steps so you can see what I mean. I've tested this process and it's solid, AFAIK. Here are the steps:
    1. Create a project and name it movie1. Add a framescript with the 'go the frame' code on it.
    2. Add a label named 'continue' on the frame just after the 'go the frame' framescript.
    3. Add a button, and this code:
    go to frame "continue"
    4. Now, go into the Publish Settings options and go to the 'Files' tab and add any of your other .dir files you want under the 'Additional Files:' heading (the option to Play every movie in list will be checkmarked by default. Leave it like that).
    5. Now, Publish your project and you will have ONE .exe called movie1.exe which contains two .dir files that have been published.
    6. Open your User Temp folder and observe the folder that's created when you run movie1.exe... no temp .dir file is created when you run movie1.exe
    7. Creating another .dir with this code:
    go to frame "continue" of movie("movie1")
    ...does not work as it's looking for a .dir or .dxr or .dcr and will not work with an .exe.
    What this means is you can create a single executable that runs the trial window with all your trial version code and if everything checks out in the licence file then you can go to the main application movie. The trial window can be used to display the trial information, including a registration section, if you like. Google examples of trial version software to get ideas of what should be included in a trial version display.
    Resources:
    AES encryption written in Javascript: http://www.movable-type.co.uk/scripts/aes.html
    DOUG Article I wrote on creating product keys: http://director-online.com/forums/read.php?2,22279,22303#msg-22303
    Block Cipher Modes: http://en.wikipedia.org/wiki/Block_cipher_modes_of_operation#Counter_.28CTR.29
    AES - Wikipedia: http://en.wikipedia.org/wiki/Advanced_Encryption_Standard
    RSA - http://en.wikipedia.org/wiki/RSA
    Pseudocode for recording and comparing dates
    FRD = First Run Date
    LRD = Last Run Date -- this one would get updated every time the app was run.
    CRD = the systemDate
    NumDays = 30 -- the number of days for trial version
    dateGood = False
    If LRD > CRD Then
    -- the system clock was rolled back
    dateGood = False
    Else If (the systemDate) > (NumDays + FRD) Then
    -- trial version has expired
    dateGood = False
    Else If CRD > LRD Then
    -- everything is ok, so write a new LRD date in registry or wherever else
    dateGood = True
    Else If CRD = (_movie.systemDate) Then
    -- the dates are both good
    dateGood = True
    Else
    dateGood = False
    End If
    Typical Place to Write Application data to the Registry:
    HKCU\Software\<AppName>\<version>\
    eg. HKCU\Software\TRiShield\1.0\

  • My game sounds are played with noticable delay!

    hi.
    i'm writing a graphical game by java2D API .
    i have many threads to run,so when i use an AudioClip
    object to play my desirable sounds (.wav files),it would play
    with a noticable delay.
    i decided to use windows APIs through the JNI.
    but i must first write a c++ code (.h file)then convert it to a
    .dll .
    i don't know how i can call "sndPlaySound" function of "winmm.dll"
    library in C++ code.
    can you help me please?
    or another recommendation!
    thanks a lot.
    bye.

    i decided to use windows APIs through the JNI.
    but i must first write a c++ code (.h file)then
    convert it to a
    .dll .
    i don't know how i can call "sndPlaySound" function of
    "winmm.dll"
    library in C++ code.You might try posting this in the JNI forum.
    Generally it is not hard to do such things. sndPlaySound takes apparently a string and an int to specify the sound and how to play it. You would simply define a native method in your class, use javap to create the native header file and then make an implementation for that native method. The method would take a string and an int and convert them to the format expected by the sndPlaySound function, then just call it and you are done.
    I'd suggest passing an array of bytes rather than a Java string. Since a C string is really an array of bytes it is easier to work with it this way. You can do things like converting a Java string to bytes and adding the required NULL terminator from Java code where it is easier to do.
    Unless you don't know any C++ coding at all, in which case this could be hard to accomplish.

  • MXF file plays with audio on Source Monitor but timeline imports only the video

    Hello,
    This started happening like a few hours ago. But it was working perfectly before! This is driving me insane!
    This is the situation (Premiere CC, updated to latest version):
    - I have a bunch of MXF files and if I play them on the Source Monitor, audio and video play perfectly.
    - The moment I drag the MXF file onto the timeline, only the video is imported, not the audio.
    - I tried to drag only the audio, using the different ways that Premiere provides but it won't come at all.
    I managed to import audio and video doing the following: close all sequences, and drag the MXF file in the timeline with no sequence opened thus it will create a sequence with the imported audio and video from the MXF file.
    BUT if I try to drop the SAME MXF file in this brand new sequence, only the video will come again.
    Does anyone have an idea of what is going on? And why it suddenly stopped working?
    Thank you!
    Source monitor playing with audio:
    Timeline:

    Your second screenshot is missing a potential key. Is source patching enabled for any audio tracks?
    Learn more here: Adobe Premiere Pro Help | Source patching and track targeting

  • Appleworks file corruption with Time Capsule

    i've been working on multiple word processing files in appleworks the last couple of days when my time capsule begins to backup. every time i've had files open, they have been corrupted, and would not save. also, in my finder, i find these files labeled as huge strings of numbers and capital letters. i can open them and it's the last version i saved before the time capsule kicked in. (however, it's sort of like a ghost file - -i can see it, but i can't save any new information). now i'm paranoid and saving constantly, in case the time capsule pops up while i'm working! anyone else have this corrupt file problem with their time capsule? (we just got it, and we run leopard)

    sorry.. i've been away for awhile..
    no, i am talking about files which i have PREVIOUSLY created (say "dog.cwk") and have open, and am in the process of changing data when the time capsule clicks in. when the time capsule goes no while i am working in the file, two things happen. 1) i cannot resave the file, and must rename it to get it to save (so i will now have 2 files, dog.cwk and dog1.cwk) AND at the same time a file is automatically created that is named something like this:MAD321E581167430232-8119 (an actual file name that was created during one of these occurences). so i end up with 3 files: the original, the one i had to create to resave, and a third file that i don't know exists until i go into the hard drive to find out where my original went!
    also, if i save again while the time capsule is on, i can save to dog1.cwk, but it might create another file called MAD321E581167430232-8119-1. i've only had this happen once, but it's still weird.
    so, i am working on one file and i end up with 3 or 4.. and i can access and work in the original, but can't SAVE any changes.
    now i find out it happens in my photoshop files as well - so it looks like a time capsule issue or a hard drive issue, rather than just a single software issue.

  • QT v10.0 "save for web" creates file names with spaces?

    I find it strange that the additional exported files from "save for web" (iPhone, etc) auto exports files with spaces in the file names. Not only that, but changing the file names breaks the javascript.
    I work on a server that denies permission to files with spaces in the file names. I know it's a bit archaic - but it's also a long standing tennent of "good HTML" to creates files with a hyphen or underscore instead of a space.
    Is this something that can be addressed in the next update?

    If your using cs5 or cs6 you might try Image Processor Pro which seems to use underscores
    and has a save for web option.
    Dr Browns Services 2.31
    http://www.russellbrown.com/scripts.html

  • Create file mp3 with other partial mp3

    Hello, can i create a file mp3 from other file mp3 loaded in
    AIR? i want create a new file mp3 with 30 only 30 seconds of file
    loaded...

    I don't think this is possible in 1.5. I've heard from an
    Adobe rep that mp3 creation is "under consideration for a future
    release".
    Go request the feature, mabye it'll make the next
    release.

  • Generate two sine waves with time delay

    I have not been using the waveform generation tools so I hope this is an easy one for somebody.  I want to create two sine waves at different frequencies say F1 = 1.00 KHz and a second at F2 = 1.20 KHz.  I know that to combine them into one I can just add them.  Them problem I have is that I want F1 to start first then a few millisecond later have F2 sum into F1.
    T0 = F1
    T0 + Delay = F1 + F2
    Is there a VI capable of a time delay?  Tried to sum individual signals together but seems more difficult because of the waveform cluster format.
    Any help is appreciated,
    Matt
    Matthew Fitzsimons
    Certified LabVIEW Architect
    LabVIEW 6.1 ... 2013, LVOOP, GOOP, TestStand, DAQ, and Vison

    Would the attached VI work for you?
    Attachments:
    Add Delayed Sinewave.vi ‏54 KB

  • Need a sound card with time delays

    So.. I am looking for a sound card that is 7. channel (5. is still ok tough I perfer 7.) and that offers me Time aligment/time delays for EACH chanel.
    Does any of the Creative sound cards offer this?
    I browsed the creative page..but could not find any info...does maybe any other sound card offer that?
    ty.
    regards
    sergej

    I need one 2,
    I?ve bought a LCD tv a few day back and now i?m started building a media center pc.
    Now my dvd recoder allows me to adust the sound so it matches the screen?s lag.
    Is there a soundblaster card that gives you the ability to adust a delay in the sound?
    thanksMessage Edited by Pim on 0-29-200607:33 AM
    Message Edited by Pim on 0-29-200607:34 AM

  • Creating wireless network with Time Capsule

    hi, I just have couple of questions before installing the time capsule;
    so far I have been using cable DSL modem, so my question is - is it possible to set time capsule as a wireless router, or does time capsule still have to be connected with DSL modem and then act wiresly with iMac?
    I was thinking if i could replace cable DSL modem with time capsule
    thank you

    The Time Capsule has to be connected to your DSL modem. Otherwise you won't be able to connect to internet.

  • Automator- create file names with creation date and time

    I have photo files that I want to rename with a base name, plus a sequential number, based on the creation date (and ideally time). It appears that Automator does not honor the time of the source file when date stamping a new set of files. If there is anyway to use date + time so I can recreate a date_timestamp in addition to a base filename, that would be great.

    Hi Nikhil_BI_Dev,
    According to your description, you find your report runs properly in BIDS but shows blank after deploying onto report server. Right?
    In this scenario, it might be the issue on retrieving data in SQL 2005. Here is a thread with same issue, please refer to the link below:
    Detail report is blank after deploying
    Reference:
    Using SQL Server 2005 Reporting Services with SQL Server 2005 Express Edition
    If you have any question, please feel fee to ask.
    Best Regards,
    Simon Hou

  • Can I create a server with Time Capsule, where it would be possible for me to access files from any computer in my house?

    I have a Time Capsule 1T, so not sure what gen that would be. But I am in college and have about 5 apple devices that my family uses in our house and it would be nice if we could share files through a network. Can I even be helped?

    DropBox is another possibility for sharing files and it is free for the first 2GB of storage.
    Lou Picinich
    Member Apple Developers Network
    Certified Member Apple Consultants Network
    ACSP 10.5 → 10.7, ACTC 10.5 → 10.7
    ACS Security & Mobility 10.6
    Mobility Technical Competency
    [email protected]
    www.SystemXperts.com
    (623) 512-8992

  • Excel file name with Time stamp, also from a template?

    Hi i created this little vi that opens an excel template, then populates it with pressure and temperature values. that part worked fine.
    My issue is i'd now like to rename that template file so i can append the current date and time. ive started off trying to do this, but got a bit stuck! any ideas?
    ideally i want labview to pick the template residing at A, rename it, then save it in location B.
    How is this achieved?
    Many thanks
    Attachments:
    sepearet vi's.zip ‏33 KB

    i guess there are some native vis in the report generation toolkit (for excel), did you had a look in to them?
    If not may be you can, copy/move file found in the file i/o pallette
    Regards
    Guru (CLA)

  • Can you utilize Time Capsule to backup Windows 7 files simultaneously with Time Machine backing up your MacBook?

    Can you use the Time Capsule 2TB to backup files from a PC (using the standard backup program in Windows 7) while also using the TC 2TB to run Time Machine to backup a MacBook?

    mackalan wrote:
    Can you use the Time Capsule 2TB to backup files from a PC (using the standard backup program in Windows 7) while also using the TC 2TB to run Time Machine to backup a MacBook?
    Yes, it will work fine.. at least until the disk starts to fill up, then the expanding size of the sparsebundle can cause issues with the files from windows.. Pondini has made note of the issues..
    http://pondini.org/TM/TCQ3.html
    but I have to admit to doing precisely what you are talking about without problems.. as long as you maintain space.. plenty of space. Time Machine is eventually designed to use up all space on the TC.
    You cannot partition the TC drive without opening the TC and breaking warranty.. but you can create a disk image and put your windows backups inside it.. that might help to prevent issues.

Maybe you are looking for

  • Open page in browser in same window?

    I remember a few versions ago I could hit f12 and it would open my page in the same window - instead of creating a new window every time. Now, I'll have 20 open browser windows in a matter of minutes. Is there any way to get that feature working agai

  • Using Portal in complex apps.

    We are developing a fairly complex database application and we cannot get an answer on the possiblity of using Portal as a user interface, such as forms which we have used. Is Portal robust enough for us to use instead of forms. Can anyone give us a

  • Help with a infiniband driver

    Here I share with you a question I received from Gustavo Wolfmann, a professor from Universidad Nacional de Cordoba, Argentina. If you can help, would be great i am installing infiniband interfaces over our servers sun fire X2200, interfaces from mel

  • Personalize WebDynpro UI elements

    Hello Portal experts, we like to hide some fields in WebDynpro iview of HR (HCM) application. Therefore we use the "CTRL+right mouse click" Key to change WebDynpro UI elements in the preview screen of iview. Changing the UI elements will effecting in

  • [SOLVED] No sound in 32-bit OpenAL

    Hallo everyone. Firstly, I am new to Arch, but I've been using Linux for more than ten years. I must say, I love Arch! It's like a traditional-style distribution (no hidden options, no "you don't know what's best for you, I do!", no stupid flavours e