Why won't my movie widget work

I have a new computer running mac OS 10.7 lion. when I tried o access the movie widget it is black. how can I fix it anfd get it to work?

What movie widget?
iMovie?
Where is it black? In the dock?
Does it work?

Similar Messages

  • Why won't the 3d widget work in my Photoshop file?

    For simple files, the 3d widget appears when I convert an object to a Postcard and responds to my use of it. For some of my complex multi-layer files, the widget shows up but does not respond to my mouse clicks. It just sits there. I can manipulate the object using the 3d navigation tools, but the widget is useless. Is this a memory problem? I'm having problems with a 170 MB file with no other apps running other than Photoshop.
    I'm on a Mac 2.66 GHz PowerBook with 8GB of RAM running OSX 10.8.5.

    [Moved the discussion to Photoshop Forum]

  • HT4095 Why won't a movie download that I rented from iTunes Store

    Why won't a movie download that I rented from iTunes Store

    Click here and ask the iTunes Store staff for assistance.
    (114449)

  • Why won't the movie I purchased on itunes not download to my ipod?

    why won't the movie I purchased on itunes not download to my classic ipod. In ipod's summary, I checked "all" under sync for movies. I have the classic 160 gig ipod and have plenty of space. I unchecked "HD" and chose the 720 resolution. What next?

    HI moveandshaker,
    try to open itunes then drag the movies to your device.

  • Why won't my iTunes code work

    Why won't my iTunes code work helpppp

    Hi Benrad09,
    If you are having issues redeeming an iTunes Gift code, you may find the following article helpful:
    Apple Support: If you can't redeem your iTunes Gift Card or code
    http://support.apple.com/kb/HT6021
    Regards,
    - Brenden

  • Why won't my .mov or my .mp4 movie play in Keynote 4.0?

    Others on the forum seem able to play movies in their keynote projects. I can't.
    When the slide I have placed the movie comes up, the movie plays for a second or so and then quits while the next slide comes up. What am I doing wrong? The movie is just over 2 minutes long. Why won't it play?
    Any help will be appreciated. I'm new to using Keynote. I've enjoyed making builds with music on mulitiple slides, but dang it, I can't seem to make a simple .mov or a .mp4 movie work. I'm guessing I'm missing something very basic. Please help.

    If I am understanding your problem correctly, this is unfortunately a bug (or simply an unsupported feature) in Keynote that has not been corrected since the very beginning. Currently, the only way to have a movie play properly through is to:
    1) make sure the slide containing the movie has no delay in the transition to the next slide, and
    2) you will need to create transparent objects (like a square), each building in a set amount of seconds (60 seconds max allowable per object). For example: For a three minute movie, you will need to create an object, build it in over 60 seconds. Then copy and paste for the second object only this time, set it to start building in AFTER the previous build. Copy and paste again, set to build after the previous build, only this time, you will need to adjust the 60 seconds down to whatever fits. When the last object is done building, the slide will transition regardless of whether or not the movie is done playing.
    It is a complete waste of time as trying to determine the duration of the last object to build in is totally trial and error. I am amazed that this simple feature (playing a movie within a slide) is hampered.

  • HT4972 Why won't Kindle or instagram work on my I-Touch? Why do either of them require IOS 4 or 5?

    Why won't Kindle or instagram Apps work on my I-Touch?
    Why do either of them require IOS 4 or 5 and why can't Itouch V2 update to IOS 4 or 5 operating systems?

    1. The developer stopped supporting older iOS versions.
    2. A second generation iPod touch can be updated to iOS 4.2.1 but doesn't have enough RAM to run iOS 4.3 or newer.
    (82591)

  • WHY WON'T STICKY KEYS ACCESSABILITY WORK ON SAFARI/

    WHY WON'T STICKY KEYS ACCESSABILITY FEATURE WORK ON SAFARI? I AM A DOUBLE AMPUTEE AND THIS FEATURE REALLY HELPS ME.
    RANDY

    Do us all a favor, and unlock your Cap keys.  It's considered yelling, and it's a real turn-off for those looking to help posters here.

  • Why won't my lock button work?

    I went to lock my iPod and my lock button won't work. I can't even push it down, it's like stuck down in the hole but it won't pop back up. Everything works fine but I have to wait for it to auto-lock everytime I want to turn it off. Why won't the button pop back up?

    It looks like you have a hardware issue. I don't know why the button doesn't pop up, but You can enable assistive touch. Assistive touch gives you a virtual lock button, so that will solve you problem. You can enable it by going to Settings->General->Accessibillity->AssistiveTouch->On.

  • Why won't my "if" expression work?

    This calculation works:
    IF(A3<1,A3*10,IF(A3<5,20))
    Why won't this one:
    if(A4<1,B4==0,if(A4>1<=2,40,if(A4>2<=3,60,if(A4>3<=4,100,if(A4>4<=5,125)))))
    If you want me to send you the table that I am trying to make this work in, just let me know. Thanks,
    Elaine.

    Never mind, I figured it out! Whew.

  • Why won't megapack for iworks work on my mac?

    Why won't my megapack for iworks work on my macbook pro?

    only pages will work and its crap...what a waste of money.

  • Why won't time capsule router work?

    Why won't the time capsule's wireless router work to allow internet access?  Just got it, new 2 tb!  Lost the excitement of it all now!  Help!  Connecting to new MacBook pros (13" &amp; 2X15"s) as well as a Toshiba laptop.  Followed all the directions and backed up just fine, but have not been able to browse web at all with this crap!

    You do not have to load the airport utility.. a newer version is already included on the computer.
    Just go to the applications / utility directory and start airport utility.

  • Why won't combined AND statement work

    I want to exclude records based on two criteria's: status = 'M' and the status reason = 52.
    The table contains records with status = 'M' and status reason other than 52.
    Also the table contains records with status other than 'M' and status reason = 52 and I want to include those records.
    I first tried using the statement below reasoning that placing the two criteria's in parenthesis would combine them and only exclude records with M 52
    Where (nvl(Status_CD,'A') <> 'M' AND nvl(STATUS_RESN_CD,0) <> 52 )
    However the query removed all records with Status_CD 'M' and all records with Status_Resn_CD 52. 
    Using the Where Not statement worked.
    Where Not (External_Status_CD = 'M' and EXT_STAT_RESN_CD = 52 ) 
    I’m curious why the first statement didn’t work?
    Can anyone explain why the first query didn't combine the 2 statements but a Where Not did?
    Thank you - Mark

    HI, Mark,
    markjames9 wrote:
    I want to exclude records based on two criteria's: status = 'M' and the status reason = 52.
    The table contains records with status = 'M' and status reason other than 52.
    Also the table contains records with status other than 'M' and status reason = 52 and I want to include those records.
    I first tried using the statement below reasoning that placing the two criteria's in parenthesis would combine them and only exclude records with M 52
    Where (nvl(Status_CD,'A') <> 'M' AND nvl(STATUS_RESN_CD,0) <> 52 )
    However the query removed all records with Status_CD 'M' and all records with Status_Resn_CD 52.
    Using the Where Not statement worked.
    Where Not (External_Status_CD = 'M' and EXT_STAT_RESN_CD = 52 ) 
    I’m curious why the first statement didn’t work?
    Can anyone explain why the first query didn't combine the 2 statements but a Where Not did?
    Thank you - Mark
    Another way of looking at it:
    The condition (x AND y) will be TRUE when both x AND y are TRUE.
    If
    sub-condition x is    nvl (Status_CD, 'A') <> 'M'   and
    sub-condition y is  nvl (STATUS_RESN_CD, 0) <> 52
    then any row with status_cd = 'M' fails sub-condition x, therefore the compound condition is FALSE, regardless of status_resn_cd.
    Likewise, and row with status_resn_cd=52 fails sub-condition y, so the compound condition is FALSE regardless of status_cd.
    You used status_cd and status_resn_cd in one example; but
    EXTERNAL_status_cd and EXT_stat_resn_cd in the other.  That's quite confusing.  Also, you'll confuse everyone (including yourself) if status is abbreviated as stat in some places but not in others.  Either way is okay, but be consistent.  The same goes for abbreviating external as ext; pick one or the other, and use the same word in all places.
    Don't forget to check for NULLs.  If  external_status_cd and ext_stat_resn_cd can be NULL, you should say
    Where Not (    NVL (External_Status_CD, 'A') = 'M'
              and  NVL (EXT_STAT_RESN_CD,    0)  = 52
    depending on your requirements.

  • Why won't logic 9.02 work with lion

    Why will logic 9.02 not work with Mac OSX Lion ????????

    The serial included with the TORRENT floating around the web for Logic 9 wont work on anything after 9.0.2
    $100 says this is why said user is freaking on a simple update... just sayin

  • TS4027 Why won't Pitch/Modulation Wheel work in Mainstage?

    I have a new Akai MPK61 midi controller. Is there any reason why the modulation/pitch wheel should not work in Mainstage? All the keys, knobs, sliders work properly. In fact, they work fine in Ableton Live and the native software program. Akai tech support says this is a mainstage issue since it works in Ableton.
    Any help much appreciated!

    Hi!
    Do you have the wheel set up in MainStage?
    Sometimes, a controller will have certain knobs and stuff work automatically, but it's safer to set them up seperately.
    Go to: Layout - Screen Controls Palette - Shelf Controls, then drag the Mod/Pitch Wheel over. Then click "assign", move the real wheel back and forth, click "assign" again and you should be done.

Maybe you are looking for

  • How can I create a solution with Livecycle

    I work for a high school and we have about 12 pdfs that we need parents to read/scroll through, then 10 (different) pages that we want them to print, complete and return to the school.  Finally, we want them to see a "Thank you, you have done all you

  • 2008 MacBook Pro won't boot from Leopard DVD or Target Disk

    Yesterday I was working on my MacBook Pro. I use FontExplorer to manage fonts. I ran the conflicts diagnostic looking for missing font files, which returned about 200 results (I was expecting this). I've moved the fonts installed by Adobe/Microsoft o

  • When I connect my iPod touch to my stereo, I cannot skip tracks using my iPod or the stereo controls.

    When I connect my iPod touch to my stereo, I cannot change tracks using the iPod or the stereo controls. I did not have this problem with my iPod nano. I have the software update 4.2.1 installed. Is it a problem with the software or the stereo? Pleas

  • Program is not working

    friends, need help once again. i have created one structre which is based on table pa0000 and pa0001. where pernr is primary key on both table. i have seen both table data and there is more then 5000 records for same key. my datasource ias based on t

  • Phone Agent LIED about removing Late Fee

    OK, so I had to biz-travel a bit this past Spring, inadvertantly got behind on the bill, paid up in full, incl. LATE FEE--online--June 21st, in the wee hours, before phone agents available. Later that evening, thought "doesn't hurt to ask", got a liv