Help! scrub-bar and controls missing

Hi, I have a problem. I was playing a track today and i noticed that the bar with the scrub-control is totally missing. This is true for podcasts also, where the bar for adjusting the playback speed and scubbing is gone. Help! how can I get that back?
Thanks

This and more can be found in the manual:
http://manuals.info.apple.com/enUS/iPhone_UserGuide.pdf

Similar Messages

  • I am having problem with my notifications bar and control centre bar. It doesn't work with sliding my fingers on the screen and when I restart the phone it works properly  but again after few days the problem persist? My phone is an iphone6 8.1.3

    notification bar and control centre not working by sliding on the screen and when u restart it works fine for 4-5 days then again the problem persists

    First, try to reset the phone by holding the sleep and home button for about 10sec, until the Apple logo comes back again. You will not lose data by resetting.
    If this does not help, set it up as new device, explained here:
    How to erase your iOS device and then set it up as a new device or restore it from backups
    If still no luck, get it checked by visiting an Authorized Apple Service Provider or contact Apple Support to get it serviced:
    iPhone - Contact Support - Apple Support

  • Removing Title Bar and Control Box From JFrame

    Hi,
    I'm trying to remove the title bar and control box from a JFrame. I've already tried reseting the JRootPane of the JFrame, but it hasn't had any affect. I was wondering if anyone knew how to do this. Thanks for the help.

    Try this:
    frame.setUndecorated(true);(frame is the JFrame instance)

  • Scrub bar and its ability to pause

    I'm considering a purchase of Apple Quicktime Pro but I'd like to know if it can perform a specific function that I have in mind while it is embedded into a browser.
    You see, I work a for a research center that has an electron microscope. The EM lab creates these fascinating 3D movies of a 360 degree views of microscopic particles. The movies essentially rotate around a target and pictorialize the structure of the particles.
    The EM lab would like to take these movies, which are in AVI format, and post them online. However, they would like the user who (who is viewing the movie files from within a browser) to be able to scrub through it and pause, in order to view the particles at different angles.
    Essentially, my question is this. Can Quicktime allow a user to scrub through a video, let up on the scrub bar, and have it PAUSE instead of play at that point? This would, in essence, make the scrub bar less of a position to start playing a video file and more of an indication of a vantage point of that particle. Is this clear?
    Thanks,
    Paul
    IBM   Windows XP Pro  

    The scrub will reflect whatever the state of playback is at the time. That is, if the movie isn't playing to begin with, the user can scrub to any point and the movie will not automatically start playing. If the movie is playing, then the movie will continue to play after the pointer is dragged to the new location.

  • Scrubbing bar that controls many timelines

    Hi all,
    Is it possible for a scrubbing bar on the main stage to control the time lines of many symbols?
    I'm using this code from Sarah Justine
    Create Click and Touch Draggable Scrubbers with Edge Animate CC | sarahjustine.com
    var symDur = sym.getSymbol("timelinePlay").getDuration(); // Get the timeline length of timelinePlay. We'll reference this later in the code.
    var mySymbol = sym.getSymbol("timelinePlayl"); // Get the symbol timelinePlay. We'll reference this later in the code.
    var scrubber = sym.$("scrubber"); // Touch this to scrub the timeline of timelinePlay
    var bar = sym.$("bar"); // Bar the scrubber follows
    sym.$("mobileHit").hide(); // Added an extra invisible div to increase the hit region for mobile (hard to grab otherwise)
    var dragme = false; // Set the initial dragme function to false
    // Detect if mobile device, and if so swap out mouse events for touch events. This is pretty much duplicated code with touch events swapped.
    if (/Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent)) {
        sym.$("mobileHit").show(); // Show the extra invisible div to increase the hit region for mobile (hard to grab otherwise)
        $(function () {
            scrubber.bind("touchstart", function (e) { // Enable the scrib on touchstart
                e.preventDefault(); // Cancels the default action of the mobile device - used to ensure our touch events are fired
                dragme = true;
            scrubber.bind("touchend", function () { // Disable the scrubber on touchend
                e.preventDefault();
                dragme = false;
            scrubber.bind("touchmove", function (e) { // Make the magic happen on touchmove
                if (dragme) {
                    var touch = e.originalEvent.touches[0];
                    var possibleX = touch.pageX;
                    var leftX = bar.offset().left;
                    var rightX = (leftX + bar.width()) - scrubber.width();
                    var scrubWidth = rightX - leftX;
      // Confine the scrubber to the width of the bar
                    if (possibleX < leftX) {
                        possibleX = leftX;
                    if (possibleX > rightX) {
                        possibleX = rightX;
                    scrubber.offset({
                        left: possibleX
                    var relativeX = possibleX - leftX;
                    var stopTimeline = Math.ceil((relativeX / scrubWidth) * symDur); // Make the scrubber scrub the timeline length of timelinePlay
                    mySymbol.stop(stopTimeline); // Stop the timeline of timelinePlay when the scrubber is released
    else $(function () {
        scrubber.mousedown(function () { // Enable the scrubber on mousedown
            dragme = true
        $(document).mouseup(function () { // Disable the scrubber on mouseup
            dragme = false
        $(document).mousemove(function (e) { // Make the magic happen on mousemove
            if (dragme) {
                var possibleX = e.pageX;
                var leftX = bar.offset().left;
                var rightX = (leftX + bar.width()) - scrubber.width();
                var scrubWidth = rightX - leftX;
                // Confine the scrubber to the width of the bar
                if (possibleX < leftX) {
                    possibleX = leftX;
                if (possibleX > rightX) {
                    possibleX = rightX;
                scrubber.offset({
                    left: possibleX
                var relativeX = possibleX - leftX;
                var stopTimeline = Math.ceil((relativeX / scrubWidth) * symDur); // Make the scrubber scrub the timeline length of timelinePlay
                mySymbol.stop(stopTimeline); // Stop the timeline of timelinePlay when the scrubber is released
    What would be the best way to edit it so the scrubbers effected a few symbols?
    At the moment that scrubber is specifically linked to timeLinePlay - but what if we had a few symbols with timelines we could scrub through?
    In my scene there are a few buttons that createChildSymbols in a content box, and I would like the user to scrub through the timeline of each symbol with a scrubber bar.
    I watched a tutorial on variables so attempted writing a few myself but they didn't seem to work, so I just copied the code a few times on the main stage actions and changed the names of the symbols and scrubbers etc - which unfortunately didn't work either.
    I'm sure there is a simple way with variables that this could be achieved
    Does anyone have any ideas??
    Thank you very much in advance for any advice.

    Well I think I've got it..but not quite
    So I changed nothing of the Sarah Justine code above
    But I just added all the animations to the one time line of timeLinePlay and then grouped the elements for each specific animation
    So then when the buttons are clicked they go to timeLinePlay and hide or show the specific groups/ animation.
    So the code looks like this for one of the buttons:
    var myVariable = sym.getComposition().getStage().play("timeLinePlay");
    myVariable.getSymbol("timeLinePlay").$("Group1").show();
    myVariable.getSymbol("timeLinePlay").$("Group2").hide();
    Which works fine - but it only works for the first click. If i navigate to another button that hides and shows a different element then it doesn't work anymore - it shows nothing
    So I tried resetting the timeLinePlay animation with this:
    document.compositionReady:
    sym.resetTimeLinePlay = function() {
    getSymbol("timeLinePlay").$("Group1").hide();
    getSymbol("timeLinePlay").$("Group1").hide();
    buttons:
    sym.getComposition().getStage().resetTimeLinePlay();
    But thats not working either - I assume because straight after the reset, the button also says - to play timeline and hide and show elements so its obviously getting confused.
    Would anyone possibly know how to fix this?
    Thanks you so much in advance

  • Help Tool bar and Annonations/Markups

    Hello
    Couple of question. I have Adobe Pro 8 and I want to create a lesson plan document that will require them to use the pencil feature and draw on the document for some of the lessons. I know it has to be Reader Enabled for this to work but I would like the Reset Form Button to clear not only the fields but remove the Annonations and Markups also. Plus Also is there a way to have the Comments and Markups Toolbar open with a script command?
    Any Help would be appreciated.
    MD

    1. Shut down your Mac.
    2. Disconnect all third party USB and FW devices or anything that did not ship with your mac when it was first purchased from apple.
    3. Check all connections and make sure they are plugged in and secure.
    4. Give us more info on your mac (hardware wise) other than it's a G4. Which Mac is it? Tell us exactly how much available hard drive space is remaining on the boot volume (your main start up HDD) and what OS is running, and which version of QT?
    5. What software do you have running on this mac? I can see you have FCP and DVDSP. Tell us which version of FCP you are running and the same for iDvd.
    6. Do you have any Non-standard QT Plug ins on this mac (ie, Perian)?
    7. Are you running from a server by any chance or is this mac communicating with a server of any type which might slow it down and cause the app to stall?
    8. Go ahead and power up your computer. Assuming it starts normally, run apple's disc utility and repair permissions from apple's disc utility within the applications folder. You also need to dispose of the plist for iDvd immediately after repairing permissions. So go into your Home holder (the one that looks like a house) > Library > Preferences > com.apple.iDvd.plist Drag and drop this preference to the trash. Now open system preferences and go to accounts > login items and take note of which items login on their own. If you see third party software launching on its own, then we need to disable these items for the time being.
    9. Restart your mac now. If it doesn't start normally and simply freezes; then come on back for more troubleshooting and we'll walk you through how to boot from the software CD that shipped with this computer so we can repair the HDD directly from the software CD. When you get this far, come on back and tell us what happened to this point.
    Message was edited by: SDMacuser

  • Scrub Bar and Slider question

    I am trying to better understand the edit sliders in QT 7 Pro.
    In 6 Pro I would hold the shift key and drag the slider from an IN point to an OUT point of my choosing. This would now be highlighted, or selected. I could then cut or copy that selection. When I try that in QT 7, as soon as I click down on my IN point, everything is selected all the way back to the beginning of the movie. In essence, it is selecting backwards. I also notice that the two (in-out?) markers appear when I click anywhere along the scrub line. I am getting things done but clumsily. I know there must be some handy, easy ways to manage these powerful new features. Tips, please. Thanks.
    *Apple's Quicktime Guide seems nothing more than a bunch of ads. I can't find any actual "guide."
    nÔÔdle--hëad

    Use the letter i and o keys to select in and out points. They will be created at the location of the playhead.
    Hold down the shift key and use the arrow keys to add (or remove) frames.

  • I can't remove Bing. I've tried Control Panel, the article "Removing the Search Helper Extension and Bing Bar," and I have had no luck for Windows 7 and Firefox.

    I can't remove Bing. I've tried Control Panel, the article "Removing the Search Helper Extension and Bing Bar," and I have had no luck for Windows 7 and Firefox.
    I wish I could share the two screen shots I took, but this question site doesn't have the option, so I guess I'll describe where Bing is showing up.
    In the left hand of my browser, just to the right of the back and forward arrows, there is speech bubble with a black eye ball or something. I found out it's Bing-related by clicking on it. There is no option to remove it with either left or right clicking on it.
    Also, in the right hand corner of my browser, at the very end of all my tabs, there is a white rectangular box with an orange "b" and a magnifying glass symbol. It will not respond to anything I try to do to it either, but if clicked it opens a new tab with a Bing search dialogue box.
    Finally, any new tab I open automatically opens to the Bing search dialogue box (versus Google).
    I need to get specific, step-by-step instructions for removing this Bing stuff from my computer. As I said, I have already gone through all steps outlined in the article I mentioned above as well as not been able to locate Bing in my control panel.
    Please help. I'm certain others are having this same issue. I use Windows 7 and Firefox. Thanks.

    Apologies for the formatting there. No idea what went wrong...

  • Letter A replaced all words in top bar and info boxes so I cannot read them. This soon after installing OS X Maverick, so I suspect this is related. Restart and Command-Control-P-R do not help.

    ? - Letter A has replaced letters of all words in top bar and  program boxes so I can read nothing, and therefore have no way to enter commands. This comes soon after installing OS X Mavericks, so I suspect this is related. Restarting and command-control-P-R have not helped. Can anyone suggest a cause?

    Back up all data.
    Launch the Font Book application and validate all fonts. You must select the fonts in order to validate them. See the built-in help and this support article for instructions. If Font Book finds any issues, resolve them.
    From the application's menu bar, select
    File ▹ Restore Standard Fonts...
    You'll be prompted to confirm, and then to enter your administrator login password.
    Boot in safe mode to rebuild the font caches. Boot again as usual and test.
    Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode. In that case, ask for instructions.
    Also note that if you deactivate or remove any built-in fonts, for instance by using a third-party font manager, the system may become unstable.

  • Play and plause button and control bar are missing belw xfinity player

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [/questions/840891]</blockquote>
    when watching video, can not see play and pause button and control bar, it is missing below xfinity player.

    Ok BE...I took you advice and used a prebuilt skin, but tweeked it to get it looking how I wanted. However, now when I switch between the different videos, the playhead stays at the spot that it previously was. For example, if the playhead is currently 50% through video #1 and I click video #2, the playhead is still sitting at 50%. How would I reset the playhead to the beginning of the new video?
    import fl.video.*;
    var flvPlayer:FLVPlayback = new FLVPlayback();
    addChild(flvPlayer);
    flvPlayer.skin = "MySkin.swf";
    flvPlayer.skinAutoHide = true;
    flvPlayer.skinFadeTime = 300;
    flvPlayer.x=78;
    flvPlayer.y=89;
    flvPlayer.width=640;
    flvPlayer.height=360;
    flvPlayer.source = "flv/Video1.f4v";
    vid1.addEventListener(MouseEvent.CLICK, fl_ClickToSetSource1);
    function fl_ClickToSetSource1(event:MouseEvent):void
    flvPlayer.source = "flv/Video1.f4v";
    vid2.addEventListener(MouseEvent.CLICK, fl_ClickToSetSource2);
    function fl_ClickToSetSource2(event:MouseEvent):void
    flvPlayer.source = "flv/Video2.f4v";
    I know I need to do something in the setSource function, but don't know how.
    Thanks.
    Mike

  • Play and pause button and control bar are missing below xfinity player

    when I want to watch a video noticed play and pause button and control bar are missing below xfinity player.

    For the two soundchannel sounds you have, you will need to keep track if and which one is playing so that you can use some logic to stop the sound right after you mark where the sound was (position)  so that you can resume playing it again when the play button is selected.
    So if the stroke sound is started, you could assign a boolean variable named something like 'strokeplaying' to be true (setting the other sounds similar boolean false).  Then, in your pause function you would test to see if strokeplaying is true and if it is, store the position property and stop the channel playing. 
    When play is selected, similarly, you test if that sound is true and if so you restart it using the position value you stored as the starting point.  You do the same for the other sound... remembering that it is possible neither is playing when pause it clicked.

  • I want to unload Yahoo tool bar and go back to firefox tool bar but cannot pull up a "tool bar" it is missing as well as the back icon My book marks are apparently in the firefox format and I cannot access them

    I want to restore firefox tool bars so I can have the back icon and my bookmarks accessable. I now have Yahoo tool bar and it does not show file, tools, edit, etc.

    '''''"does not show file, tools, edit, etc."''''': That is the Menu Bar; see below
    <u>'''Can't see the Menu Bar'''</u> (File, Edit, View, History, Bookmarks, Tools, Help)?
    Turning the Menu Bar on and off is a new feature in version 3.6.
    ''(~~red:Linux & OSX see~~: [[Menu bar is missing]] )''
    <u>''Windows'' Method 1.</u> '''''Hold down''''' the key and press the following letters in this exact order: V T M then release the key
    <u>''Windows'' Method 2.</u> Tap once on the F10 key, while the Menu bar is visible, choose "View > Toolbars", click "Menu Bar" so that a check mark is placed next to Menu Bar
    <u>''Windows'' Method 3.</u> Tap once and release the key. The Menu Bar will be displayed; then choose ~~red:V~~iew > ~~red:T~~oolbars and click on ~~red:M~~enu Bar so that a check mark is placed next to Menu Bar
    The Menu Bar should now be displayed permanently, unless you turn it off again using View > Toolbars. Check mark = displayed, NO check mark = not displayed.
    See:
    http://support.mozilla.com/en-US/kb/Menu+bar+is+missing
    http://kb.mozillazine.org/Toolbar_customization#Restoring_missing_menu_or_other_toolbars
    <u>'''Navigation Toolbar, Bookmarks Toolbar and other Toolbars'''</u> under View > Toolbars. Clicking on one of them will place a check mark (display) or remove the check mark (not displayed).
    <u>'''To display the Status Bar'''</u>, View, then click Status bar to place a check mark (display) or remove the check mark (not displayed).
    <u>'''Full Screen mode'''</u>
    http://kb.mozillazine.org/Netbooks#Full_screen
    Also see:
    ''' [[Back and forward or other toolbar buttons are missing]]'''
    '''[[Navigation Toolbar items]]'''
    '''[http://support.mozilla.com/en-US/kb/How+to+customize+the+toolbar How to customize the toolbar]'''
    <u>'''rich stanley'''</u>
    <u>'''''Other Issues'''''</u>: ~~red:You have installed plug-ins with known security issues. You should update them immediately.~~
    <u>'''You '''</u>~~red:<u>'''MAY'''</u>~~<u>''' need to Update Adobe Reader for Firefox (aka Adobe PDF Plug-In For Firefox)'''</u>: your ver. N/A; current ver. 9.3.3 (important security update release 06-29-2010; see: http://www.adobe.com/support/security/bulletins/apsb10-15.html)
    ~~red:Check your version here~~: http://www.mozilla.com/en-US/plugincheck/
    See: http://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox#Installing_and_updating_Adobe_Reader
    ''<u>You may be able to update from the Adobe Reader installed on your system</u>'' instead of going to the Adobe site and downloading. Open the Adobe Reader installed on your system (''in Windows, Start > Program Files, find and click Adobe Reader to open''), click Help, click Check for Updates.
    ''<u>If you go to the Adobe site to download the current Adobe Reader:</u>''
    -'''<u>use Firefox to download</u>''' and <u>'''SAVE to your hard drive'''</u> (save to Desktop for easy access)
    ~~red:-See the images at the bottom left of this post to see the steps to take on the Adobe site~~
    -exit Firefox (File > Exit)
    -In Windows: check to see that Firefox is completely closed (''Ctrl+Alt+Del, choose Task Manager, click Processes tab, if "firefox.exe" is on the list, right-click "firefox.exe" and choose End process, close the Task Manager window'')
    -double-click on the Adobe Reader installer you just downloaded to install/update Adobe Reader
    *<u>'''NOTE: On Vista and Windows 7'''</u> you may need to run the plugin installer as Administrator by starting the installer via the right-click context menu if you do not get an UAC prompt to ask for permission to continue (i.e nothing seems to happen). See this: http://vistasupport.mvps.org/run_as_administrator.htm
    *'''<u>NOTE for IE:</u>''' Firefox and most other browsers use a Plugin. IE uses an ActiveX version. To install/update the IE ActiveX version, same instructions as above, except use IE to download the ActiveX installer. See: [[ActiveX]]
    *Also see: http://kb.mozillazine.org/Adobe_Reader ~~red:'''''AND'''''~~ [[How do I edit options to add Adobe to the list of allowed sites]]

  • I just bought a Dell Precision M3800 laptop - screen res 3840 x 2160  when I open photoshop the task bar and tools and layers etc are in 4pts size   I changed my % in my image in my control panel and if I go to open file the drop down boxes are in good pt

    I just bought a Dell Precision M3800 laptop - screen res 3840 x 2160  when I open photoshop the task bar and tools and layers etc are in 4pts size   I changed my % in my image in my control panel and if I go to open file the drop down boxes are in good pt sizes  how do I make the layers and tool bars bigger?  Please help@

    Windows will scale applications display or windows will not scale application display depending on how the application is coded.  Photoshop is coded in a way that its display is not scaled by windows.  Photoshop knows about your displays high pixel count not its resolution  so it uses its pixels  however it does not scale its UI to make it usable on your display.  Other application let Windows  scale their display output.   For example Microsoft default for is Surface Pro 3, 216 ppi display is to scale applications display up 150% so the surface pro 3 display which has 2160x1440 pixels a 216 ppi resolution look like at display with the user is using with 1440x960 pixels.  The Application works like the display is 1440x960 and Windows scale those pixels to the displays using the displays  2160x1440 pixels the effectively changing it resolution to 144ppi rather than the actual 216ppi.
    The reg update  and external manifest file  effectively tells photoshop its working on such a size display display some number of pixel wide and some number photoshop uses that as the display size  in turn Windows scale those pixels to use the displays 2160x1440 pixels efector lowing its 216ppi resolution.  Photoshop CC 2014 2X UI would be like using windows 200% option applications would be shown the are working on a display 1080x720 instead of the Surface Pro 3 2160x1440. Note that 1080x720 does not meet PS requirement of 1024x768.  Photoshop UI would not fit on the Surface Pro 3 display..
    Since you have a 4k display if you have CC 2014 you can use its 2x UI effectively Photoshop will be running on a 1920x1080 display and have half the resolution of you 4K display  3840x2160 pixels four native pixels are use as a single pixel.   1920x1080 pixels exceed PS requirement.

  • Can't view audio controls (time remaining, scrub bar, etc.) in os5 on iPhone 4

    Since upgrading to OS5, my iPhone 4 won't display the audio controls during music or podcast playback.
    Very annoying since I really liked the time remaining and scrub features that I had before.
    Is this a bug?  Or is there some setting control that I haven't yet found to re-enable these features?

    Just found the solution on a different thread.
    Turns out that the audio controls can be toggled on and off, though this isn't explained in the manuals.
    paraphrased from the other solution:
    "While your audio file is playing,  double-tap and hold (on the album artwork) until the scrubbing bar reappears.
    A double tap doesn't seem to do it. You have to hold the second tap down to get it to work. Don't lift your finger from the second tap until the scrubbing bar re-appears. "

  • Created a custom button bar and pull-down menus are missing

    created a custom button bar and pull-down menus are missing.
    I want pull-down menus of 'action', 'edit', 'query', 'block','record', 'field', 'window' and 'help' to display.
    What property setting or other item do I need to change?
    Thank you for your help.

    You could try this, I haven't used it before so I'm not sure if it's what you're looking for but it's worth a shot if you can't get anything else to work.
    http://web.mac.com/ijasonwhite/iwebunlimited/TipsBlog/Entries/2008/12/29_Drop_Down_Navigation_iniWeb.html
    Hope this helps!
    Josh

Maybe you are looking for

  • Admin Costs to be allocated on the basis of  Qty of Goods Produced

    Dear Experts, Adminstration Costs to be allocated on the basis of Qty of Goods produced. Is there a solution where these (Admin) costs can be added to the Cost of Goods sold,  but should not include in the Cost of Goods Manufactured. Advance thanks S

  • Customizing GUI for B2C in E-Commerce 5.0

    I was wondering if anybody knew of any documentation about customizing the GUI of E-Commerce 5.0 B2C.  I found documentation that has that in the title, yet it contains information about the older Internet Sales (ISA) and its Frame Sets and not the c

  • Po number

    by which t.code i can get purchase order no...i know material document number regards Rekha

  • How do I distribute my xml error code file?

    Hi all, I am using labVIEW 8.2 Prof. on a RedHat Linux. I built an application where I made the tick in the labVIEW build specification "Advanced->Copy error code files". Nevertheless when I start my new application and force an error which is actual

  • Is there a release date for Apple pay in australia

    IS there a release date for Apple pay in Australia