"Back" functionality in playback control

Hi,
I've published my output in Captivate 3. A strange occurrence: sometimes, when I click "back" in succession in the playback control, the previous slides are displayed and sometimes the movie gets stuck on a certain slide and is unable to go backwards.
Any explanation for this?
Thanks, DGR

Hi there
Just thinking about this from a logical standpoint.
You have a playhead that is in motion moving from frame to frame. Along the way it may be stopped at various places awaiting some interaction or it may suddenly be moved to a different position. So repeated (and possibly fast) clicks on the back button might possibly confuse the issue. For example, if the playhead reached a point where it was suddenly supposed to skip to a different slide and you happened to click Back to move it to the skip ahead point. I could see that causing confusion.
All this is pure speculation. But I'm wondering if it's having a play in the scenario you are listing.
Cheers... Rick
Helpful and Handy Links
Captivate Wish Form/Bug Reporting Form
Adobe Certified Captivate Training
SorcerStone Blog
Captivate eBooks

Similar Messages

  • Zen Micro - MTP playback control functional

    I want to buy a zen micro v2 which supports MTP.
    I know that the v2 version of Zen Micro is MTP enabled player.
    Microsoft has released MTP specification 0.83, which does not have playback control functionality. Mocrosoft has said that it will release the specification for this playback control in one or two months of time.But they have released an intermediate version of this MTP which has this playback control functionality.
    A scenario to understand my question:
    When you connect Zen Micro to a car stereo system, you can not control its playback functionality from the car stereo's head unit. To be more specific you can not issue Play/Pause/Stop/Volume increase/Volume decrease commands from the car stereo's head unit.
    So please tell whether zen micro has this support? If not will it be providing this functionality in the coming months?
    please suggest me any other Zen palyers which has this functionality.
    Thanks in advance,
    Regards.

    DM, the Micro's remote control works exactly as you suggested; it's an inline remote that plugs into the headphone jack, and the headphones plug into the remote.
    Unfortunately, I think the problem is more along the lines of car audio manufacturers' willingness to design a physical interface between a car stereo and the Micro than anything in the MTP spec. Microsoft can enable this kind of control in the MTP spec all it wants to, but until manufacturers are willing to use physical interfaces other than the iPod dock connector, it's all for naught.

  • Playback Controls Do Not Function

    I have created movies that have the playback control located
    at the bottom center of the movie. I have published the movie in
    both SWF and HTM formats. Usually, the forward, rewind, pause, etc.
    buttons work but the Exit button does not work.
    Does anyone know why it doesn't work? How can I make it work?
    I do not know javascript, if you are going there. I am not a
    developer. I am a software trainer struggling to make a
    demonstration movie work. Any help would be greatly appreciated.
    Please help quickly! I am in a bind!

    Hi Susan
    Here is one thing to try. It may or may not work, but may be
    worth a shot.
    Insert the following code:
    JavaScript:var
    pw=window.parent;pw.opener=window.self;pw.close();
    Where?
    * Insert > Button
    or
    * Insert > Click box
    or
    * Movie > Preferences > Start and end tab > Movie
    End Options.
    Configure "Execute JavaScript" as the action.
    Click the ellipsis (...) button to produce another dialog.
    Paste code from above into the dialog.
    Click OK to dismiss the dialog.
    Click OK to dismiss the properties or preferences dialog.
    Publish and test the movie.
    Cheers... Rick

  • How to add a custom multimedia playback control to add a time line of what is being played?

    How to add a custom skin in multimedia playback control to add a time line of what is being played?  As it is being played...
    I need a time line so any part of the what is being played can be found by time, ie at 1 minute and 30 seconds in and continues for 45 seconds out of a 50 minute audo.

    If you're talking about a playback controller within the rich media annotation (RMA) then you need to write your own widget in Flash or Flex, and then place the video and widget files using the multimedia "Add Flash" tool in Acrobat instead of the "Add Video" tool. Aside from a bunch of proprietary code to handle events, commenting and the API (which you can live without for basic play-pause-scrub applications), video RMAs are just an embedded SWF file containing an FLVPlayback component. The skin and the video file itself are added to the RMA as resource entries. You can build your own version and have it display whatever controls you want, provided you know how to write ActionScript!
    If you're talking about a controller that's external to the RMA (e.g. a series of links or buttons elsewhere on the page) then in the past you would use FLV video files and the 'cue points' feature that's built into Acrobat - however Adobe removed the ability to create FLV files in the latest version of CC, so unless you have CS6 or earlier it's a non-starter. Instead you can manually set playback start points using the special "multimedia operations" link action in your PDF - though stopping playback at a defined point is very difficult without FLV cues. For that you're back to writing your own widget.

  • How to unrigister the call back function,in vb6 with DAQmx 8.5

    I use daqmx api which named DAQmxRegisterEveryNSamplesEvent to register my call back function,When I invoke the function  DAQmxErrChk (DAQmxStopTask(taskHandleAnalog)) to stop my Task.then i call the procedure AD_OPEN  again,it raise an error ,tell me that i need to unregister the event,the data has transfer into the buffer.how can i unregister the event,please look at the following code.
    Spoiler (Highlight to read)
    Private Sub create()
       Dim channel As String
        Dim minVoltage, maxVoltage As Double
        Dim samplesPerChannelPerRead As Double
        Dim sampleMode As Long
        Dim boolVal As Boolean
        On Error GoTo AdErrorHandler:
        ' Get values from UI controls
        channel = "Dev2/ai1:2"
        minVoltage = -10
        maxVoltage = 10
        samplesPerChannelPerRead = 100
         If (taskHandleAnalog <> 0) Then
             DAQmxErrChk (DAQmxStopTask(taskHandleAnalog))
            DAQmxErrChk (DAQmxClearTask(taskHandleAnalog))
            taskhandle = 0
        End If
        ' Configure the task
        DAQmxErrChk (DAQmxCreateTask("", taskHandleAnalog))
         DAQmxErrChk (DAQmxCreateAIVoltageChan(taskHandleAnalog, "Dev2/ai0", "", DAQmx_Val_InputTermCfg_RSE, minVoltage, maxVoltage, DAQmx_Val_VoltageUnits2_Volts, vbNullString))
        DAQmxErrChk (DAQmxCreateAIVoltageChan(taskHandleAnalog, channel, "", DAQmx_Val_InputTermCfg_Diff, minVoltage, maxVoltage, DAQmx_Val_VoltageUnits2_Volts, vbNullString))
    End Sub
    Private Sub AD_Open()
        DAQmxErrChk (DAQmxCfgSampClkTiming(taskHandleAnalog, "", 200, DAQmx_Val_Rising, DAQmx_Val_AcquisitionType_ContSamps, samplesPerChannelPerRead))
        'Find number of samples specified
        DAQmxErrChk (DAQmxGetTaskNumChans(taskHandleAnalog, numChannels))
        'Configure Event Callbacks
        DAQmxErrChk (DAQmxRegisterEveryNSamplesEvent(taskHandleAnalog, 1, 4, 0, AddressOf EveryNSamplesEventHandler1, Nothing))
     ReDim dataBuffer(numChannels * samplesPerChannelPerRead - 1)
        ' Start the DAQmx Task
    '    DAQmxErrChk (DAQmxCfgDigEdgeStartTrig(taskHandleAnalog, "/Dev1/PFI2", DAQmx_Val_Edge1_Falling))
        DAQmxErrChk (DAQmxStartTask(taskHandleAnalog))
        ' Update UI
        Exit Sub
    AdErrorHandler:
        MsgBox Err.Description
    End Sub

    This may be a bit late, so hopefully you found this on your own. But in order to unregister the event pass a null value for the callback function parameter in the DAQmxRegisterEveryNSamplesEvent function (Nothing in VB).
    National Instruments
    Product Support Engineer

  • Frame Offset Playback Control in FCP HD Not Working

    if I output my audio via firewire, it works just fine. However, I am unable to playback audio in sync via built-in audio (which sounds far better than my firewire output device).
    I've gone to to my FCP System Preferences; Playback Control and it has a default offset of 4 frames. But it's still out of sync. However, if I manually offset my audio in the timeline by 4 frames, it's IN sync. I've tried various frame rates in the Playback and it never syncs, in fact it appears as though nothing is changing, no matter what I set it at.
    What am I overlooking or doing wrong? It just doesn't make sense.

    I'm having the same problem on capture. I'm migrating from a PowerBook 800 to an Intel Imac. I need the Keyspan Serial to USB adapter to run the 422 port on my BetaCam player. I finally got it hooked up tonight.
    I grabbed a piece of video, and I'm getting two error's. First, like you, I'm 4 frames off (I'm using a Window Dub so I see the offset). Secondly, when I stop the capture I get a window telling me there is some discrepancy with my captured audio rate. When I look at the setting for the clip, all the frame rates seem to match. When I check the video, the lip sync is indeed off.
    So I'm using the same Keyspan adapter I've bee using using in Panther. Now I'm in Tiger, and I have what seems to be the latest, Intel Mac Keyspan update.
    But when I type in an offset number. and hit return, it doesn't "take". There is no change on the offset if I do another capture, and when I go back to the setting, it is at zero. I remember in Panther the current offset number was always visible.
    Any suggestions? I'm trying to get the offset to take, so I can capture proper time code on this BetaCam dub.
    Thanks.
    Powerbook G4   Mac OS X (10.3.9)  

  • Xml slideshow playback controls issue

    Hi, I'm trying to create a picture slideshow which can be controled by the user with play / stop / next buttons. I've managed to program the play / stop events with success, but I'm stuck trying to create the next button event since it doesn´t work properly. The first time I hit the next button it takes me to the same picture that has been currently loaded, the second time I hit the next button it works as expected, takes me to the next image.
    I appreciate your help, thank you in advance.
    Here's the Code:
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    import fl.transitions.TweenEvent;
    stop();
    //Escondo botones navegación
    navigation.visible = false;
    //Declaro/inicio variables
    var loadernike:loadercreditos = new loadercreditos();
    var my_speed:Number;
    var my_total:Number;
    var my_images:XMLList;
    var my_loaders_array:Array = [];
    var my_labels_array:Array = [];
    var my_success_counter:Number = 0;
    var my_playback_counter:Number = 0;
    var my_contador_next:Number = 0;
    var my_slideshow:Sprite = new Sprite();
    var my_image_slides:Sprite = new Sprite();
    var my_label_slides:Sprite = new Sprite();
    var my_preloader:TextField;
    var my_timer:Timer;
    var my_prev_tween:Tween;
    var my_tweens_array:Array = [];
    var my_xml_loader:URLLoader = new URLLoader();
    //Precarga xml
    my_xml_loader.load(new URLRequest("images/interior/NIKE/slideshow.xml"));
    my_xml_loader.addEventListener(Event.COMPLETE, processXML);
    var htmlContent:TextField;
    function processXML(e:Event):void
        var my_xml:XML = new XML(e.target.data);
        my_xml.ignoreWhitespace = true;
        //htmlContent = my_xml.title.text();
        my_speed = my_xml. @ SPEED;
        my_images = my_xml.IMAGE;
        my_total = my_images.length();
        loadImages();
        trace("imag", my_images);
        my_xml_loader.removeEventListener(Event.COMPLETE, processXML);
        my_xml_loader = null;
    function loadImages():void
        for (var i:Number = 0; i < my_total; i++)
            var my_url:String = my_images[i]. @ URL;
            var my_loader:Loader = new Loader();
            my_loader.load(new URLRequest(my_url));
            my_loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete);
            my_loaders_array.push(my_loader);
            //formateo texto;
            var myFont = new Font1();
            var myFormat:TextFormat = new TextFormat();
            myFormat.align = TextFormatAlign.RIGHT;
            myFormat.font = myFont.fontName;
            var my_label:TextField = new TextField();
            my_label.textColor = 0xffffff;
            my_label.embedFonts = true;
            my_label.antiAliasType = AntiAliasType.ADVANCED;
            my_label.defaultTextFormat = myFormat;
            my_label.text = my_images[i]. @ TITLE;
            //my_label.autoSize = TextFieldAutoSize.LEFT;
            my_label.width = 450;
            my_label.background = true;
            my_label.border = true;
            my_label.backgroundColor = 0x000000;
            //my_label.htmlText = htmlContent;// Assign the HTML content to the text field*/
            my_labels_array.push(my_label);
            //preloader;
            addChild(loadernike);
            loadernike.x = (stage.stageWidth - loadernike.width)/2;
            loadernike.y = (stage.stageHeight - loadernike.height)/2 + 50;
    function onComplete(e:Event):void
        my_success_counter++;
        if (my_success_counter == my_total)
            startShow();
        var my_loaderInfo:LoaderInfo = LoaderInfo(e.target);
        my_loaderInfo.removeEventListener(Event.COMPLETE, onComplete);
    function startShow():void
        removeChild(loadernike);
        loadernike = null;
        //muestro botones navegacion
        navigation.navintback.visible = false;
        navigation.visible = true;
        addChild(my_slideshow);
        my_slideshow.addChild(my_image_slides);
        my_slideshow.addChild(my_label_slides);
        my_slideshow.x = 30;
        my_slideshow.y = 160;
        nextImage();
        my_timer = new Timer(my_speed * 1000);
        my_timer.addEventListener(TimerEvent.TIMER, timerListener);
        my_timer.start();
        //boton stop;
        function clickstopboton(event:MouseEvent):void
            navigation.navintnext.gotoAndStop(1);
            if (MisGlobales.vars.i == 0 && MisGlobales.vars.h != 1)
                navigation.navint.gotoAndPlay(2);
                my_timer.stop();
            else if (MisGlobales.vars.i==1 && MisGlobales.vars.h != 1)
                //play
                navigation.navint.gotoAndPlay(1);
                my_timer.start();
            if (MisGlobales.vars.h == 1 && MisGlobales.vars.i == 0)
                navigation.navint.gotoAndStop(2);
                my_timer.stop();
            else if ( MisGlobales.vars.h == 1 && MisGlobales.vars.i == 1 )
                navigation.navint.gotoAndStop(1);
        navigation.navint.addEventListener(MouseEvent.CLICK, clickstopboton);
        navigation.navint.buttonMode = true;
        //boton next;
        function clicknextboton(event:MouseEvent):void
            my_timer.stop();
            navigation.navint.gotoAndStop(2);
            nextImage();
            my_playback_counter++;
            trace("playback_counter_next",my_playback_counter);
            if (my_playback_counter == my_total)
                my_playback_counter = 0;
        navigation.navintnext.addEventListener(MouseEvent.CLICK, clicknextboton);
        navigation.navintnext.buttonMode = true;
        //boton back;
        function clickbackboton(event:MouseEvent):void
            my_timer.stop();
            nextImage();
            my_playback_counter--;
            if (my_playback_counter == 0)
                my_playback_counter = my_total;
                my_timer.stop();
        navigation.navintback.addEventListener(MouseEvent.CLICK, clickbackboton);
        navigation.navintback.buttonMode = true;
        //slide auto
        function nextImage():void
            var my_image:Loader = Loader(my_loaders_array[my_playback_counter]);
            my_image_slides.addChild(my_image);
            my_tweens_array[0] = new Tween(my_image,"alpha",Strong.easeOut,0,1,1,true);
            var my_label:TextField = TextField(my_labels_array[my_playback_counter]);
            my_label_slides.addChild(my_label);
            my_label.x=(stage.stageWidth - 63) - my_label.width;
            my_label.y=(my_image.y+my_image.height)+7;
            my_tweens_array[1] = new Tween(my_label,"alpha",Strong.easeOut,0,1,1,true);
        function timerListener(e:TimerEvent):void
            hidePrev();
            my_playback_counter++;
            if (my_playback_counter == my_total)
                my_playback_counter = 0;
            nextImage();
            trace("playback_counter_play",my_playback_counter);
        function hidePrev():void
            var my_image:Loader = Loader(my_image_slides.getChildAt(0));
            my_prev_tween = new Tween(my_image,"alpha",Strong.easeOut,1,0,1,true);
            my_prev_tween.addEventListener(TweenEvent.MOTION_FINISH, onFadeOut);
            var my_label:TextField = TextField(my_label_slides.getChildAt(0));
            my_tweens_array[2] = new Tween(my_label,"alpha",Strong.easeOut,1,0,1,true);
        function onFadeOut(e:TweenEvent):void
            my_image_slides.removeChildAt(0);
            my_label_slides.removeChildAt(0);
        function clickbotonskb(event:MouseEvent):void
            my_timer.removeEventListener(TimerEvent.TIMER, timerListener);
            gotoAndPlay(10);
            MovieClip(root).main.main_bar.seccinteriors.my_playback_counter_sk = 0;
        skunkfunk_btn.addEventListener(MouseEvent.CLICK, clickbotonskb);
        skunkfunk_btn.buttonMode = true;
    See example at:
    http://www.neoconfort.com/neoconfort/Neoconfort.html

    I did a workaround by using the slideshow component shown in
    http://flashotaku.com/blog/slideshow-component-as3-documentation/
    Thank you to FlashOtaku

  • Playback control changes when animation is inserted into anothr movie

    Hi,
    I have created a couple of movies and used a specific
    playback control. When these movies (saved in swf format) are ran
    separately, everything is fine and the appropriate palyback control
    is shown. However, when I insert these animation (swf) into another
    project, the playback control are different of this animation are
    different !!! Any idea ?

    Hi,
    The problem still exists even if I have re-created the child
    movies (swf version 8) with other playback control.
    I have removed the playback control of the child movies and
    then just re-imported them back to the master movie. The master
    moview has been then published to EXE and it is fine (the child
    movies dies not show anymore the playback control).
    Then i have re-inserted the playback control into the child
    movie, and re-imported them back into the master, then the master
    published to EXE. And the problem is back, the child movies are
    showing a diffeent playback control (the same as dpierre - the skin
    used is dark grey, align top left, and the buttons don't actually
    work.)
    Is there a way to clear any cache that exists in the files
    (if the problem is the chache) ? I have a huge project with 20-25
    child movies to import into the master movie. It looks like a bug
    ?

  • Playback Control Tab missing! Help!

    Hello
    I'm using Final Cut Studio 2 (6.0.5) to edit a project that was filmed on the Red Cam. When I import the full res quicktimes into the project and onto the timeline, the playback control tab doesn't have any options for me to change the playback quality, playback frame rate etc. I want to change them to low and half respectively. Going through FCP preferences doesn't seem to alter anything.
    Can anyone tell me what I'm doing wrong? It's a brand new Mac Pro we're running with Leopard 10.5.5.
    Thanks

    Your QTs are requiring a processor intensive play back.
    Open one of your media files with QT and hit Command(Apple)+I, what you see in QT inspector window?
    Red,
    MXF wrapper works with AVID and Premiere.
    Without Logging and Transferring its content into QTs MXFs would never get on a FCP timeline.

  • Captivate 7 event video playback controls not working

    Hi,
    I'm using Captivate 7 and published an mp4 event video with limited playback controls (only play, pause, back, and close) on the slide, since the event video controls won't show up once published. When I publish the HTML5 video (with or without seamless tabbing) the controls are not working. When I click play the video plays and I can pause it, but when I want to continue play, the controls are not working.
    I tried only to use the skins (clear, corona, and halo) given with the event video, but then I can't pause the video at all, since the controls are not showing.
    We need the video to play in HTML5 mode for iPads and computers, but we're at a loss with the controls. The video has got to be limited to only play, pause, back, and close - no scrubbing or forwarding. Any ideas?
    Thanks,
    Nat

    I know you will hate Captivate for this. But if you are publishing to HTML5, the skins you select here won't make any difference as HTML5 output comes with its own mysterious skin which is not visible until you publish and check.
    Here is how that skin looks when viewed in Google Chrome browser on my laptop running on Windows 7.
    Here is the skin I have used for that in the Captivate editor.
    The best way to test these outputs is from a webserver or SCORM Cloud.
    Sreekanth

  • Playback control shows "Pause" 

    When my capitvates is launched the playback control shows
    "Pause". I want the Pause to be Play. Help me! Pleazzz
    thanks in advance
    Nodya

    You can create your own playback controls with buttons or
    click-boxes, or in Flash. But if you wish to use the ones included
    with Captivate, their positions and functions are hard-coded.
    .

  • What happened to the Control M to minimize the iTunes to playback controls only?

    I used to use Control+M to minimize iTunes to the playback controls only. This has disappeared with recent updates. The help files refer to a zoom control in the upper left corner of the iTunes window that does not exist. How do I regain the functionality of the playback only controls?

    You may have discovered this in the last several months but I'm pretty sure the "control+m" shortcut was replaced with "control+shift+m"

  • Itunes 9 – Backup doesn't function, Video playback is now slow, Requires a

    TOPIC: iTunes 9 – Backup doesn't function, Video playback is now slow, Requires a reboot to find the super drive when changing CDs or DVDs.
    iTunes 9 has been difficult to say the least. We have a very large Video and TV library, backups are critical. When starting a backup to disc, we put in the blank DVD and the software reports that it will take XX (39 in this case) discs. After the first DVD ejects and the second blank is inserted, iTunes hangs.
    Second: Watching programs on hulu.com the video drops frames and a very jerky playback experience sometimes including audio. iTunes 9 now works the same way, gone are the smooth video and audio. An authorized computer in our house can no longer play back any movies or TV that are located on the MacMini.
    Third and most disturbing: Since the iTunes 9 upgrade, when listening to a CD on the Apple and it completes, if you want to listen to another one – it requires a Restart of the computer. It no longer knows that there is a super drive attached to the computer. After the restart, it works just fine for one use, CD or DVD and then you must restart to listen or watch another one. Using the super drive for data or programs works correctly and no problems experienced.
    I want to be clear - none of these problems were happening before the forced upgrade to iTunes 9. After reading several posts, I don't want to sync my iPod Classic (80GB) for fear of what it will do to it.
    The above is happening on a MacMini, G4 PPC, 1GB RAM, 80GB internal, 2 Terabyte external, OS-X 10.4 fully patched for operating system and applications.
    We need to know when the 9.1 bug fix will be released? As long as it took to convert our library to 9.0, we don't want to try and back convert to version 8.x. In our case that would take feeding 221 backup DVDs and repurchase of several 9.0 only, episodes.
    WE need the bug fix and fast!

    I am running iTunes9 on WinXP, and I also cannot get it to back up. It either hangs on the "initializing" phase, or it thinks that my blank disks aren't blank and keeps spitting them out.
    Also, I've brought this up before, by why MUST we back up to DVD? Why can't we backup to a folder location (such as network share or external HD)? DVD backup is slow, problematic, and wasteful. Especially if it fails, and you need to throw out the disks it's already burned, and will not resume where it left off before the failure.
    For a company that's usually known for its design and "it just works" philosophy, how can you keep making such a broken, buggy product? Here's a thought, before cramming more crap into iTunes, let's just get it working as advertised for once? That would be nice.

  • Exit button on Playback Control

    I'm using Captivate 1. All of the buttons work except the
    Exit button on the Playback Control. Any suggestions?
    Thanks,
    TILOTOHA

    TILOTOHA,
    If the Exit button on the playbar isn't working, I'm afraid
    there's not much to be done about that. We have no control over the
    functionality of the playback controls.
    That said, are you previewing the movie from a web server?
    Previewing locally or from a network drive imposes security
    restrictions on the browser and the Flash Player, which is the
    cause of most "it doesn't work" reports in these forums. The only
    way to truly know if something is working is to test your files
    from a web server, where the security restrictions are much
    lighter.
    Everybody Else,
    I'm assuming you're adding your own Exit buttons on the last
    slide? If so, there may be a better way. As most folks probably
    know, the "correct" way to close a window at the end of a project
    is to go into the Project Preferences and set the action for the
    Project end options to "Close project". This usually works.
    As a backup, you can also insert some Javascript code in the
    slide navigation for the last slide in your project. This will
    "double your chances" of being able to close the window, without
    the user having to click anything:
    1. Double-click the last slide and on the Slide Properties
    dialog, select Execute JavaScript from the Navigation dropdown.
    2. Click the Ellipses (...) button to the right of the
    JavaScript field and on the Javascript dialog, type the following
    code:
    window.top.opener = window.top; window.top.close();
    The extra bit of code at the beginning is an attempt to
    prevent IE from asking the user whether they want to close the
    window. It may not actually work, but it doesn't seem to do any
    harm to leave it in.
    Jill -
    If the slide navigation thing doesn't work for you, the
    "button" solution is simply to add a button to the slide,
    double-click to view it's properties, change the On success action
    to Execute JavaScript and then enter the code as shown
    above.

  • Re-set playback controls?

    I removed the Exit and Info buttons from my "Smooth" playback
    controls by renaming the exit and info "smooth" bmps in Captivate's
    Gallery. but then the result was that the right side of the
    playback controls appeared to be "cut off"....so I modified the
    image in SnagIt and saved to "smooth-preview.bmp" in the Gallery.
    But I get the "cut off" image instead of the fixed image...
    I've tried changing the playback settings to another playback
    control, re-compiling and then changing it back to "smooth", but
    nothing works...
    Pam

    Hi Pam,
    A change in the BMP images used by playback controls will not
    normally be detected until you save the changes, then shut down and
    restart, then change to a different style, then back - you get the
    idea?
    The images that make up the playback are being kept in the CP
    file, and loaded when you open the project. So closing, then
    changing to a different control, then back again, will force a
    "reload", if you will.
    Best of luck!!

Maybe you are looking for

  • Reading an PDF Attachment  From Sender Mail Adapter

    Hi All,                i am able to get a mail  from my Mail Server, But my aim is need to Read an PDF attachment from the mail, in SXMB Moni i am getting the Payload with attachment, I have a created a module to convert that PDF to XML(Module is wor

  • Yikes, half my photos have gone to iphoto.data....

    Half my photos disappeared from my library, I found them in iphoto library DATA but how do i get them back in my library? It won't let me import them back... imac   Mac OS X (10.4.8)  

  • In Edge Code can i do a find and replace?

    In Edge Code can i do a find and replace on multiple lines of code or just a single line?

  • Working On External Segment...Seg Wizard ???

    Hi All, I am facing problem in using "External Segment" Option of Segmentation Wizard. While trying to select external list(CSV file I created) I am gettion option to select only text file. Any idea? Thanks VK Edited by: 793773 on Oct 5, 2010 6:48 AM

  • How do i completely uninstall a programme?

    Hello there, I installed a programme on my MacbookPro, but i want to remove it. But i dont know how.. can anyone help me? Thank you. Finn.