Why is the upload screen not appearing?

Hello All.
     I have made another topic post about this topic, however the solution for that is not working. I am using a Macbook Pro running OS X Mavericks. iPhoto recognizes this camera, however on iMovie, an upload screen on iMovie, which is supposed to show up, is not showing up to upload videos. What steps or series of steps should I do in order to make this work?
Thanks,
RubikCubeSolver

RubikCubeSolver wrote:
Sony "Carl Zeiss Vario-Sonnar T*" camera.
That refers to the lens not the specific camera.model
But it sounds like you're using a "still" camera that also records video
Does iPhoto recognize the camera?
Have you tried connecting with the AC power adapter connected?
Matt

Similar Messages

  • Why does the airplay symbol not appear on the top left of my imac i bout this computer this august and i bought the apple tv yesterday?? what can i do to make the airplay work??

    why does the airplay symbol not appear on the top left of my imac i bout this computer this august and i bought the apple tv yesterday?? what can i do to make the airplay work??

    Open  > About this Mac and see Version. If it's 10.7.x, read > http://www.apple.com/osx/uptodate

  • Why is the iphone icon not appearing on my itunes when I plug it into my computer?

    Why is the iphone icon not appearing on my itunes when I plug it into my computer? I am online, my itunes is up and running, my new phone is plugged in, and for whatever reason the iphone icon that is supposed to appear is not showing up after I plug my phone in.

    Place the Device into Recovery mode...
    http://support.apple.com/kb/HT1808
    Note on Recovery Mode.
    You may need to try this More than Once...
    Be sure to Follow ALL the Steps...
    Once you have Recovered your Device...
    Re-Sync your Content or Restore from the most Recent Backup...
    Restore from Backup  >  http://support.apple.com/kb/ht1766

  • Why does the CD icon not appear on my desktop?

    I just got my new iMac with lion on it - When I insert a CD or my external hard drive in the USB the icons do not appear on the desktop like they did on snow leapord. Any idea how to get the CD and drive Icon's to appear on my desktop?

    Lauren,
    Go to Finder>Preferences...>General...and make the appropriate choices:

  • Why does the properties menu not appear with the templates?

    Hi,
    This is a bit hard to explain but maybe someone will get it.
    If you draw a div on your deisgn window 'draw AP div' then
    click somewhere on that div again, in the design window, then you
    get a list of properties at the bottom such as width, height, top,
    left, z-index etc....ok.
    Now if i load the '3 column hybrid header and footer
    template' and click on any div on the deisgn window of this
    template then i dont get this properties menu at the bottom. The
    width in the css template are set in 'em' btw if that matters.
    Now i am thinking there is a fundmental difference betwee the
    divs in the template than drawing a div using the 'draw AP div'
    tool.??
    It's kinda of like the templates are using pure css whereas
    the AP div is a mixture, ok i am sure i am WAY of the mark here and
    this is just a little thing. Can someone explain?
    thanks for any advice!

    > Now if i load the '3 column hybrid header and footer
    template' and click
    > on
    > any div on the deisgn window of this template then i
    dont get this
    > properties
    > menu at the bottom.
    That's because the div *you* created was Absolutely
    Positioned, and there is
    a specific inspector for absolutely positioned elements. But
    the divs in
    the 3-column hybrid header and footer are NOT absolutely
    positioned and so
    you do not get the special inspector. If you are not sure
    about the
    difference between absolutely positioned and non-positioned
    elements, then
    you would be well advised to NOT use absolute positioning
    until you do. It
    will create big problems for you if you ignore this.
    > The width in the css template are set in 'em' btw if
    that matters.
    That makes the container expand in width as the font size is
    expanded by the
    visitor, which is what is meant by the 'hybrid' term in the
    sample file's
    name.
    > Now i am thinking there is a fundmental difference
    betwee the divs in the
    > template than drawing a div using the 'draw AP div'
    tool.??
    Yes, definitely. This may help you understand positioning a
    bit -
    There are 4 different types of positioning:
    Absolute
    Relative
    Fixed
    Static
    Here is a brief explanation of each kind of positioning (with
    regard to
    placement of elements on the page only)....
    Position:absolute (or A/P elements)
    This does several things -
    1. It 'removes' the element from the flow of the code on
    the page so that
    it can no longer influence the size or position of any other
    page element
    (except for those contained within it, of course).
    2. The absolutely positioned element takes its position from
    the position of
    its closest PARENT *positioned* element - in the
    absence of any explicitly
    positioned parent, this will default to the <body> tag,
    which is always
    positioned
    at 0,0 in the browser viewport.
    This means that it doesn't matter where in the HTML code the
    layer's code
    appears (between <body> and </body>), its
    location on the screen will not
    change (this assumes that you have not positioned the A/P
    element within
    a table or another A/P element, of course).
    Furthermore, the space in
    which
    this element would have appeared were it not positioned
    is not preserved
    on the screen. In other words, absolutely positioned elements
    don't take
    up any space on the page. In fact, they FLOAT over the page.
    Position:relative (or R/P elements)
    In contrast to absolute positioning, a relatively positioned
    page element is
    *not* removed from the flow of the code on the page, so
    it will use the
    spot
    where it would have appeared based on its position in
    the code as its
    zero point reference. If you then supply top, right,
    bottom, or left
    positions
    to the style for this element, those values will be
    used as offsets from
    its
    zero point.
    This means that it DOES matter where in the code the
    relatively positioned
    element appears (, as it will be positioned in that location
    (factoring in
    the offsets) on the screen (this is true for any placement in
    the code).
    Furthermore, the space where this element would have
    appeared is
    preserved in the display, and can therefore affect the
    placement of
    succeeding elements. This means that the taller a relatively
    positioned element is, the more space it forces on the page.
    Position:static
    As with relative position, static positions also "go with
    the flow". An
    element with a static position cannot have values for
    offsets (top, right,
    left, bottom) or if it has them, they will be ignored. Unless
    explicitly
    positioned, all div elements default to static positioning.
    Position:fixed
    A page element with this style will not scroll as the page
    content scrolls.
    Support for this in elements other than page backgrounds is
    quirky
    There are several other things you need to know:
    1. ANY page element can be positioned - paragraphs, tables,
    images, lists,
    etc.
    2. The <div> tag is a BLOCK level tag. This means that
    if it is not
    positioned or explicitly styled otherwise, a) it will always
    begin on a new
    line on the screen, and b) it will always force content to a
    new line below
    it, and c) it will always take up the entire width of its
    container (i.e.,
    width:100%).
    3. The placement of A/P elements *can* affect the BEHAVIOR of
    other
    elements
    on the page. For example, a 'layer' placed over a hyperlink
    will mask that
    hyperlink.
    You can see a good example of the essential difference
    between absolute and
    relative positioning here -
    http://www.great-web-sights.com/g_layersdemo.asp
    You can see a good demonstration of why using layers for a
    page layout tool
    is dangerous here -
    http://www.great-web-sights.com/g_layer-overlap.asp
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "rams30" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi,
    >
    > This is a bit hard to explain but maybe someone will get
    it.
    >
    > If you draw a div on your deisgn window 'draw AP div'
    then click somewhere
    > on
    > that div again, in the design window, then you get a
    list of properties at
    > the
    > bottom such as width, height, top, left, z-index
    etc....ok.
    >
    > Now if i load the '3 column hybrid header and footer
    template' and click
    > on
    > any div on the deisgn window of this template then i
    dont get this
    > properties
    > menu at the bottom. The width in the css template are
    set in 'em' btw if
    > that
    > matters.
    >
    > Now i am thinking there is a fundmental difference
    betwee the divs in the
    > template than drawing a div using the 'draw AP div'
    tool.??
    >
    > It's kinda of like the templates are using pure css
    whereas the AP div is
    > a
    > mixture, ok i am sure i am WAY of the mark here and this
    is just a little
    > thing. Can someone explain?
    >
    > thanks for any advice!
    >

  • Why does the cloud icon not appear in safari

    Hey,
    iMac, Safari Version 6.0 (8536.25), OS 10.8.1. 
    Safari doesn't have the cloud icon, though I am signed into iCloud, and Safari is turned on in iCloud.  I am using iCloud to sync contacts and that works.  But when I try to  turn on the sync of notes I get told to go to the app store and get the latest iOS.   Which I already have...  (Open the App Store and update to the latest version of OS X.  After updating, you can turn on Mail and Notes.)
    The app store has no new OS X of course.
    Any ideas?

    Thanks,  the option is there in Customize Toolbar and it is set to appear on the toolbar, it just doesn't appear.
    Although...  The iPad can now collect the tabs. 
    Am I misunderstanding this?   Are tabs on the iPad not supposed to be visible on the iMac?

  • Why does the upload button not work in Acrobat XI for Mac?

    The upload button in the menu bar gives an error message when I try to upload a document to acrobat.com.
    I checked in my preferences that I am logged into acrobat.com.
    Is this an installation issue?

    It's working for me in Acrobat XI:
    I'd try logging into Acrobat.com from your browser, and log in with your Adobe ID. There may be a problem there:
    workspaces.acrobat.com

  • In Firefox 4, why are the website icons not appearing in the tabs and next to the URL in the address bar? They appear fine in the bookmarks menu.

    The little favicons that represent the website show up as the blank page icon in the toolbar and in the address bar, but they appear fine in the bookmarks bar. I have tried clearing my cache, and that did not help.

    The little favicons that represent the website show up as the blank page icon in the toolbar and in the address bar, but they appear fine in the bookmarks bar. I have tried clearing my cache, and that did not help.

  • Why does the airplay icon not appear after upgrading to Mavericks on my iMac.

    I am using an Apple TV, iPad 2, and an iMac with wifi sharing enabled.  Before upgrading to mavericks I was easily able to use airplay to mirror the display of my ipad2 to a projector.  After the upgrade the airplay icon will dispear.  When I restart the wifi sharing on my imac then the airplay icon will reappear on my ipad.
    Does anyone have a fix for this.  I use this in my classroom and this problem made yesterdays lesson almost undoable because students were givng presentations and each time a student wanted to project thier ipad screen I had to reset my wifi.

    http://support.apple.com/kb/ht5404
    Scroll down to the bottom, read and then perform the troubleshooting steps provided.

  • HT201272 Why is the library button not appearing in iTunes 11.0.1?

    Followed steps as outlined in article, no button appears. I wish to have access to the content I paid for.

    On iTunes 11 you can enable the left-hand sidebar via option-command-S on a Mac, control-S on a PC, which might make it easier to navigate. You can then re-download content (that which is still available in the store, excluding audiobooks and ringtones which are one-time only downloaded) by selecting the iTunes store, and then selecting the Purchased link under Quick Links on the right-hand side of the iTunes store homepage

  • Why is the actions panel not appearing?

    I am unable to view the Actions Panel window in a document I've already done a lot of work in.  It worked previously - I created an Actions Layer and was able to add action script, however, when I try to open it back up to edit the action script I wrote, neither the F9 shortcut nor the Windows>Actions pulls up the Actions Panel.  In fact, when I try either method, nothing happens.

    try changing the workspace to default (or anything different from your current).

  • Why my iPod (6th generation)not appearing in iTunes and all my songs are gone but the data is the same with last time when got songs.

    why my iPod (6th generation)not appearing in iTunes and all my songs are gone but the data is the same with last time when got songs.

    I understand that your iPod nano is not recognized in iTunes. The following troubleshooting assistant may provide a resolution:
    Apple - Support - iPod nano (6th generation) - iTunes Troubleshooting Assistant
    http://www.apple.com/support/ipodnano/6th_generation/assistant/itunes/
    If the above did not resolve your issue, choose an applicable article below that best describes your issue.
    Windows
    iPod appears in Windows but not in iTunes
    iPod not recognized in 'My Computer' and in iTunes for Windows
    iTunes reports that "iTunes cannot recognize this iPod at this time"
    Mac OS X
    iPod not recognized in iTunes and Mac Desktop
    MacBook and MacBook Air: iPod won't mount when connected via USB hub
    What to do if your computer won't recognize a USB or FireWire device
    Thanks,
    Matt M. 

  • Been using an Avastor HDX-800 for storage and backup, also a SUPERDISK for smaller stuff; recently the SUPERDISK does not appear on the screen, and the light blinks while you hear it spin, also the Avastor has started to have the same problem, both USB

    Been using an Avastor HDX-800 for storage and backup, also a SUPERDISK for smaller stuff; recently the SUPERDISK does not appear on the screen, and the light blinks while you hear it spin, also the Avastor has started to have the same problem, both USB conncected, both worked well before, but both now spinning, blinking, and not showing up on the screen as before,
    Interestingly they both appear in the System Profiler, but just not working the same as before
    I have tried other USB ports, but the same responce,

    yes I did reset the PRAM, but no benefit, still the same problem
    my usb devices are:  keyboard, mouse, printer, SD-USB-M3, and LaCie d2 DVDRW:
    the mouse and printed are plugged into the keyboard: i have tried to move, these around, and have even tried just the mouse, printer and SD-USB-M3, but still the same problem
    here is a cut and paste of the current  "System Profiler>Hardware>USB"   (usb device tree)
    USB Bus:
      Host Controller Location:          Built In USB
      Host Controller Driver:          AppleUSBOHCI
      PCI Device ID:          0x0026
      PCI Revision ID:          0x0000
      PCI Vendor ID:          0x106b
      Bus Number:          0x18
    Hub in Apple Pro Keyboard:
      Version:          1.22
      Bus Power (mA):          500
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Mitsumi Electric
      Product ID:          0x1002
      Vendor ID:          0x05ac  (Apple Computer, Inc.)
    HL-1270N series:
      Version:          1.00
      Bus Power (mA):          100
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Brother
      Product ID:          0x0008
      Serial Number:          L9J286292
      Vendor ID:          0x04f9
    Basic Optical Mouse:
      Version:          0.00
      Bus Power (mA):          100
      Speed:          Up to 1.5 Mb/sec
      Manufacturer:          Microsoft
      Product ID:          0x0084
      Vendor ID:          0x045e
    Apple Pro Keyboard:
      Version:          1.22
      Bus Power (mA):          250
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Mitsumi Electric
      Product ID:          0x0204
      Vendor ID:          0x05ac  (Apple Computer, Inc.)
    SuperDisk USB 120MB drive:
      Version:          0.0e
      Bus Power (mA):          500
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Imation
      Product ID:          0x0002
      Vendor ID:          0x0718
    Hub in Apple Pro Keyboard:
      Version:          1.22
      Bus Power (mA):          500
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Mitsumi Electric
      Product ID:          0x1002
      Vendor ID:          0x05ac  (Apple Computer, Inc.)
    HL-1270N series:
      Version:          1.00
      Bus Power (mA):          100
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Brother
      Product ID:          0x0008
      Serial Number:          L9J286292
      Vendor ID:          0x04f9
    Basic Optical Mouse:
      Version:          0.00
      Bus Power (mA):          100
      Speed:          Up to 1.5 Mb/sec
      Manufacturer:          Microsoft
      Product ID:          0x0084
      Vendor ID:          0x045e
    Apple Pro Keyboard:
      Version:          1.22
      Bus Power (mA):          250
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Mitsumi Electric
      Product ID:          0x0204
      Vendor ID:          0x05ac  (Apple Computer, Inc.)
    HL-1270N series:
      Version:          1.00
      Bus Power (mA):          100
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Brother
      Product ID:          0x0008
      Serial Number:          L9J286292
      Vendor ID:          0x04f9
    Basic Optical Mouse:
      Version:          0.00
      Bus Power (mA):          100
      Speed:          Up to 1.5 Mb/sec
      Manufacturer:          Microsoft
      Product ID:          0x0084
      Vendor ID:          0x045e
    Apple Pro Keyboard:
      Version:          1.22
      Bus Power (mA):          250
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Mitsumi Electric
      Product ID:          0x0204
      Vendor ID:          0x05ac  (Apple Computer, Inc.)
    SuperDisk USB 120MB drive:
      Version:          0.0e
      Bus Power (mA):          500
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Imation
      Product ID:          0x0002
      Vendor ID:          0x0718
    USB Bus:
      Host Controller Location:          Built In USB
      Host Controller Driver:          AppleUSBOHCI
      PCI Device ID:          0x0026
      PCI Revision ID:          0x0000
      PCI Vendor ID:          0x106b
      Bus Number:          0x19
    LaCie d2 DVDRW USB:
      Capacity:          451.76 MB
      Removable Media:          Yes
      Detachable Drive:          Yes
      BSD Name:          disk2
      Version:          0.00
      Bus Power (mA):          500
      Speed:          Up to 12 Mb/sec
      Manufacturer:          LaCie
      OS9 Drivers:          No
      Product ID:          0x1011
      Serial Number:          FFFFFFFFFFFF
      S.M.A.R.T. status:          Not Supported
      Vendor ID:          0x059f
    LaCie d2 DVDRW USB:
      Capacity:          451.76 MB
      Removable Media:          Yes
      Detachable Drive:          Yes
      BSD Name:          disk2
      Version:          0.00
      Bus Power (mA):          500
      Speed:          Up to 12 Mb/sec
      Manufacturer:          LaCie
      OS9 Drivers:          No
      Product ID:          0x1011
      Serial Number:          FFFFFFFFFFFF
      S.M.A.R.T. status:          Not Supported
      Vendor ID:          0x059f

  • I have MAC OS X 10.6.8 (up-to-date). How can I get screen mirroring to my Apple TV to work?  The icon does not appear at top status bar..

    I have MAC OS X 10.6.8 (up-to-date). How can I get screen mirroring to my Apple TV to work?  The icon does not appear at top status bar..

    Welcome to the Apple Support Communities
    See > http://support.apple.com/kb/HT5404 AirPlay Mirroring is compatible with Mid 2011 and newer MacBooks Air, and OS X Mountain Lion.
    As you have Mac OS X Snow Leopard, you haven't got a compatible MacBook Air, so you can't use AirPlay Mirroring. However, you can use a third-party app as AirParrot to mirror the MacBook onto your Apple TV > http://www.airparrot.com

  • I do I eject a blank CD stuck in my iMac 10.7.5? The CD does not appear on my desktop. Why not?

    How do I do I eject a blank CD stuck in my iMa 10.7.5? Also, the CD does not appear on my desktop. Why not?

    Here are some ways to eject it, hope this helps.
    Five ways to eject a stuck CD or DVD from the optical drive
    Ejecting the stuck disc can usually be done in one of the following ways:
      1. Restart the computer and after the chime press and hold down the
          left mouse button or track pad until the disc ejects.
      2. Press the Eject button on your keyboard at power up.
      3. Click on the Eject button in the menubar.
      4. Press COMMAND-E.
      5. If none of the above work try this: Open the Terminal application in
          your Utilities folder. At the prompt enter or paste the following:
            /usr/bin/drutil eject
    If this fails then try this:
    Boot the computer into Single-user Mode. At the prompt enter the same command as used above. To restart the computer enter "reboot" at the prompt without quotes.
    By Kappy

Maybe you are looking for

  • My iphone wont let me download bbm because it is saying i have got it on app store but will not show up on my home screen

    My iphone wont let me download bbm because it claims ive already got it on apple app store , but the app will not show on home screen nor on settings

  • Access to non-apple system prefs

    We are in a corporate environment. When setting up new Macs we turn off access to the System Preferences using the Accounts Control Panel. We want to prevent users from changing Network settings, Sharing options, etc. that we setup up for our company

  • Java.lang.NullPointerException after setDisabled(false);

    Trying to execute it.setDisabled(false) or it.setReadOnly(false) i get: ava.lang.NullPointerException ADF_FACES-60097:For more information, please see the server's error log for an entry beginning with: ADF_FACES-60096:Server Exception during PPR, #1

  • Cloud Database Size ?

    Hi, I was looking at the clod database sizing, Oracle public cloud is providing S5 (5GB), S20 (20GB), S50 (50GB) size database in their cloud. Does it mean that macimum database size available on cloud is 50G with maximum data transfer 300G ? If my c

  • I have weird Xs in my finder window...

    under the network drive where * and ' were in file names. The harddrive files are displaying correctly. I have recently reinstalled 10.4 (and upgraded to 10.4.6) so I am sure there is some setting I have to adjust. Can anyone tell me which setting an