Illustrator 3D Revolve  - getting only black 3D

After doing everything by the book, and giving different sections different colors, I go to Effects 3D Revolve - but get only totally black 3D, no other colors?

Describe EXACTLY, step-by-step, command-by-command, the simplest method someone can follow to reproduce the results you are seeing. Try to use the terms of the program. (Ex: it's Outline view, not "wireframe".)
JET

Similar Messages

  • .Mov shows only black screen

    Hey Guys and Gals,
    Installed Mavericks yesterday and so far very happy. I am a freelance cinematographer/editor and prior to the upgrade I had some footage from a client that was in .MOV format, codec I can't remember but now the system doesn't play these files at all, Quicktime says converting and says a .mov is not supported. Also I get only black video in Adobe Premiere. Any ideas?

    I got same problem with h264 exported by ADOBE Premiere Pro, and my soundman cannot play it on his MAc it gives a black screen. But he can playback other h264 with similar specs, but that that were made with Sorenson 3.

  • G4 Imac 1ghz Video adapter TV shows only black and white

    Have purchased correct adapter for this machine...when using s-video cable get only black and white on TV. Using rca jack we get color but of course with poorer resolution. Any suggestions re: problem
    Tom

    Hi, I own a Satellite S1410-801 purchased in Italy but few months ago I moved to Venezuela where the TV system is different, I mean, is there a way to change or use a laptop with PAL TV out system in a region or coutry with uses a NTSC system?
    Thanks in advance.

  • I get a black screen on the camera app on my iPod touch? Is there a solution? Resetting only helped for a few days, problem comes back.

    I get a black screen on the camera app on my iPod touch? Is there a solution? Resetting only helped for a few days, the problem comes back.
    Camera works, with the side buttons it takes pictures.
    Although I'm not able to see on the screen.
    Mike

    First try a restore from backup
    If problem still occurs try a restore to factory defaults/new Pod.
    If still occurs likely a hardware problem and an appoitment at the Genius Bar of an Apple store is in order.

  • [GDI PLUS and win32] - why i only get a black image?

    heres my image class:
    class image
    private:
    ULONG_PTR m_gdiplusToken;
    Gdiplus::GdiplusStartupInput gdiplusStartupInput;
    HDC hdcimage=CreateCompatibleDC(NULL);
    Gdiplus::Graphics *graphic;
    Image *img;
    int imageheight=0;
    int imageweight=0;
    int framecount=0;
    int intSelectFrame=0;
    int framedelay=0;
    string strfilename="";
    Gdiplus::Color clrBackColor=Gdiplus::Color::Transparent;
    HDC hdcwindow;
    bool blnTransparent=true;
    public:
    image()
    Gdiplus::GdiplusStartup(&m_gdiplusToken, &gdiplusStartupInput, NULL);
    HBITMAP hbitmap=CreateCompatibleBitmap(hdcimage,1,1);
    SelectObject(hdcimage, hbitmap);
    image(HDC hdcWindow)
    Gdiplus::GdiplusStartup(&m_gdiplusToken, &gdiplusStartupInput, NULL);
    hdcwindow=hdcWindow;
    image(int width, int height)
    Gdiplus::GdiplusStartup(&m_gdiplusToken, &gdiplusStartupInput, NULL);
    hdcimage = CreateCompatibleDC(NULL);
    HBITMAP hbitmap=CreateCompatibleBitmap(hdcimage,width,height);
    SelectObject(hdcimage, hbitmap);
    framecount=1;
    image( const string & filename)
    Gdiplus::GdiplusStartup(&m_gdiplusToken, &gdiplusStartupInput, NULL);
    if(toupper(filename[filename.size()-3])=='C' && toupper(filename[filename.size()-2])=='U' && toupper(filename[filename.size()-1])=='R')
    //create the transparent icon handle
    HCURSOR hicon = (HCURSOR)LoadImage(NULL, filename.c_str(), IMAGE_CURSOR, imageweight, imageheight, LR_LOADFROMFILE|LR_SHARED|LR_DEFAULTSIZE|LR_LOADTRANSPARENT);
    ICONINFO ii;
    BOOL fResult = GetIconInfo(hicon, &ii);
    if (fResult)
    BITMAP bm;
    fResult = GetObject(ii.hbmMask, sizeof(bm), &bm) == sizeof(bm);
    if (fResult)
    imageweight= bm.bmWidth;
    imageheight= ii.hbmColor ? bm.bmHeight : bm.bmHeight / 2;
    if (ii.hbmMask) DeleteObject(ii.hbmMask);
    if (ii.hbmColor) DeleteObject(ii.hbmColor);
    HBITMAP hbitmap=CreateBitmap(imageweight,imageheight,1,32,NULL);//create the bitmap with icon size
    SelectObject(hdcimage, hbitmap);//add the bitmap to memory DC
    DrawIconEx(hdcimage,0,0,hicon,imageweight,imageheight,0,0,DI_NORMAL);//draw the icon to DC with right size
    //seems the DrawIcon(), always, draw it with 32X32 size
    framecount=1;
    else
    Gdiplus::Image img2(towstring(filename).c_str());
    HBITMAP hbitmap=CreateBitmap(img2.GetWidth(),img2.GetHeight(),1,32,NULL);
    SelectObject(hdcimage, hbitmap);
    Gdiplus::Graphics graphics(hdcimage);
    graphics.DrawImage(&img2, 0, 0, img2.GetWidth(), img2.GetHeight());
    Gdiplus::Font fnt(L"Verdana", 10);
    Gdiplus::SolidBrush solidBrush(Gdiplus::Color(255, 255, 0, 0));
    Gdiplus::PointF pt(2, 2);
    Gdiplus::Pen pen(Gdiplus::Color(255,0,255,0));
    graphics.DrawString(L"Drawing Text", -1,&fnt, pt,&solidBrush );
    graphics.DrawLine(&pen, 0, 0, 200, 100);
    imageweight=img2.GetWidth();
    imageheight=img2.GetHeight();
    UINT count = 0;
    count = img2.GetFrameDimensionsCount();
    GUID* pDimensionIDs = (GUID*)malloc(sizeof(GUID)*count);
    img2.GetFrameDimensionsList(pDimensionIDs, count);
    framecount=img2.GetFrameCount(&pDimensionIDs[0]);
    framedelay =img2.GetPropertyItemSize(PropertyTagFrameDelay);
    img=new Image(towstring(filename).c_str());
    image (const image &cSource)
    framecount=cSource.framecount;
    framedelay=cSource.framedelay;
    clrBackColor=cSource.clrBackColor;
    img=cSource.img->Clone();
    imageweight=cSource.imageweight;
    imageheight=cSource.imageheight;
    BitBlt(hdcimage,0,0,imageweight,imageheight,cSource.hdcimage,0,0,SRCCOPY);
    image& operator= (const image &cSource)
    framecount=cSource.framecount;
    framedelay=cSource.framedelay;
    intSelectFrame=cSource.intSelectFrame;
    clrBackColor=cSource.clrBackColor;
    imageweight=cSource.imageweight;
    imageheight=cSource.imageheight;
    BitBlt(hdcimage,0,0,imageweight,imageheight,cSource.hdcimage,0,0,SRCCOPY);
    return *this;
    property <int> SelectFrame
    Get(int)
    return intSelectFrame;
    Set(int selectframe)
    intSelectFrame=selectframe;
    UINT count = 0;
    count = img->GetFrameDimensionsCount();
    GUID* pDimensionIDs = (GUID*)malloc(sizeof(GUID)*count);
    img->GetFrameDimensionsList(pDimensionIDs, count);
    img->SelectActiveFrame(&pDimensionIDs[0],intSelectFrame);
    graphic=new Graphics(hdcimage);
    graphic->Clear(clrBackColor);
    graphic->DrawImage(img, 0, 0, img->GetWidth(), img->GetHeight());
    property<int> FramesCount
    Get(int)
    return framecount;
    property<Gdiplus::Color> Backcolor
    Get(Gdiplus::Color)
    return clrBackColor;
    Set(Gdiplus::Color bkcolor)
    clrBackColor = bkcolor;
    SetDCBrushColor(hdcimage,clrBackColor.ToCOLORREF());
    void draw(HDC control)
    //if (clrBackColor.GetValue() == Gdiplus::Color::Transparent)
    if (clrBackColor.GetValue()== Gdiplus::Color::Transparent)
    TransparentBlt(control, 0, 0,width(),height(),hdcimage, 0, 0,width(), height(), GetPixel(hdcimage,width()-1,height()-1));
    else
    BitBlt(control,0,0,width(),height(),hdcimage,0,0,SRCCOPY);
    //InvalidateRect(WindowFromDC(control),NULL,false);
    operator HBITMAP()
    HBITMAP hbitmap=CreateBitmap(imageweight,imageheight,1,32,NULL);//create the bitmap with icon size
    SelectObject(hdcimage, hbitmap);//add the bitmap to memory DC
    MessageBox(NULL,to_string(GetLastError()).c_str(),"error",MB_OK);
    return hbitmap;
    int height()
    return imageheight;
    int width()
    return imageweight;
    operator HDC()
    return hdcimage;
    ~image()
    delete img;
    Gdiplus::GdiplusShutdown(m_gdiplusToken);
    //SelectObject(hdcimage, hbmOld);
    DeleteDC(hdcimage);
    when i create an image object i must put a file name. now i need show it on menus, by HBITMAP. so i did:
    operator HBITMAP()
    HBITMAP hbitmap=CreateBitmap(imageweight,imageheight,1,32,NULL);//create the bitmap with icon size
    SelectObject(hdcimage, hbitmap);//add the bitmap to memory DC
    MessageBox(NULL,to_string(GetLastError()).c_str(),"error",MB_OK);
    return hbitmap;
    //on menus
    void bitmap(image imgImage)
    //HBITMAP bitimage = (HBITMAP)LoadImage( NULL, filename.c_str(), IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE);
    HMENU hMenu = NULL;
    if(primeiromenu)
    hMenu = mnuBar;
    else
    hMenu = MenuHandle;
    SetMenuItemBitmaps(hMenu,menuposition,MF_BYPOSITION ,(HBITMAP)imgImage ,(HBITMAP)imgImage);
    i don't get any errors. my problem is: why i get only a black color?
    when i do:
    SelectObject(hdcimage, hbitmap);
    is copy everything from HDC to hbitmap, right?

    now works fine. thanks for all
    class image
    private:
    ULONG_PTR m_gdiplusToken;
    Gdiplus::GdiplusStartupInput gdiplusStartupInput;
    HDC hdcimage=CreateCompatibleDC(NULL);
    HGDIOBJ obj=NULL;
    HBITMAP btBitmap;
    Image *img;
    int imageheight=0;
    int imageweight=0;
    int framecount=0;
    int intSelectFrame=0;
    int framedelay=0;
    string strfilename="";
    Gdiplus::Color clrBackColor=Gdiplus::Color::Transparent;
    HDC hdcwindow;
    bool blnTransparent=true;
    public:
    image()
    Gdiplus::GdiplusStartup(&m_gdiplusToken, &gdiplusStartupInput, NULL);
    btBitmap=CreateCompatibleBitmap(hdcimage,1,1);
    obj = SelectObject(hdcimage, btBitmap);
    image(HDC hdcWindow)
    Gdiplus::GdiplusStartup(&m_gdiplusToken, &gdiplusStartupInput, NULL);
    hdcwindow=hdcWindow;
    image(int width, int height)
    Gdiplus::GdiplusStartup(&m_gdiplusToken, &gdiplusStartupInput, NULL);
    hdcimage = CreateCompatibleDC(NULL);
    btBitmap = CreateCompatibleBitmap(hdcimage,width,height);
    obj = SelectObject(hdcimage, btBitmap);
    framecount=1;
    image( const string & filename)
    strfilename=filename;
    Gdiplus::GdiplusStartup(&m_gdiplusToken, &gdiplusStartupInput, NULL);
    if(toupper(filename[filename.size()-3])=='C' && toupper(filename[filename.size()-2])=='U' && toupper(filename[filename.size()-1])=='R')
    //create the transparent icon handle
    HCURSOR hicon = (HCURSOR)LoadImage(NULL, filename.c_str(), IMAGE_CURSOR, imageweight, imageheight, LR_LOADFROMFILE|LR_SHARED|LR_DEFAULTSIZE|LR_LOADTRANSPARENT);
    ICONINFO ii;
    BOOL fResult = GetIconInfo(hicon, &ii);
    if (fResult)
    BITMAP bm;
    fResult = GetObject(ii.hbmMask, sizeof(bm), &bm) == sizeof(bm);
    if (fResult)
    imageweight= bm.bmWidth;
    imageheight= ii.hbmColor ? bm.bmHeight : bm.bmHeight / 2;
    if (ii.hbmMask) DeleteObject(ii.hbmMask);
    if (ii.hbmColor) DeleteObject(ii.hbmColor);
    btBitmap=CreateBitmap(imageweight,imageheight,1,32,NULL);//create the bitmap with icon size
    obj = SelectObject(hdcimage, btBitmap);//add the bitmap to memory DC
    DrawIconEx(hdcimage,0,0,hicon,imageweight,imageheight,0,0,DI_NORMAL);//draw the icon to DC with right size
    //seems the DrawIcon(), always, draw it with 32X32 size
    framecount=1;
    DestroyCursor(hicon);
    else
    Gdiplus::Image img2(towstring(filename).c_str());
    btBitmap=CreateBitmap(img2.GetWidth(),img2.GetHeight(),1,32,NULL);
    obj = SelectObject(hdcimage, btBitmap);
    Gdiplus::Graphics graphics(hdcimage);
    graphics.DrawImage(&img2, 0, 0, img2.GetWidth(), img2.GetHeight());
    imageweight=img2.GetWidth();
    imageheight=img2.GetHeight();
    UINT count = 0;
    count = img2.GetFrameDimensionsCount();
    GUID* pDimensionIDs = (GUID*)malloc(sizeof(GUID)*count);
    img2.GetFrameDimensionsList(pDimensionIDs, count);
    framecount=img2.GetFrameCount(&pDimensionIDs[0]);
    if (framecount>1)
    framedelay =img2.GetPropertyItemSize(PropertyTagFrameDelay);
    else
    framedelay =0;
    img=new Image(towstring(filename).c_str());
    free(pDimensionIDs);
    image (const image &cSource)
    Gdiplus::GdiplusStartup(&m_gdiplusToken, &gdiplusStartupInput, NULL);
    framecount=cSource.framecount;
    framedelay=cSource.framedelay;
    clrBackColor=cSource.clrBackColor;
    img=cSource.img->Clone();
    imageweight=cSource.imageweight;
    imageheight=cSource.imageheight;
    strfilename=cSource.strfilename;
    btBitmap=CreateBitmap(imageweight,imageweight,1,32,NULL);
    obj = SelectObject(hdcimage, btBitmap);
    BitBlt(hdcimage,0,0,imageweight,imageheight,cSource.hdcimage,0,0,SRCCOPY);
    image& operator= (const image &cSource)
    Gdiplus::GdiplusStartup(&m_gdiplusToken, &gdiplusStartupInput, NULL);
    framecount=cSource.framecount;
    framedelay=cSource.framedelay;
    clrBackColor=cSource.clrBackColor;
    img=cSource.img->Clone();
    imageweight=cSource.imageweight;
    imageheight=cSource.imageheight;
    strfilename=cSource.strfilename;
    btBitmap=CreateBitmap(imageweight,imageweight,1,32,NULL);
    obj = SelectObject(hdcimage, btBitmap);
    BitBlt(hdcimage,0,0,imageweight,imageheight,cSource.hdcimage,0,0,SRCCOPY);
    return *this;
    property <int> SelectFrame
    Get(int)
    return intSelectFrame;
    Set(int selectframe)
    intSelectFrame=selectframe;
    UINT count = 0;
    count = img->GetFrameDimensionsCount();
    GUID* pDimensionIDs = (GUID*)malloc(sizeof(GUID)*count);
    img->GetFrameDimensionsList(pDimensionIDs, count);
    img->SelectActiveFrame(&pDimensionIDs[0],intSelectFrame);
    Gdiplus::Graphics graphics(hdcimage);
    graphics.Clear(clrBackColor);
    graphics.DrawImage(img, 0, 0, img->GetWidth(), img->GetHeight());
    free(pDimensionIDs);
    property<int> FramesCount
    Get(int)
    return framecount;
    property<string> FileName
    Get(string)
    return strfilename;
    Set(string filename)
    delete img;
    DeleteObject(btBitmap);
    DeleteObject(obj);
    strfilename=filename;
    if(toupper(filename[filename.size()-3])=='C' && toupper(filename[filename.size()-2])=='U' && toupper(filename[filename.size()-1])=='R')
    //create the transparent icon handle
    HCURSOR hicon = (HCURSOR)LoadImage(NULL, filename.c_str(), IMAGE_CURSOR, imageweight, imageheight, LR_LOADFROMFILE|LR_SHARED|LR_DEFAULTSIZE|LR_LOADTRANSPARENT);
    ICONINFO ii;
    BOOL fResult = GetIconInfo(hicon, &ii);
    if (fResult)
    BITMAP bm;
    fResult = GetObject(ii.hbmMask, sizeof(bm), &bm) == sizeof(bm);
    if (fResult)
    imageweight= bm.bmWidth;
    imageheight= ii.hbmColor ? bm.bmHeight : bm.bmHeight / 2;
    if (ii.hbmMask) DeleteObject(ii.hbmMask);
    if (ii.hbmColor) DeleteObject(ii.hbmColor);
    btBitmap=CreateBitmap(imageweight,imageheight,1,32,NULL);//create the bitmap with icon size
    obj = SelectObject(hdcimage, btBitmap);//add the bitmap to memory DC
    DrawIconEx(hdcimage,0,0,hicon,imageweight,imageheight,0,0,DI_NORMAL);//draw the icon to DC with right size
    //seems the DrawIcon(), always, draw it with 32X32 size
    framecount=1;
    DestroyCursor(hicon);
    else
    Gdiplus::Image img2(towstring(filename).c_str());
    btBitmap=CreateBitmap(img2.GetWidth(),img2.GetHeight(),1,32,NULL);
    obj = SelectObject(hdcimage, btBitmap);
    Gdiplus::Graphics graphics(hdcimage);
    graphics.DrawImage(&img2, 0,0,img2.GetWidth(),img2.GetHeight());
    imageweight=img2.GetWidth();
    imageheight=img2.GetHeight();
    UINT count = 0;
    count = img2.GetFrameDimensionsCount();
    GUID* pDimensionIDs = (GUID*)malloc(sizeof(GUID)*count);
    img2.GetFrameDimensionsList(pDimensionIDs, count);
    framecount=img2.GetFrameCount(&pDimensionIDs[0]);
    framedelay =img2.GetPropertyItemSize(PropertyTagFrameDelay);
    img=new Image(towstring(filename).c_str());
    free(pDimensionIDs);
    property<Gdiplus::Color> Backcolor
    Get(Gdiplus::Color)
    return clrBackColor;
    Set(Gdiplus::Color bkcolor)
    clrBackColor = bkcolor;
    SetDCBrushColor(hdcimage,clrBackColor.ToCOLORREF());
    void draw(HDC control)
    //if (clrBackColor.GetValue() == Gdiplus::Color::Transparent)
    if (clrBackColor.GetValue()== Gdiplus::Color::Transparent)
    TransparentBlt(control, 0, 0,width(),height(),hdcimage, 0, 0,width(), height(), GetPixel(hdcimage,width()-1,height()-1));
    else
    BitBlt(control,0,0,width(),height(),hdcimage,0,0,SRCCOPY);
    //InvalidateRect(WindowFromDC(control),NULL,false);
    operator HBITMAP()
    return btBitmap;
    int height()
    return imageheight;
    int width()
    return imageweight;
    operator HDC()
    return hdcimage;
    ~image()
    //delete graphic; //isn't needed, because i, now, don't use it //and i don't use the new keyword
    DeleteObject(obj);
    delete img;
    Gdiplus::GdiplusShutdown(m_gdiplusToken);
    //DeleteObject(btBitmap);//don't show me the image. so isn't need too
    DeleteDC(hdcimage);
    thanks for all

  • When I create an album and then try to watch it in slideshow, I get only a black screen with a white title.  No photos come up.  Also when I click on an individual photo in the album, I get a white exclamation point on a black background but no big photo.

    When I create an album of photos and then open the album and try to watch it by selecting "slideshow" I get only a black screen.  The white title comes up briefly but then no photos, only a black screen.  Also when I go back to the album and click on a thumbnail, up comes a big white exclamation point on a black background instead of the enlarged photo.  Any idea what's going on?

    The ! turns up when iPhoto loses the connection between the thumbnail in the iPhoto Window and the file it represents.
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • I can no longer look at videos at a web site. I only get a black box.

    I can no longer get videos at a web site that uses flash player. I only get a black box.

    http://forums.adobe.com/thread/1195540

  • Why do I get only a black screen when I try to download PDF files?

    Why do I get only a black screen when I try to download PDF files?  I have the latest version of Adobe Reader.
    This problem just started a few weeks ago.
    I am still using Snow Leopard.
    I have tried using Firefox instead of Safari, but still get the black screen.

    The ! turns up when iPhoto loses the connection between the thumbnail in the iPhoto Window and the file it represents.
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • I have a officejet pro 8500 getting a black vertical line only when i put doc. in feeder?

    I have a officejet pro 8500 getting a black vertical line only when i put doc. in feeder?
    thanks Karl

    Clean the small glass strip under the ADF, also clean the withe scanner backing and white strip under the ADF.
    I was an HP employee.
    Kudos are appreciated if I have helped you.

  • When I try to download software from the internet I only get a black screen and the software never downloads.

    When I try to download software from the internet I only get a black screen and nothing downloads.  I attempted mozilla firefox and software from a photobook site just to name a couple.

    How much free space on the startup disk?
    Right or control click the MacintoshHD icon. Click Get Info. In the Get Info window you will see Capacity and Available. Make sure you have a minimum of 15% free disk space.

  • How do I get the HP OfficeJet Pro 8600 Plus to print only black or grayscale? What is the procedure?

    How do I set my HP OfficeJet Pro 8600 Plus to print only black or grayscale?  What is the procedure?

    Hi, Looks like you have to do this from the aplications. Here is the procedure from its manual, page #36: 1. Load paper in the tray. For more information, see Load media.
    2. On the File menu in your software application, click Print.
    3. Make sure the printer you want to use is selected.
    4. To change settings, click the button that opens the Properties dialog box. Depending on your software application, this button might be called Properties, Options, Printer Setup, Printer, or Preferences.
    5. Change the paper orientation on the Layout tab, and paper source, media type, paper size, and quality settings on the Paper/Quality tab. To print in black and
    white, click the Advanced button, and then change the Print in Grayscale option.
    6. Click OK.
    7. Click Print or OK to begin printing Regards.

  • Can I only get a black MacBook if I get the most expensive type?

    I was wanted to buy a new MacBook with 1 GB Memory and 80 GB Hard Drive, but I also wanted a black one. I just think they're nicer looking. Is that possible? Or do I have to buy the $1,500 one to get a black one?

    Welcome to the discussions!
    You can always buy the white and have it sent to ColorwarePC HERE and have it done almost any color you want.
    Apple's premium for black is a bargain by comparison. It used to be that a black MB cost $150 over a similarly configured white one, but now the premium is just $50.
    I bought a refub back in late June and it was $200 off. It has been perfect for me in every way since then.

  • HT4528 My phone will not come on...whether plugged in or not I get a black screen with apple logo only

    My phone will not come on..whether plugged in or not..I get a black screen with the apple logo.  It has not been damaged

    How long has the Apple logo been displayed for?
    I deleted an app that was using an enormous amount of space (15GB) and when I reset the device it took 45 mins for the Apple logo to go away and for my device to start.    I guess it took a look time to reclaim all of that memory back.

  • I am trying to run my registered CS6 Design Standard programs for the first time after install. InDesign runs OK, but Illustrator and Photoshop will only run in trail mode. How do I activate those two?

    I can't get my registered versions of CS6 Photoshop and Illustrator to run in full mode. I installed CS6 Design Standard online end of June (an upgrade from CS5.5), on my old MacBook Pro. I didn't run the programs then as I was waiting on arrival of new MacBook Pro. I migrated the programs from my old MacBook to the new, and today tried to run those programs for the first time. InDesign work OK (after an initial hiccup) but Illustrator and Photoshop will only run in trial mode, and won't let me save files. My CS6 Design Standard shows with it's registration in my Adobe Account. All seems in order, but Illustrator and Photoshop won't run in registered mode. Can you please help?

    Demons1 in the future please only migrate your documents and settings.
    Please use the uninstallers to remove your current installation.  They are located in the Applications/Utilities/Adobe Installers folder.  Once the uninstall is complete you will also want to run the CC Cleaner Tool.  You can find more details at Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6 - http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html.
    If you need to download a fresh copy of the installation files for Creative Suite 6 you can do so at Download CS6 products.

  • Why do I get a black screen in front row when watching some iTunes store purchases? esp Cars 2

    We bought Cars 2 a few months ago from the iTunes store. The movie won't work in Front Row, we only get a black screen (except for the blue Front Row controls at the bottom) although the audio comes through just fine. The annoying part is all of our other iTunes store movies work fine in Front Row. Just Cars 2 is broken. I don't think that it is an authorisation problem because it plays okay in iTunes, Quicktime, even via airplay to an appleTV or via Home Sharing to our iPad.
    The movie is only standard definition so I am guessing that it is not an HDCP issue; I understand that there is only HDCP on HD movies. We are playing it on a Mac Mini (core 2 duo) on a Sony Bravia via a VGA connector.
    After a little bit of complaining, apple let us download the movie again in case the file was corrupted, but unfortunately the same problem with the new version.
    The computer did have Perian installed at one point, but uninstalling and restarting made no difference.
    I have found lots of reports of movies with missing picture in Front Row but these are all ripped videos, never with an iTunes Store purchase.
    Apple won't refund our money as the purchase was more than 60 days ago by the time I gave up troubleshooting and reported the problem.

    Yeah! Problem solved: It's a QT issue.
    Cause: Mac Update Software downloaded a faulty QT.
    Solution: Download QT from Apple's QT site.
    Great to have the Video back

Maybe you are looking for