SWF Playbars

Hi,
I think what they are trying to say is similar to the problem I am having. I have inserted a SWF file by going to insert>animation.. What I am trying to do is have the playbar in the SWF file appear so that there would be a total of two playbars... one with the SWF file animation, and the other that controls the entire captivate file.
Unfortunately Captivate does not give the "FULL SCREEN" option, so ultimately I have created a SWF file that has the FULL SCREEN MODE option. I am trying to get this playbar to appear
Please let me know if anyone has found a solution to this problem or if I need to further elaborate on my issue.
Thanks so much.

Hi Stefan
I'm not sure if you are interested in this, but you might
want to contract with fellow Community Expert Paul Dewhurst to
design you a Flash playback control that does what you want. He's
pretty sharp with that stuff and I'd never hesitate a moment to
recommend him. His web site is
http://www.raisingaimee.co.uk
and I'm pretty sure his contact information can be found there.
Cheers... Rick

Similar Messages

  • Mute Bug in Captivate Playbar Widget Templates

    I believe that I have found a bug that is persistent throughout all of the Captivate 5 playbar widgets (i.e MountainBluePlayBar.swf, PlayBar.swf, etc..).
    Description:
    When using any custom playbar widget in Captivate, the "mute" icon changes erratically on slides regardless of whether or not the sound is muted when moving forward or backwards through the course.
    Steps to recreate:
    I wanted to create a custom playbar for my organization using flash AS3.  I began by modifying the source of an existing playbar in the following folder: C:\Program Files\Adobe\Adobe Captivate 5\Gallery\Widgets\Source.  The only changes that I made to the widget were cosmetic graphical changes.  I published my playbar widget and placed it on the master slide so it would be visible on all slides.  While previewing the course, if I click the 'mute' button, the audio mutes and unmutes as expected.  However, if I move forward or backward through the slides, the mute icon toggles erratically.  I have found this to be true both with my own custom widget, and the examples that shipped with Captivate.
    Workaround:
    I have found a workaround that displays the correct mute icon status. However, it requires testing the status of the Captivate's cpCmndMute variable on each frame(onEnterFrame), so it's not the most elegant solution.  I added the following lines in red to the pbEnterFrame function on the playbarMc movie clip.
    function pbEnterFrame(evt:Event){
        if(varHand != null){
            var per = Math.ceil(varHand.rdinfoCurrentFrame / varHand.rdinfoFrameCount * 100);
            var wid = pBarMc.bound.width * per / 100
            pBarMc.pb.width = wid;
            if(!isDraOn){
                pBarMc.thumb_mc.x=pBarMc.pb.x+pBarMc.pb.width
            //Start dirty, dirty hack - Chack each frame to see if parent movie is muted, hide or show mute clips
                 //depending on the outcome.
            if(varHand.cpCmndMute == 0){
                pbcAudioOff_mc.visible = true;
                pbcAudioOn_mc.visible = false;
            }else{
                pbcAudioOff_mc.visible = false;
                pbcAudioOn_mc.visible = true;
            //End Hack
    Please let me know if I'm missing something, or if this is fact a bug.  I will just use my workaround for now.

    Hi swmangold,
    We are able to reproduce the aforesaid issue.
    We request you to log a bug for the same at https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform&product=5.
    Thanks,
    Subhransu

  • Embed Playbar in SWF

    Hello,
    Thanks in advance for any and all assistance on this.
    In Captivate 1.0, the playbar for a SWF file was
    automatically embedded in the final SWF file. I'm now using
    Captivate 3, and while I generally enjoy having the separate skin
    SWF generated, I'm in a situation where it would be much easier to
    embed the playbar into the SWF file and have 1 standalone file that
    contains the play controls.
    Is there a way to do this in Captivate 3? I realize that I
    could create my own navigation buttons and apply them to every
    slide, but I'm hoping that there's a quick "click here to embed
    playbar in final SWF" button that I'm missing.
    Thanks again!
    Mark

    Hi Mark
    Piece of cake. Click Project > Skin... > Borders tab
    and DE-select the "Show Borders" check box. Then re-publish your
    output.
    voilà! No more _skin.SWF in the mix!
    Cheers... Rick

  • Print button on playbar

    I noticed a Print button on a playbar on a demo about aggregator (on Adobe's site).  How can i get a print button like that?  Is that a widget that costs or is it available with version 6?  Thanks!

    Hi there,
    Welcome to Adobe Community.
    You can have a Print Widget in your project. Just look under Wndow > Widget. There is a one called Print.swf.
    Thanks!

  • How do I use AS3 to hide a playbar skin?

    I would like to use an overlay skin on a flash project with an imported video. The video is taking up the entire window, so the skinAutoHide attribute does not work, because the mouse leaves the window before the skinAutoHide functionality kicks in. I found this code snippet that hides the playbar as soon as the mouse leves the window:
    vpl.skinAutoHide = false;
    stage.addEventListener(Event.MOUSE_LEAVE, hideSkin);
    stage.addEventListener(MouseEvent.MOUSE_MOVE, showSkin);
    function showSkin(evt:Event=null):void {
    vpl.skinBackgroundAlpha = .01;
    vpl.skin = "SkinOverPlaySeekMute.swf";
    function hideSkin(evt:Event=null):void {
    vpl.skinBackgroundAlpha = 0;
    vpl.skin = "";
    vpl is of course is replaced by your instance name.
    This solution works really well until I click the maximize window  icon. Now the playbar is stuck in the visible state because the mouse no longer leaves the window. I've read about solutions that involve placing a pixel buffer around the video and enabling skinAutoHide, but this doesn't work if the user moves the mouse quickly off the window.
    The same poster of the above code posted a second snippet, that was supposed to hide the skin after several seconds of mouse inactivity.
    vpl.skinAutoHide = false;
    var LastMouseMove=getTimer();
    var MouseStill=false;
    stage.addEventListener(MouseEvent.MOUSE_MOVE,function(ev:MouseEvent) { LastMouseMove=getTimer(); });
    var MainCheckLoop=setInterval(function() {
    if((getTimer()-LastMouseMove)>1000) {
    if(MouseStill==false) {
    hideSkin();
    MouseStill=true;
    } else {
    if(MouseStill==true) {
    showSkin();
    MouseStill=false;
    },1000);
    stage.addEventListener(Event.MOUSE_LEAVE, hideSkin);
    stage.addEventListener(MouseEvent.MOUSE_MOVE, showSkin);
    function showSkin(evt:Event=null):void {
    vpl.skinBackgroundAlpha = .01;
    vpl.skin = "SkinOverPlaySeekMute.swf";
    function hideSkin(evt:Event=null):void {
    vpl.skinBackgroundAlpha = 0;
    vpl.skin = "";
    I do not get any compiler errors, but my screen is blank (and I did remeember to change the vpl.skin name to my skin name and name my instance vpl).
    I do, however, get an output error: Error #2044: Unhandled skinError:. text=Error #1009: Cannot access a property or method of a null object reference.
    If I can get this to work, I think it would be the best solution.
    Can anyone help?
    Thanks!
    Peter

    Would it be
    stage.addEventListener(Event.RESIZE, showSkin);
    added right here:
    vpl.skinAutoHide = false;
    stage.addEventListener(Event.MOUSE_LEAVE, hideSkin);
    stage.addEventListener(MouseEvent.MOUSE_MOVE, showSkin);
    stage.addEventListener(Event.RESIZE, hideSkin);
    function showSkin(evt:Event=null):void {
    vpl.skinBackgroundAlpha = .01;
    vpl.skin = "SkinOverPlaySeekMute.swf";
    function hideSkin(evt:Event=null):void {
    vpl.skinBackgroundAlpha = 0;
    vpl.skin = "";

  • Custom playbar does not display in the list of available widgets

    I followed the steps described in the "Skins" page of the Captivate 5 help outlined here:
    http://help.adobe.com/en_US/captivate/cp/using/WSc1b83f70210cd101126156ac11c7f147d6b-8000. html
    Now my problem is, that my custom playbar is not displayed in the list of available playbars (neither in the Project->Skin Editor->Playbar nor in the list of widgets). If I just duplicate one of the existing playbar files in Gallery/Widgets/Playbars it's listed without problems.
    I use Flash CS5 to edit the playbar and tried to publish it as AS3 and AS2 - no success.
    Are there special settings I need to set in the publishing settings to get my playbar in the list? Anything else I'm missing?!
    Thanks,
    Peter

    Try putting the swf for the playbar in ...\Adobe Captivate 5\en_GB\Gallery\Playbars\AS3\

  • I want to create my own playbar in flash. How to install?

    Hi,
    I'm running cp7. I want to write my own playbar in flash and have it show up in the skin editor so I can choose it. I created one with a .swf extension and put it in the playbar folder, but I still can't see it in the skin editor. Suggestions?
    Thanks!
      Lori

    Which 'playbar' folder did you put it in?  There are two.
    C:\Program Files\Adobe\Adobe Captivate 6 x64\en_US\Gallery\Playbars\AS3
    C:\Program Files\Adobe\Adobe Captivate 6 x64\Gallery\PlayBars

  • Creating "Back" Navigation in a Branching Project Without the Playbar or a TOC?

    Hello,
    I've been struggling with accomplishing a very simple goal: in my Captivate project, I want there to be a "Back" button on every single slide that sends the user back one slide based on their navigation history throughout the slide.  The playbar must be disabled, and I don't want the user to have to deal with a Table of Contents.
    Because this is a somewhat complex branching project, using the "go to previous slide" selection for a button will not work -- this simply sends the user one slide back in the filmstrip, and that might not be where I want them to go.
    Using the "go to last slide viewed" selection for a button also will not work.  This creates an infinite loop in which once the user clicks the "Back" button on one slide, they will go to the previously viewed slide, but when they click it again, they will return to the original slide.  For example, repeatedly clicking this Back button will send the user from slide 2 to slide 1, then slide 1 to slide 2, then slide 2 to slide 1....etc.
    Basically, all I want is an internet browser-style back button within my project.  I figure this is a fairly common thing that project creators want to do, so I checked for any available widgets that might offer the desired functionality, but I've come up with nothing.
    It would seem as if my only hope lies in two potential places: either the execute Javascript selection for buttons, or Advanced Actions.
    Before I dig too deeply there, I was wondering if anyone had a simple solution for this very basic problem.  I've looked around the forums, and this particular thread looks very relevant: http://forums.adobe.com/message/4575291#4575291 .  In that thread, it looks like the original poster just decided to create a separate swf for each of the linear branches of their project.  For my project, this would be a most inelegant and clutttered solution.
    Anyone have any ideas?  If I must use Advanced Actions / variable creation, could you point me in the right direction?  I'm on Captivate 5, by the way.  Thanks.

    Indeed this issue has come up several times over the years, because some authors would like Captivate content to work in much the same way that other web-based content playing in a browser does.  When users see content in a browser, they expect there will be a Back button that takes them to the last-visited slide. If they just keep clicking that Back button, they expect it will retrace their path through the content.
    What happens under the hood in the browser is that it stores all the URLs that the user visited in an array of sequential values, which allows the browser to retrace the user's path.
    Captivate currently has no built-in array facility available to authors for this purpose.  Captivate variables can only store one value.  Advanced Actions are not powerful or flexible enough to build the kind of programmatic loops that would allow you to traverse a series of variables to try and duplicate typical Back button functionality.
    It might be possible to do all of this using some fancy JavaScript coding, but you (or someone that owes you a favour) would need decent coding skills to pull it off.
    I think it would be great to log an enhancement request with Adobe for a couple of Advanced Actions to be added for this need.  Perhaps we could call them Go Back History -1 and Go Forward History +1.  These would just reference an internal array somewhere in the bowels of Cp where the History is kept.  Then all authors would need to do is choose this as a button action or an action in a conditional advanced action of some kind.

  • How do I remove the "TOC" btn in the playbar WITHOUT removing the TOC "Expand/Collapse" icon?

    I am working in CP7 on a project with a Table of Contents that is set to 'Overlay'. The client has requested that I remove the "TOC" button in the playbar, without removing the TOC "Expand/Collapse" icon, so that the user can still hide/reveal the TOC when necessary. The only control I can find is the "Show TOC" checkbox under Project > Table of Contents. However, un-checking this option removes both the "TOC" button AND the "Expand/Collapse" icons. Is it possible to remove just the "TOC" button in the playbar?

    If you are using SWF output you can always edit the playbar in Flash and remove it.
    If HTML5 you can edit the JavaScript out put to remove the button from the playbar.

  • Converting video to swf files in flash for breeze

    Hello,
    I am using Adobe Premiere Pro 2 and wanted to know what the
    best video codec and audio codec to use when I export to create a
    video file to insert into flash to convert to a swf file for
    breeze? I am having trouble with the audio, must I demux it first
    before I put into Flash? Or is there a audio codec that I can use
    in Premiere so I don't have to demux the audio?
    Also, when I insert a swf file in breeze plug-in for PPT, it
    does not play the video or give me the controll by presentation
    playbar I checked off. Not sure what I'm doing wrong, could use
    some help, thanks.

    billcorrigan schrieb:
    > Jerich0, I tried this and when I publish it, the swf
    opens a connection to the
    > server, and starts streaming but nothing happens. Just a
    blank movie.
    >
    > The content is at (FLV):
    >
    >
    http://breeze.extn.washington.edu/p45023528/
    >
    > and the swf is at
    >
    >
    http://breeze.extn.washington.edu/p17629788/
    >
    > I created the swf by creating a new document in Flash 8,
    selected components,
    > edited the infomation in media player and saved the
    file.
    >
    > any suggestions?
    >
    hi,
    if you work with the player component the .flv is not
    embedded in the
    swf. In Breeze you can only insert a single flash file I
    suppose, so the
    attached .flv file won't show up.
    Kathrin

  • A swf within a swf

    Hi,
    Hopefully someone can help me with this...
    I would like to embed a swf (call it swf 1) within my captivate 5.5 project (swf 2), but the catch is that swf 1 is interactive.  More specifically there are pause points within the course where learners need to play around with roll-overs or other features before clicking a button to resume.  There are a number of swfs going into swf 2, but I thought it best to focus on one for now.
    The idea is to publish the main project (swf 2) with a skin and TOC and to be able to control progress all progress, including the progress within swf 1, using the playbar from swf 2 - i.e. if I click on the playbar at a certain point, it should take me to that point even if it is half way through swf 1.
    I know how to add an animation to a slide and synchronise it with the project so that I can get that kind of playbar functionality.  However, this only works if swf 1 plays from end to end without any interactivity.  It doesn't seem to work when swf 1 pauses in the middle (in fact swf 1 barely even starts, before it vanishes again, leaving me watching the background of the slide that it was on).  Alternatively, if I don't synchronise it, then the main project will continue on to the next slide regardless of whether swf 2 has finished or not.
    So, the question is, how can I insert an interactive swf into the main project, synchronise it and retain the interactivity?  Any helpful, not too technical suggestions?
    Thanks.

    You won't be able to achieve this in Captivate without having advanced ActionScript 3 coding skills.
    You are better advised to find another way of delivering the effect you want that does NOT involve nested SWFs.

  • Exit button not working Captivate 7 output to HTML5 and SWF

    I have several courses developed in Cp 6.5 that do not have this issue and are currently running on Taleo LMS.
    I've built a test course with 6 (mostly blank) slides, including two quiz questions. On the final slide I have placed a Finish Course button with On Success: Exit action. The project end options are set to close project and I've included an On Exit: Exit action on the final slide. The Finish Course button successfully closes the browser window in Preview in Browser (IE9) and Preview HTML5 output modes.
    I then published the course to both HTML5 and SWF output formats with scalable HTML selected. Once I uploaded the course to the LMS and tested it, the Finish Course button does not close the browser window. I've tested in IE9, Firefox, and iPad, and it doesn't work on any of these. I've also tried including the built in exit button on the playbar, and it doesn't close the window either. At the final slide, after clicking the Finish Course button, the slide fades to white and then stops.
    The LMS reports that the course is complete; I thought maybe it was an issue with the settings in the LMS course, however I have several other courses that were developed in Cp 6.5, published to the same LMS with the same "Exit" button on the final slide, and I have mirrored every course setting that has worked in the past.
    Any suggestions as to what could be keeping the window from closing?
    Thanks,
    PV

    Why does there need to be a button used now when in CP 6 and 6.5 it worked seamlessly? Will this be fixed by Adobe and when?
    Adam Lynch
    Senior Media Specialist
    Project Lead The Way, Inc.
    3939 Priority Way South Drive, Suite 200
    Indianapolis, IN 46240
    phone: 317.669.0845  | mobile: 518.469.7617
    fax: 317.663.8296
    www.pltw.org<http://www.pltw.org/>
    Preparing students for the global economy. Now even earlier.
    PLTW Elementary coming fall 2014. Click here to view the trailer<http://www.youtube.com/watch?v=rikLnSAoTpQ>.
    Confidentiality Notice: The information transmitted is the property of the sender and is intended only for the person or entity to which it is addressed and may contain confidential and or privileged material.  Statements and opinions expressed in this e-mail may not represent those of Project Lead The Way, Inc.  Any unauthorized review, retransmission, dissemination and other use of, or taking of any action in reliance upon, this information is prohibited.  If you are not the intended recipient, please contact the sender by reply e-mail and destroy all copies of the original message and delete the material from any computer.  If you are the intended recipient but do not wish to receive communications through this medium, please so advise the sender immediately.

  • Where are the playbar files Captivate 6 on Mac?

    I want to change the playbar control images so they are larger when played on an iPad.  I can't seem to find where the files are, and any clear instructions how to change them.  I have Captivate 6 on a Mac.  Any pointers about how to modify the playbar to work well in html5 / iPad would be great.
    thanks

    Hello,
    Welcome to Adobe Forums.
    Playbar is a Skin (.swf file), you can choose different Skin (Project -> Skin Editor) but if you want to have bigger control images, then as per my knowledge you need to create your own customized Skin and use in Adobe Captivate 6.
    Thanks,
    Vikram

  • Aleo mp3 to swf converter

    Has anyone used this software? How do you insert the swf file into a Captivate project? I have Captivate 5 but when I insert the player.swf file as animation I only get the image. The playbar buttons are not active and the audio does not play.

    Hi there
    I don't get it. Why would you convert from MP3 to SWF? What would you hope to gain? Captivate allows you to use MP3 files directly.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Hide playbar – problem

    Hi,
    I have a project where I don’t want the playbar on the first slide where is the title of the course and the Company logo.
    I  use the Variables feature of Cp to show/hide playbar.
    But when I launch the preview or the output file .exe the playbar appears just for an instant like a flash on the first slide.
    No transition on the first slide  and  “fade in on the first slide”in Preference is unchecked.
    The same occurs if the output is swf.
    I notice that if I click on “rewind”button of the playbar during the project or at the end, the project starts again and the playbar is not visible on the first slide!
    It's annoying the flash of the playbar 
    How can I solve the problem
    I’ve Elearning suite 6 with Cp 6.0.1.240 – Windows 7 home premium 64 bit
    Anyone has an idea ?
    thanks in advance
    Elena57

    Hi Elena,
    I don't think that there is any way to avoid this "flash" unfortunately. The first slide must load completely before any events or actions are executed and therefore the playbar will load and display before the command to hide it is executed.
    Perhaps try to experiment with "Fade in" on your first slide to see if you can minimize the flashing.
    www.cpguru.com - Adobe Captivate Widgets, Tutorials, Tips and Tricks and much more..

Maybe you are looking for