Can't drag the timeline on to second screen

I have two screens and from time to time, depending on the job, drag out the sequence timeline right across both. It will no longer allow me to do this from the left hand screen. If I move the whole timeline over so it is on some of both screens and then click on to the RHS edge in order to extend it in the usual way it just snaps back to the left hand screen. I have had this happen spasmodically before but have always managed to get it extended although sometimes it shot back when I clicked near the edge. Now I cannot extend at all.
My guess is that I have a basic misunderstanding of the settings at work here.
Pete Snowdon

Thanks for that _ I have discovered some useful settings that I didn't know existed but unfortunately the problem is unsolved. It's a bit of a mystery because I used to do it - perhaps I should try the old faithful of restarting ( which of course you do not have to do on Mac)!!
Pete

Similar Messages

  • How do I put shortcuts to web sites in a (?) tool bar/browser bar...don't know what it is called. With IE, I can just drag the tab for the site to the area I want.

    How do I put shortcuts to web sites in a (?) tool bar/browser bar...don't know what it is called. With IE, I can just drag the tab for the site to the area I want

    Near the right-end of the address bar is a white star which can be difficult to see, but look closely. When you wish to bookmark a shortcut to the toolbar, double click the star. A window will open with the name of the webpage. Under that is the folder box which will probably read 'Unsorted Bookmarks'. Click the drop down arrow and change it to 'Bookmarks Toolbar' then click done.
    I have several folders on my toolbar such as Music, Mail, etc. in which I add multiple websites. If you wish to add a folder, click the second drop down arrow next to 'Bookmark Toolbar' and click 'New Folder' and give it a name.
    To add a bookmark to a folder, again double click the star, make sure you are in Bookmark Toolbar and click one of the two drop down arrows to find the name of the folder.
    For other bookmarks use Bookmark Menu. Whatever is added here can be accessed by Bookmarks on the Menu Bar. If your Menu Bar with Bookmark, File, View, etc. is not visible, click the Alt key and they will become visible. To keep the Menu Bar, click View, Toolbars and check Menu Bar.

  • HT1203 How do you put music from one itunes account to another? Can you drag the music?

    How do you put music from one itunes account to another? Can you drag the music?

    You can use Home sharing

  • I would like to copy my iPhoto (9.4.1) library from my Mac Pro (10.7.5) to a Macbook Pro (10.7.5). Can I drag the iPhoto Library to Air Drop and send them to the MacBook? Will that then be a usable iPhoto library on the Macbook?

    I would like to copy my iPhoto (9.4.1) library from my Mac Pro (10.7.5) to a Macbook Pro (10.7.5). Can I drag the iPhoto Library from the Pictures folder to Air Drop and send them to the MacBook? If I then move that to the Pictures folder on the MacBook will that then be a usable iPhoto library on the Macbook?

    It would be better if you could connect the two Macs via a hard wired LAN to copy the library from the Mac Pro to the MacBook.  Wireless connections can have momentary dropouts which could affect the reliable copying of files. 
    If you do go with Air Drop be sure to open and inspect the copied library closely to confirm it was a successulf copy.
    OT

  • In an HDV sequence can I "scrub" the timeline and record it via FW to tape?

    In an HDV sequence can I "scrub" the timeline and record it via FW to tape?
    In standard definition I used to be able to do this via Firewire to my mini-dv deck. But now I am working with the Canon Vixia30, an HDV camera. I'd like to be able to scrub the time line back and forth at varying speeds and record this scrubbing live (rather than doing it with Motion software.) Is there anyway to "record" this action, either onto tape or digitally, while maintaining the HD resolution?
    If possible I'd like to figure out how to do this without buying extra equipment. I understand I could get a Matrox MO2 Mini box ($450.) to output the live HD signal, but then how to record the HD signal from the Matrox box? (my camera only has HDMI out, not in.)
    Thank you for your input.

    And if you capture your footage as ProRes (as I see discussed in another thread), you cannot output to HDV via firewire. It would be pointless. To go from a lossy format to ProRes to edit...then convert back to HDV. Typically people who shoot HDv never master back to HDV, as it isn't a mastering format.
    And yes, the MAX is totally worth it. Compression times faster than RT (meaning less time to compress than the timeline is long...I did 90 min timeline in 75 min yesterday). Worth it? Depends how much your time is worth. TO me, I'd like to have the compression done in 75 minutes opposed to 3-4 hours.
    Shane

  • I can't drag the Icon into the Applic. folder

    I have a iMac and can't drag the FF icon into the Applications folder

    Firefox 5 requires at least OS X 10.5 and an Intel Mac. There is a third party version of Firefox 5 that runs on OS X 10.4/10.5 and PPC Macs, for details see http://www.floodgap.com/software/tenfourfox
    If you prefer, you can get the latest version of Firefox 3.6 from http://www.mozilla.com/en-US/firefox/all-older.html

  • Why can't see the timeline audio waveform on sequences inside another sequence in Premiere Pro CS6? Can I fix this?

    Does anyone know why I can't see the timeline audio waveform on sequences inside another sequence in Premiere Pro CS6? Can I fix this?

    PERFECT!!! THANK YOU, Ann!!!

  • Can't drag the divider of HDividedBox

    hello everyone, this is my code:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
          xmlns:s="library://ns.adobe.com/flex/spark"
          xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" >
    <fx:Script>
      <![CDATA[
       protected function btnRemove_clickHandler(event:MouseEvent):void
        while(hbox.numChildren>0){
         hbox.removeChildAt(0);
       protected function btnAdd_clickHandler(event:MouseEvent):void
        hbox.addChild(a);
        hbox.addChild(b);
       protected function btnAddNew_clickHandler(event:MouseEvent):void
        var p:Panel = new Panel();
        p.title = "C";
        p.percentWidth = 50;
        hbox.addChild(p);
        var p2:Panel = new Panel();
        p2.title = "D";
        p2.percentWidth = 50;
        hbox.addChild(p2);
      ]]>
    </fx:Script>
    <fx:Declarations>
      <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <s:layout>
      <s:VerticalLayout/>
    </s:layout>
    <s:Button label="Remove" id="btnRemove" click="btnRemove_clickHandler(event)"/>
    <s:Button label="Add" id="btnAdd" click="btnAdd_clickHandler(event)"/>
    <s:Button label="AddNew" id="btnAddNew" click="btnAddNew_clickHandler(event)"/>
    <mx:HDividedBox width="100%" height="100" id="hbox">
      <mx:Panel title="A" id="a" width="100%" height="100%">
      </mx:Panel>
      <mx:Panel title="B" id="b" width="100%" height="100%">
      </mx:Panel>
    </mx:HDividedBox>
    </s:Application>
    my problem is :
    when i first load the application,i can drag the divider of  HDividedBox.
    after i click the remove button,remove all children of HDividedBox.
    i click Add Button  ,add the old child, but i can't drag the divider again.
    i click AddNew Button ,sometime can drag the divider but sometime can't
    it is so strange.i cost a lot of time on it ,but can't find the reason.i need some help to resolve it,thanks!

    Try adding hbox.validateNow() after adding or removing children?

  • My I pod only works with double click and I can't  drag the screen with my finger?

    Hi,
    My i-pod doesn't work very well at the moment.
    I can't drag over the screen en have to double click on my screen. I can't drag the screen from left to rigth and not from above to below.
    The hard reset didn't work and i can't reach the menu where i can restore all setting. My son alternated one of the direction.
    who can help me?
    thanks
    gtz Ton

    You have the accessibility VoiceOver feature turned on.
    Triple click the home button and try going to Settings>General>Accessibility and turn VoiceOver off. You may have to use three fingers to scroll the screen to get there. If problems see the following for how to turn off via iTunes:
      iPhone: Configuring accessibility features (including VoiceOver and Zoom)

  • I was told of an application that will allow the use of a second screen to view my data and files, but I forgot its name. I'd like to make the connection because my LCD is broken.

    I was told of an application that will allow the use of a second screen to view my data and files, but I forgot its name. I'd like to make the connection because my LCD is broken.

    You don't need an application, just plug a compaitble monitor into the display port of your MacBook Pro, set the screen up in System Preferences>Displays

  • With the new iOS7 how can I make the picture on my lock screen smaller or is this a glitch with the new iOS7?

    With the new iOS7 how can I make the picture on my lock screen smaller or is this a glitch with the new iOS7?
    I got the 5s and everytime I try and change the picture on my lock screen the picture is 10x way to big. I try and resize it and make it smaller but it will nto get smaller.
    How can I fix this?

    See Empty/corrupt iTunes library after upgrade/crash.
    tt2

  • How can I add the date to my locked screen on iPhone 5, i0S7

    How can I add the date to my locked screen on iPhone 5, i0S7

    The date is not showing up on the locked screen since I updated to the latest software.  Trust me, I looked for it before posting

  • Can I connect the digital output of flat screen to digital stereo output?

    can I connect the digital output of flat screen to digital stereo output? 

    Hello JRefugio,
    Welcome to the Sony Community.
    Are you referring to a Sony flat screen TV? What is the model number of the device to which you wish to connect the digital output from the flat screen? It is required to know the exact model number of the Sony product so that the appropriate information can be provided.
    Thank you for your post.

  • Safari status bar disappears.  I have tried clicking on show status bar and it will only appear when I move the cursor to the top of the screen.  I can not minimize the open page only full screen or close the browser.  Any idea how the rectify this

    Safari status bar disappears. I have tried clicking on show status bar, under the View tab and it will only appear when I move the cursor to the top of the screen. I can not minimize the open page, only full screen or close the browser. Any idea how the rectify this issue?

    One enters and exits full-screen with control+command+F keys. This is on the View menu in Safari. Optionally, the green traffic light in your browser title bar, if you roll over it, has the full-screen control it it. While in full-screen mode with Safari, moving your mouse pointer virtually up, and off-screen reveals the Safari title bar again, and you can click the green traffic light to exit full-screen mode.
    You can hide/show the status bar by simply typing command+/. This too, is on the Safari View menu. and in 10.10.1 — it works reliably for me.

  • How can i change the image in portal logon screen

    hi guys
    pls tel me
    how can i change the image in portal logon screen
    thanks
    regards
    kamal

    Hi
    Download the par file com.sap.portal.runtime.logon.par.bak from
    Go to System Administration -- Support -- Portal Runtime -- Browse Deployment.
    The path should ROOT/WEB-INF/deployment/pcd. Now download that file into local system.
    Create a Par project and make necessary chenages ..i.e
    Open the downloaded par file with WinZip and inside the lib folder three jar files named com.sap.
    portal.runtime.logon_api.jar, com.sap.portal.runtime.logon_core.jar and umelogonbase.jar will be there. Copy those files in the folder u2018libu2019 in par project.
    Now change a branding Image...i.e
    Replace the branding-image. jpg with your company branding image in the same name.
    Once modifications are done,then create a par project and upload the par file into portal.
    Go to the path System Administration -- Support -- Support Desk -- Portal Runtime -- Administration console.
    then browse the file and click on upload.
    Connect to server where the Portal WebAS is running and go to:
    (drive):\usr\sap\<system id>\<system instance>\j2ee\cluster\server0\apps\sap.com\com.sap.security.core.admin\servlet_jsp\logon\root\layout.
    There you will find the images used on logon screen, you can replace them for your
    company images, please take care with the width of the images, as usual, to make this
    change effective, you must restart the whole WebAS.
    Regards,
    Raju

Maybe you are looking for

  • Transformation XML - abap

    dear abap experts, i currently want to read an xml file and convert it to an internal table in abap program. in sap help, i find TRANSFORMATION, but the example there is convert from data in abap to xml format. i have tried to convert from xml file t

  • GLTRS - Scheduled Finish Date and 2LIS_04_P_MATNR extractor

    Hi Experts, Its a strange situation. I have one process order which is showing GLTRS as 3/3/2009 in AFKO but when I extract this order (after filling up setup table for full load) using 2LIS_04_P_MATNR the record doesnt bring the same date; instead i

  • Huawei E220

    OK, I have this modem and I cannot make it work unless I remove the usb_storage module. I suppose that I have a problem with usb_modeswitch, but I do not know what it might be. $ lsusb Bus 002 Device 011: ID 12d1:1003 Huawei Technologies Co., Ltd. E2

  • Mail doesn't "see" contacts. How to Fix?

    Some time ago, I pulled my Address book contacts into Maverick's Contacts, and this was successful; they're all there, categories, notes, comments.. However, Mail.app doesn't draw from any source when I begin to compose an email to people whose addre

  • How to download skype for ipad mini

    Please help me how to download skype for ipad mini..thanks!