Missing Timeline Slider

Hi there, Happy New Year,
My timeline slider has vanished, very odd!
Only on the laptop though, even when pluggin in an external monitor. iMac upstairs has a fully functional slider. Both are running 10.1 and latest OS.
I've attached a grab - any idea?
Thanks!
Paul

Tom Wolsky wrote:
Yes you do. There are three scroll bar preferences in General system preferences.
Ah, you mean in the OS System Preferences - not the FCPX General Prefs ... cool.
-paul.

Similar Messages

  • Missing brightness slider for External monitor - normal?

    I've recently hooked up my new (2 month) MacBook Pro 13 (mid 2010) to an external monitor, which is also connected to a PC on another input. In this dual display setup, the MBP local display has a Brightness Slider, but the External display does not. What is normal? Is there a way I can enable a brightness control for the external monitor?
    Because the monitor is shared between the computers (1 on VGA, 1 on DVI), I want to use brightness controls on each computer and leave the monitor brightness "as is". It has minimal effect on the DVI input on my monitor, anyway.
    Thanks in advance,
    C
    Some details and experiments:
    - External monitor is a Dell 1905FP, 4:3 1280x1024, with both analog VGA and digital DVI.
    - I get the same issue - missing brightness slider on external - driving either input, using Apple branded miniDP to VGA or miniDP to DVI adapters.
    - I've tried suggestions found elsewhere in the forum to a) Reset PRAM; b) remove 2 plist files and force OS X to reload those; c) retry Detect Displays. No change.
    - Same results whether the display is mirrored or not - the built in LCD has a slider, the external does not.
    - MBP keyboard controls for brightness work as expected on the built in display.
    - MBP is current model, received as 10.6.3 and recently updated to 10.6.4. I don't believe I connected the external monitor while it was in 10.6.3 so do not know whether there might have been a difference.

    You could create a custom color profile with reduced brughtness using the "Calibrate" function in the "Color" pane of "Displays" System Preference.

  • Timeline Slider Problem

    hello,
    I'm having a problem with my timeline slider everything works great on it until I try and hide it when going to a new page in the flash. There are two pages, a homepage with the timeline and second page with the timeline hidden. When going to the second page I want to have the timeline slide off the document. When I do this it causes the timeline slider tab position to jump back to the beginning of the timeline before sliding off screen. I can't seem to figure out how to preserve the slider tab position before the timeline moves off screen.
    Originally the slider tab of the timeline animates onto screen using a traditional tween after running this as2:
    var enableTicker = false;
    var tickerMc:MovieClip = this.createEmptyMovieClip("tickerMc", this.getNextHighestDepth());
    tickerMc.onEnterFrame = function() {
    if(enableTicker) {
    if((timebutton._x > 35) && (timebutton._x <= 70)) {
    if((_root._currentframe != 46) && (_root._currentframe != 45)) {
    theframe = "frame1920";
    //_root.blender.gotoAndPlay(2);
    _root.gotoAndPlay(theframe);
    if((timebutton._x > 70) && (timebutton._x <= 140)) {
    if(_root._currentframe != 47) {
    theframe = "frame1930";
    //_root.blender.gotoAndPlay(2);
    _root.gotoAndPlay(theframe);
    if((timebutton._x > 140) && (timebutton._x <= 208)) {
    if(_root._currentframe != 48) {
    theframe = "frame1940";
    //_root.blender.gotoAndPlay(2);
    _root.gotoAndPlay(theframe);
    if((timebutton._x > 208) && (timebutton._x <= 275)) {
    if(_root._currentframe != 49) {
    theframe = "frame1950";
    //_root.blender.gotoAndPlay(2);
    _root.gotoAndPlay(theframe);
    if((timebutton._x > 275) && (timebutton._x <= 345)) {
    if(_root._currentframe != 50) {
    theframe = "frame1960";
    //_root.blender.gotoAndPlay(2);
    _root.gotoAndPlay(theframe);
    if((timebutton._x > 345) && (timebutton._x <= 413)) {
    if(_root._currentframe != 51) {
    theframe = "frame1970";
    //_root.blender.gotoAndPlay(2);
    _root.gotoAndPlay(theframe);
    if((timebutton._x > 413) && (timebutton._x <= 481)) {
    if(_root._currentframe != 52) {
    theframe = "frame1980";
    //_root.blender.gotoAndPlay(2);
    _root.gotoAndPlay(theframe);
    if((timebutton._x > 481) && (timebutton._x <= 547)) {
    if(_root._currentframe != 53) {
    theframe = "frame1990";
    //_root.blender.gotoAndPlay(2);
    _root.gotoAndPlay(theframe);
    if((timebutton._x > 547) && (timebutton._x <= 610)) {
    if(_root._currentframe != 54) {
    theframe = "frame2000";
    //_root.blender.gotoAndPlay(2);
    _root.gotoAndPlay(theframe);
    if((timebutton._x > 610) && (timebutton._x <= 690)) {
    if(_root._currentframe != 55) {
    theframe = "frame2010";
    //_root.blender.gotoAndPlay(2);
    _root.gotoAndPlay(theframe);
    //trace(timebutton._x);
    At the end of the tween the slider tab has this as2:
    on (press) {
    if(init) {
    startDrag("timebutton", false, 32, 440, 637, 440);
    if(!dragHelpInit) {
    dragHelpInit = true;
    _root.dragHelp.gotoAndPlay("hideDrag");
    dragging = true;
    usingDrag = true;
    on (release) {
    if(init) {
    stopDrag();
    if((timebutton._x > 31) && (timebutton._x <= 100)) {
    if((_root._currentframe != 46) && (_root._currentframe != 45)) {
    theframe = "frame1920";
    _root.blender.gotoAndPlay(2);
    if((timebutton._x > 100) && (timebutton._x <= 170)) {
    trace("i'm here");
    if(_root._currentframe != 47) {
    theframe = "frame1930";
    _root.blender.gotoAndPlay(2);
    trace("and here");
    //_root.gotoAndStop("frame1930");
    if((timebutton._x > 170) && (timebutton._x <= 235)) {
    if(_root._currentframe != 48) {
    theframe = "frame1940";
    _root.blender.gotoAndPlay(2);
    if((timebutton._x > 235) && (timebutton._x <= 303)) {
    if(_root._currentframe != 49) {
    theframe = "frame1950";
    _root.blender.gotoAndPlay(2);
    if((timebutton._x > 303) && (timebutton._x <= 373)) {
    if(_root._currentframe != 50) {
    theframe = "frame1960";
    _root.blender.gotoAndPlay(2);
    if((timebutton._x > 373) && (timebutton._x <= 443)) {
    if(_root._currentframe != 51) {
    theframe = "frame1970";
    _root.blender.gotoAndPlay(2);
    if((timebutton._x > 443) && (timebutton._x <= 508)) {
    if(_root._currentframe != 52) {
    theframe = "frame1980";
    _root.blender.gotoAndPlay(2);
    if((timebutton._x > 508) && (timebutton._x <= 573)) {
    if(_root._currentframe != 53) {
    theframe = "frame1990";
    _root.blender.gotoAndPlay(2);
    if((timebutton._x > 573) && (timebutton._x <= 630)) {
    if(_root._currentframe != 54) {
    theframe = "frame2000";
    _root.blender.gotoAndPlay(2);
    if((timebutton._x > 630) && (timebutton._x <= 720)) {
    if(_root._currentframe != 55) {
    theframe = "frame2010";
    _root.blender.gotoAndPlay(2);
    trace(timebutton._x);
    dragging = false;
    Now when I try to animate it off screen it obviously jumps back to the initial position because I'm basically just using the same key frames, but reversed. Does anyone know how I can preserve the position of this slider tab?

    Just to get this out of the way early, as a test, make sure that the Timeline Panel has focus, and try the Spacebar again. While the Timeline will play, with many other Panels having focus, I have encountered times, where, say focus on the Project Panel, will not allow the Timeline to play.
    In PrPro, there is an orange border around any Panel with focus, but PrE is not so easy to spot, unless you are looking at the Timeline Panel's border, when you click on it, and notice a very subtle (I mean VERY subtle) change.
    Good luck,
    Hunt

  • Missing audio slider in "window" record audio (fcpX10.0.6)

    After updating to the new version the audio slider in menu "window, record audio" is not there.
    Is this a bug?
    (I posted this question elswhere before but i cant find it anymore)
    Thanks.

    this is what i mean: i miss the import decice gain slider:
    somtimes by starting this window the slider jumps very quickly from  the right to the left and remains there... A certain amount of level is still there so i can use it by loud speaking near to the mic...

  • Missing timeline/sequence

    Hi.  I have recently started using Premiere Pro CC after being a previous CS user.  After spending some time working on my first project in CC (and saving at regular intervals) I closed the project and went back into it the following day.  When I did so, the Timeline / Sequence window was completely empty so it appears that all my work has been lost.  I have seen at least one other person posting about a similar issue on here, but would welcome any ideas of how I might be able to get this back.  Perhaps I'm missing something as I haven't used Premier Pro for some time.  Is this a known issue?
    Many thanks,
    Phil

    Richard
    I actually managed to solve the issue by going into the autosave folder and opening up one of the autosaved versions of the project!  Thanks for your reply though!

  • Timeline Slider Question

    Is there any settings I can change so that the timeline window/viewer follows the slider during playback instead of staying still?

    No, unfortunately not. However, you can zoom out so that you can see a larger portion of the timeline during playback, or just scroll manually.

  • I am missing the "slide" bar on the right side of my mailboxes.

    Since installing Firefox 4 I no longer have the "slide up and down" bar on the right side of my mailboxes. (All of them.) Also the up and down arrows are missing on the right too. I have tried reinstalling Firefox 4 and that did not help.

    Do you have that problem when running in the Firefox SafeMode?<br/> ''A troubleshooting mode.''<br />
    You can open the Firefox 4.0 SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut. Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut to open it again.''
    If not, see this: <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • Missing zoom slider and padlock, in Library mode

    Hi,  The Compare zoom slider and padlock, in Library mode is missing from my main screen and only appears in second window, if this is selected.  Is this a modification with LR5.6 or do I need to do something to select this feature?  I find the compare function much easier to use on the main screen rather than in second window.

    The padlock and slider should show on both displays but perhaps you have the toolbar hidden. Try pressing the T key once or twice to toggle the toolbar.

  • Missing music slider

    I have a generation 4 iPod touch that no longer displays the song progression slide bar at the top of the display screen. I have tried restarting it several times and even reset it in iTunes.

    sdgossage wrote:
    I have a generation 4 iPod touch that no longer displays the song progression slide bar at the top of the display screen. I have tried restarting it several times and even reset it in iTunes.
    Hi sdgossage: With the iPod playing music, tap the Cover art. The slider bar will reappear at the top.
    Stedman

  • Missing Tint Slider in Illustrator CS5 Colour Palette

    Hello
    Despite following all the intructions on numerous tutorials/help sections etc I can't get the tint slider to appear in the colour palette.
    I'm thinking I might have a bug with my programme. Any ideas? (it's beyond frustrating!!!!)
    Jenny

    Kurt, I deleted the prefs, quit and restarted and now it works -
    thanks for getting back on this one

  • MISSING VOLUME SLIDER BAR SOLVED!!!

    I have found the culprit! It has taken me a very long time to figure it out what it was but it has finally been found. The volume slider disappears when playing music or watching videos but otherwise works.
    The problem is the 32pin connector. If you don't believe me take your phone and place a hard plastic card of some sort (creditcard, school I.D) and place it underneath the 32pin connector. Look at your volume slider and it should appear! You must get your 32pin connector replaced.

    I wouldn't go as fr as getting a new iPod yet. Take it into a genius bar and see what they say. I got my old iPod nano that got sent through the wash replaced for around $50. I don't promise anything.

  • Photos Missing from Slide Show

    I am creating a slide show in Photoshop Elements 8.0.  Half of the photos are just black now.  Please help!

    I am creating a slide show in Photoshop Elements 8.0.  Half of the photos are just black now.  Please help!

  • Missing Timelines

    Hi
    I have been cracking along nicely in the last week learning the software adn producing some pleasing animations. However, today when opening the file, the timelines have vanished.
    The file size is the same as yesterday and it requests fonts to be activated so I am guessing the information is still in there but I just can't access it.
    I have tried to find a solution on various forums with my colleagues but to no avail.
    As I say I am very new to After Effects so I am hoping this is operator error!

    Thanks for replying. I spoke to Adobe support in the meantime and they told me the file was corrupt and pointed me towards an autosaved file.
    Thanks again.

  • Missing Master Slides

    In one of my presentations all the masters have disappeared except "title and bullets". If I open a new presentation (all the masters are available) then copy any of the slides from the old presentation into the new one, all of the masters in the new presentation disappear except "title and bullets". How do I get the masters back? Thanks!

    I have the same problem; every time I open a keynote presentation I have to re-insert .mov files, and every time I close the presentation they are gone (that is, the thumb is there but the movie is not, and despite checking "copy audio and movies into the document".
    HELP.

  • Why do media elements disappear from the timeline & slide sorter?

    I have not renamed or moved original elements, yet when I recently opened an on-going project in Photoshop Elements 4.0, about 1/4 of the media elements were gone. Why? Is there a way to troubleshoot this? Anyway to recover these slides? Can't see that any photos, etc in the Organizer have broken links.

    Did you check View >> Media Types. Possibly some media filter is appied due to which some of the media files are not visible.?
    Thanks
    Andaleeb

Maybe you are looking for