Software Simulation speed control

I published my first course with Captivate 8 and am testing its functionality within our LMS.  I am finding the timings of my software simulations very unstable.  In one launch, the simulations are running too fast while in another launch the simulations are running perfectly.  What is going on and how can the playing speed be better controlled?  I didn't experience this with Captivate 5.5.

Hi
As far as I know the only options available are what are there in the GUI. This has been true ever since Apple made this technology available in 10.4 Server. I don't know of anything you can do that will give you what you want other than possibly configuring the router to allow timed outgoing connections - if such a thing is possible? Bear in mind the SUS complains if it does not have a permanent internet connection. In 10.5 (judging by what some have reported on these forums) it has a tendency to download everything all over again, deleting everything it has already downloaded - strange but true. I personally have not seen this. The SUS servers of my experience run OK including Leopard Server.
On a side note and apart from the log or tcpdump there is no indication (progress bar or otherwise) that actually tells you 'visually' what is going on. This seems to me a missed opportunity by Apple to include a status bar of some sort. You would have thought they would have done this based on their experience of 10.4.
Perhaps there is a 3rd Party solution somewhere?
Tony

Similar Messages

  • Simulating Electronic (Analog) Motor Speed Control

    Is there a way of simulating (Analog) Electronic Speed Control in Multisim 10?  The system involves a permanent magnet DC motor with quadrature encoder, a frequency-to-voltage converter, operational amplifier circuits, and a MOSFET driver.  The parts that I am wondering about are the motor and encoder.

    Multisim has a motor but I don't see a quadrature encoder. The only problem I see is with the quadrature encoder as it partially works in  the mechanical area on a rotating shaft. There are no moving parts in Multisim or any other spice software that I know of. That would have to be simulated by creating a circuit in the electrical area that would mimic the mechanical function of the quadrature encoder. This could be a huge task and I wouldn't even begin to know how to accomplish that.
    Multisim's motor has a pin on it that electrically represents the RPM as a voltage that is read on a multimeter. I have found that it doesn't always work as expected in all applications. You would just have to try it and see it it works for you by adjusting it to your motor specifications.
    This is all I can tell you and if someone has an idea I would hope they would post it for you
    Kittmaster's Component Database
    http://ni.kittmaster.com
    Have a Nice Day

  • [Solved] Asus L1366 mobo, cpu fan speed control

    Hi, everyone,
    I finally have this new core i7 system, to replace my old AMD athlonx2.  I have one question about the CPU fan speed control.
    I remember that in my old system, the cpu fan speed control works out of box, no configuration is needed.
    But when I install arch 64 on this new i7 system, the cpu fan is running at its maximum speed constantly while the CPU temperature is modestly low. I know there is a wiki teaching how to do it.
    However, I am just curious why it doens't work out of box any more? Does CPU fan control work for you guys out of box normally? especially the new Core i7 cpu users?
    Please let me know, really appreciated it.
    Thanks a lot.
    Update: the issue is solved, see my last post, the solution is blacklisting: asus_atk0110, instead use w83667hg.
    Cheers.
    Last edited by mark.altern (2009-10-01 08:18:18)

    First off, it would be useful to know what the sensors-detect script actually reports.
    Okay. How fan control works on Linux: First, navigate to /sys/class/hwmon
    Each of these folders, i.e. hwmon0, stands for a sensors monitor / fan controller on your mainboard that may control one or several fans. Inside hwmonN, there should be a subfolder called device, which contains several interfaces if your BIOS allows software-side fan control. You can read them with cat and write to them with echo.
    Examples:
    pwm1_enable shows if OS-level fan control is enabled (1) or disabled and in BIOS control (0). Changing fan speed won't work if this is disabled. (i.e. cat /sys/class/hwmon0/device/pwm1_enable reports 0 -> disabled; you could enable it with echo 1 > /sys/class/hwmon0/device/pwm1_enable).
    pwm1 allows to change fan speed. The values range from 0 (fan off) to 255 (full speed, 12V).
    fan1_input shows the current RPM if a fan is connected. You can only read from this interface. Its useful to check all of these in the each of the hwmon folders to find out if there is actually a fan connected to the fan controller (they often have more ports than mainboard manufacturers use).
    There might be a fan1_div, this is somehow related to how the kernel reads the RPM, I don't know how it works.
    temp1_input interfaces can appeare too, if some of the chips have temperature sensors located somewhere. I *think* lm_sensors places the core temperatures it reads from CPU (the coretemp-isa-000X thingies) in one of the hwmon-folders too.
    There might be interfaces for different fans in the same hwmon folder, i.e. pwm2_enable, pwm2, fan2_input, etc., all interfaces with the same index belong to the same physical fan connector, and all in the same hwmonN are managed by the same IC on your mainboard.
    Warning: These interfaces, if they work, control the fans directly without any kind of security measure. If you shut some essential fan down, it will stay off until you reboot your CPU shuts down.
    (If you see something likein0_alarm, in0_input, in0_max, etc. it's a voltage monitoring chip.)
    If one of those interfaces can do something, OS-level fan control does work, if none of those folders contain a working pwm interface, fan control seems to be unavailable.
    Sometimes there is an option in the BIOS to enable it, and for some BIOSs software-side fan control only works if dynamic fan control is disabled in the BIOS and fan speed is set to a static value - or vice versa.
    I don't know what you are using to control fan speed, there are many applications that use these interfaces, i.e. GNOME or KDE power managers, so I'm not sure what is happening:
    IF: Windows 7 enables OS-level fan control and sets it the RPM to those you observed and you have nothing that provides fan control in Arch and so fan control stays at BIOS-level, which might also read out a different sensor / the same sensor differently or it might be more conservative in setting fan speeds altogether;
    OR: You have something that provides fan control installed in Arch and it reads out a the wrong value supplied by lm_sensors and thus sets a higher fan speed.
    Anyway, possible solutions I can think of:
    Find out if you have some kind of fan control software and what it does. For example, I use the fancontrol daemon, I can't help you if you use something else.
    The wiki mentions how to assign a fan speed to a certain temperature sensors. You might assign it to a different one. For example, there are no sensor chips on the mainboard of my EEE (no temp1 etc.) so I assigned the fan speed to the temperature reported by the BIOS via ACPI (those are in /sys/class/thermal, also no "device" subfolder on EEEs):
    FCTEMPS=/sys/class/hwmon/hwmon0/pwm1=/sys/class/thermal/thermal_zone0/temp
    You could also change the MINTEMP/MAXTEMP values to one higher than those you actually want to compensate for the effect of lm_sensors reporting temperatures that are too high.
    It is currently not possible for a mortal user to change the coretemps lm_sensors reads, see this post, last paragraph.
    There is a configuration file, /etc/sensors3.conf, you can change sensor names and adjust offsets here, but only for the monitoring chips and their sensors that are on the mainboard.
    Last edited by Malstrond (2009-08-19 19:34:22)

  • Captivate 4 will not record software simulation with Windows 7

    Hi,
    I have a Dell M6400 labptop, 32-bit, operating system is Windows 7.  The patch I downloaded through Help->Updates-> on Captivate fixed
    my microphone problem, but did not help the software simulation problem.
    I get as far in the process as having the screen setup with the red bounding box and controls visible.  After choosing automatic I then click on the record button.  There is a shutter sound, but it won't save anything.  I get back to Captivate and it has not recorded anything.
    I then installed it on my main computer which is 32-bit and uses windows xp.  I did exactly the same thing as my above mentioned laptop and it did the software capture beautifully.  So it must be the Windows 7.
    I am disappointed that the patch didn't fix that.  Will one be coming soon that will?

    Okay, I have been trying to use Photoshop CS4 Extended as my software simulation.  It refused to work on Captivate 4
    numerous tries, but now for some reason it is working fine.  The only thing that I did different was to go into Photoshop's
    preference-->performance--> and the openGL was unchecked and I checked it.   I think that Photoshop had a problem and turned off the
    the openGL.  I have the latest update for my graphic card, so I'm not sure why it affected the GPU.
    I didn't think to try other programs, but now I have, and they are working fine too.
    It could be that the problem was with Photoshop instead of Captivate.

  • Audio Freezes During Software Simulation

    Hi Everyone,
    I hope one of you (maybe Rod?) can help me.
    I'm a newbie to Adobe Captivate (~2 months), and am having an issue when I try to record a Software Simulation on Captivate 8. I go through the whole ~13 minute video with narration, but when I go to edit the audio on the individual slide the whole system freezes and I can only force close with the Task Manager. I've tried for ~10 hours, and lost beautiful, ready to publish recordings more times than I want to count.
    At first I thought it was my less than optimal computer set up at work, but I get the same result with my video game rig at home which has a video card etc. I've checked a few other sites and forums for solutions, and I'm at a loss.
    A few notes:
    I do have administration rights
    My work computer has 2 monitors, but my personal computer only has 1 monitor.
    Pressing ESC doesn't work
    I'm showing a process on my company's website, and as such, the Full Screen option is best. Should 800 x 600 be used anyway, even through it will require *tremendous* sliding and panning?
    Could it be Preferences or something to do with Set Up?
    Thank you!!
    -Lauren

    Hi Lauren. Sorry you're having a bad day.
    I would normally put this issue down to using two monitors and having the Slide Audio dialog appearing OFF screen where you cannot interact with it.  But you say you don't get control back when you hit the ESCAPE key.  So the missing dialog issue might not be causing your problem in this case.
    You could also try cleaning out your project cache and your TEMP cache folder where your video captures are stored (look in your Preferences settings to find where it is).  Make sure all of your default folders are located on your PC Cdrive and not on a network anywhere.
    I would also suggest you first try some tests to see if this issue has anything to do with computer resources being insufficient for the task, or whether the issue might be something else like audio drivers etc.
    First, try just capturing a very short section of maybe just a minute or so.  Do you get the same result?  If yes, then this is NOT likely to be a lack of resources due to the size of the capture.
    How long is it since you updated your audio drivers on either PC?

  • Software Simulations

    Hi,
    I am doing a software simulation course of Audacity (audio editing app) and was wondering if anyone had any ideas regards events that are somewhat less common while creating Captivate simulations. For example, I want the user to move 4-5 sliders to a certain value. My first and only idea was to so into full motion recording using the shortcut for the parts that use the sliders and then use text-entry boxes in the assesment section.
    Another situation is when editing audio, the user must drag-select a portion of the audio and delete it or apply and effect to it. The only thing I could think of was to simply put a click box over the portion of audio that the user is supposed to drag-select and then when they do it in the assessment they won't actually drag but it will trigger that portion of the full motion recording and then they will just have to press DEL to delete it.
    Any thoughts?

    Some software tasks are simply NOT a good fit for simulation.  Drag selecting a piece of audio is one such task.
    As far as replicating the actions of slider controls, there is a widget that would allow you to do this, but whether that's still too much trouble considering all the other things you would NOT be able to simulate is up to you.
    http://www.infosemantics.com.au/adobe-captivate-widgets/slider-component

  • Advice: CP6 - Software Simulations

    I am working on a project that is mainly using software simulations.  We create our content once and then customise which modules and some of the content and brand for each indivual customer and generally we provide them with the files to host on their network. 
    I really like the video demo in CP6 and thought this was going to be the way to work this but then realised that when we provde the customer with the fies they have the nice mp4's which aren't branded so it would make it easy for someone to get hold of these and use our content.  I am therefore back to creating the content using automatic/manual recording which is all contained within the swf but it makes the file sizes much bigger which shouldn't be that much of an issue but the pre-loader doesn't really seem to be working - no matter what percentage I enter it takes the same amount of time to display.
    Is there anyway to have each module as a seperate swf and only preload once its selected - I think that aggregator still preloads everything?
    Is there something obvious I'm missing about the preload which would explain why it doesn't work?  My audio files are chopped up not one big one and there is no fancy actions or anything.
    Previously we have used flash to control the indivdual swfs but we need this content to be mobile friendly too.
    Any suggestions or ways of achieving this that I haven't thought of would be appreciated!
    Thanks

    One thing I forgot to ask: Is this project built from scratch in Cp6 or was it upgraded from an earlier version of Cp?  If the latter, you may need to remove your current preloaders and set the path again to the Cp6 preloaders.  Upgraded projects may still show the path to the old location of the preloaders from the previous version and this can be the reason they don't work at runtime.  They're not found at publish time.

  • Is anyone else trying to use Edge Animation to create software simulations?

    We're in the process of evaluating Edge Animate to create software simulations. We want to use it because it has many great HTML5 functions. We're also evaluating Captivate7 - which also has an HTML5 option - but it lacks some of the functionality we're looking for. Like the ability to show users a 'hint' when they hover their cursor over an object. Why that functionality isn't there already - I still can't figure out. It would be create if Adobe could take some of the functionality in Edge Animate and incorporate it into Captivate! It would make an awesome product!
    If you're attempted or were successful creating a software simulation using Edge Animate - I would be interested in hearing how you accomplished it. Also looking for some best practices around this idea.
    I think Edge Animate would be an amazing product for software simulation if it incorporates a few enhancements.
    In the timeline - allow the user to nest things. The timeline can get unwieldy quickly. Would be nice to be able to nest items and then twirl the nested items to hid them - like in AE.
    Enable AE functionality with the ability to play one Edge Animate piece inside another.
    Provide the ability to add video with transparent backgrounds. We wanted to have someone walk on screen and appear as if they were walking on the software. Can't do it in Edge Animate!
    If you have any other ideas or suggestions for creating software simulations in Edge Animate - would be great to hear from the community

    Hi there,
    Thanks for your suggestions! We're looking at ways to make the timeline more flexible as far as nesting and/or hiding elements, so hopefully these types of improvements will come as Animate continues to grow. Just wanted to quickly pop in to address a few of your bullet points - hopefully, other Animate users can answer regarding whether they use Animate for software simulation.
    Your first two points (I think) can be at least somewhat addressed by using symbols. Each symbol has its own timeline which can contain many elements, but it will appear as a single element in the main (Stage) timeline.
    Regarding video, there's currently only one HTML5 browser that natively supports video with alpha transparency: Chrome, using video encoded to the webm format. See here for more info: Alpha transparency in Chrome video - HTML5Rocks Updates
    Once other browsers start incorporating native support for video with transparency, this could be pretty cool. But as of now, native browser support is still quite limited.
    Thanks,
    Joe

  • Can I show quiz results in the recording of software simulation?

    Hello, Everybody, I'm using Adobe Captivate 7. I want to show quiz results after recording the software simulation. If the recording type is training, the user need to click for the instructions. When the user's click is wrong, the captivate will show the failure message and I want to reduce my score due to the wrong click. Please give me a instructions. Thanks!!!

    Please do not double post issues.

  • How do i remove popups in software simulation - captivate 8

    Hi,
    I have recently moved to captivate 8 - straight from captivate 4. I have recorded a software simulation and am now in the process of editing it. On some screens captivate has captured the popup messages you get when you hover over a button or link, in the past in captivate 4 i would copy the background out of captivate, remove the pop using paint or photoshop and paste the edited background back in to the simulation.
    In captivate 8 i finding i am unable to do this. When i preview the screen capture the pop up message appears, however when i look at the background there is no pop up. It seems to be there as part of the screen capture, if i use the skimmer to run over the timeline the popup appears in the last few seconds, if i trim the slide of the seconds the pop up remains. I have been unable to find any options for removal of the pop ups.
    Does anyone have a solution for this problem?
    Thanks
    Glenn

    Yeah, somehow those tooltips are animated in the background slide.
    My fix: edit that background slide in Photoshop, ensure it shows what you want (i.e. not the tooltip), copy (or save) that flattened background image, back to Captivate, create a new slide after the 'odd' one, paste the background slide (merge with background), copy over any other elements from the 'odd' slide...then delete the odd slide.
    There is an option to capture tool-tips or not, I believe, in the capture setup/preferences...

  • Problem with multiple output for software simulated project

    When a software simulated project in captivate is published more than thrice, the output is not generated properly, i.e not in-line with the project. Is this a problem with my system or due to some settings in captivate which is not activated?

    Thanks for the suggestions Malcolm,
    They're very handy app's for sure, but unfortunately they didn't fix the problem.
    Detour DID overide the routing for iChat's general bleeps & noises, but not the audio stream from video conferences (which is the problem I want to fix).
    If anyone has any other suggestions for fixes, I'd appreciate it!
    Thanks again,
    Jason

  • Flash Web Gallery Slide Speed Control?

    Using LR 1.1 I put together (in the web module) and ftp'd to my web server a number of images of a dog show, as a slide show. I used the basic flash gallery template that comes with LR to do this.
    It works just fine for me but some of the viewers have asked for the ability to speed up or slow down the slides. Does LR have the ability to allow viewers to do that?
    Or on a more basic level, can I adjust the timing of the changes before I upload the gallery?
    I believe there is a speed control when creating a .pdf slide show but I can't find one in the web module.
    You can see the show (if you really like dog shows, or just want to see what I am talking about) at http://bobbaron.com/OKCClassic2007BW/index.html
    Thanks,
    --Bob

    One more Question: In the downloadable templates there is Web Gallery 3: In the Samplefile the thumbnails are all rotated a litte, how is that done?

  • Published software simulation not displaying correctly when published

    Hello,
    When viewing a Captivate 6 software simulation either through the Preview mode or when published, screens will 'break up' at different points - part of the previous screen will stay in view when it moves to the next screen. This doesn't happen for the first couple of times it is viewed, which is a worry as you never know who/when it is going to happen.
    Once the projects is copied over to a new blank project it will be fine for a few views and then do the same again - it is not always at the same place.
    Does anyone know what may be causing this?
    Thanks,

    You might try de-selecting the Advanced Project Compression option in the preferences:

  • Phantom Lines in CP (6.1.0.319) Software Simulations

    Does anyone else have a problem with phantom lines showing up in their published CP software simulation slides?
    They don't display in my previewed copy, but do in the published SWF... and only in my software simulations, not in non-recorded slides.
    To see what I'm referring to, here are two screen shots. The first one shows (SWF) the phantom lines and the second one (preview) with without any phantom lines.
    (LINES)
    (NO LINES)
    Any suggestions for correcting this problem?

    These are usually caused by Captivate compressing the SWF file.  You can try Edit -> Preferences-> Swf Size and Quality, an de-select the compression options.  Then republish.

  • Cannot change slide duration in software simulation

    I'm using Captivate 7 for the first time. I had a much older version, but seldom used it.
    I have recorded a simple software simulation that should be a piece of cake to edit and produce, but have come across a problem I don't know how to solve. The simulation includes an item on screen being clicked, then dragged and dropped into a new location. I cannot edit the duration of the slide that shows the drag-and-drop motion. It has a duration of 6.5 seconds, which is painfully and unrealistically slow and there is no way I can find to shorten it.
    I can't drag the end of the slide on the timeline, right-clicking hasn't produced anything promising in pop-up menus, and the Properties panel has a Time field, but when I select the 6.5 seconds and change it, it just reverts to 6.5 seconds immediately afterward.
    I recall this sort of thing being very simple in previous versions of Captivate. Not anymore, I guess...
    Thanks,
    - Jennifer

    Thanks, guys! Those replies led me to try something that actually worked. It did record as a video demo (the red strike-through line) as Varun Kalra suggested. I discovered that I can click the end of the timeline for that slide (where the word END displays), then use the left arrow on my keyboard to decrease the duration of the slide.
    That probably wouldn't work if the entire animation was too slow, but in this case, just the very end was too slow.
    Thanks much!
    - Jennifer

Maybe you are looking for

  • Getting "could not sign in...server error"

    Trying to set up an ipod for a birthday present tomorrow but keep getting this message. I have a working Apple id etc. What can I do? Help please!

  • Restoring function to Mighty Mouse

    I once found a post here to temporarily restore vertical scrolling function to a Mighty Mouse by cleaning the scroll ball with a paper towel moistened with rubbing alcohol. That worked for a while, but after 6 month of just working, it went to needin

  • Newbie having trouble with iCloud

    Hello- I was at the Verizon Store today for 3 hours trying to learn the basic of the iPhone 5. There is a lot for me to learn, but one day at a time. For some reason I was able to use my iTune sign-in info for an App that required it and I can sign i

  • Safari, mail, etc freezing

    Over the last few month I have noticed my 2006 Mac Book Pro, is getting slower and slower and then starts to freeze with the the coloured wheel spinning. To the point of having to erase and reinstalling from the time machine back up. This seems to cu

  • WLS server JVM disappears mysteriously after using management console

    Has anyone had a problem with the server process JVM mysteriously disappearing after using the management console? I am able to login to mydomain, configure a JDBC connection pool, and then a Tx Data Source. But when I set the chosen target for my Tx