Problem with XCode

I am trying to make an app that makes music once pressed. There are several problems.
This is the code:
#import "ViewController.h"
@implementation ViewController     <--- Incomplete implementation
-(IBAction)idcays; {
    CFBundleRef mainBundle = CFBundleGetMainBundle();
    CFBundleRef soundFileURLRef;
    soundFileURLRef = CFBundleCopyResourceURL(mainBundle, (CFStringRef) @"idcays", CFSTR ("MP4"), NULL);     <--- Incompatible pointer types assigning to 'CFBundleRef' (aka 'struct_CFBundle *) from 'CFURLRef' (aka 'const struct_CFURL*)
    UInt32 soundID;
    AudioServicesCreateSystemSoundID(soundFileURLRef, &soundID);  <-- Incompatible pointer types passing 'CFBundleRef' (aka 'struct_CFBundle *) to a parameter of type 'CFURLRef' (aka 'const struct_CFURL*)
    AudioServicesPlaySystemSound(soundID);
Any suggestions?

"Incomplete implementation" means your class has either declared methods in the interface that do not exist in the implementation, or the interface supports a protocol containing required methods that do not exist in the implementation.  To find which method is the offender, look at the Issue Navigator and expand the warning.
The "incompatible pointer types passing CFBundleRef" is because CFBundleCopyResourceURL returns a CFURLRef, but you are assigning it to a CFBundleRef.  Should be:
    CFURLRef soundFileURLRef;

Similar Messages

  • HT201487 i have a problem with xcode programming app when i lunch to it it asking me to enter my password and when i enter it the program show that it is wrong but am 100% sure it's wright so please help me with this issue thanks

    i have a problem with xcode programming app when i lunch to it it asking me to enter my password and when i enter it the program show that it is wrong but am 100% sure it's wright so please help me with this issue thanks

    That's not very intuitive
    Check your mail server setup (mail>preferences>accounts>) choose your MobileMe account and select Outgoing Mail Server (SMTP) dropdown box, select Edit SMTP server list, verify that each instance of the me server has a password, if there are more than one and you only have one account then delete the one without a password.

  • Serious problem with Xcode 4.3.2 - no GNU make

    There is a SERIOUS problem with Xcode 4.3.2.  I just installed it and when I click the downloaded package I jsut get a Xcode.app.
    No longer does it allow me to install packages.
    Instead I get nothing but an Xcode.app to drag and drop into /Applications.
    More terrible is the fact that it no longer ships with GNU make.  Which means nothing inside of the MacPort project will work anymore.
    For example:
    bash-3.2$ sudo port install make
    bash-3.2$ sudo port install gimp
    Warning: The Command Line Tools for Xcode don't appear to be installed; most ports will likely fail to build.
    Warning: See http://guide.macports.org/chunked/installing.xcode.html for more information.
    --->  Computing dependencies for gimpError: Unable to execute port: can't read "build.cmd": Failed to locate 'make' in path: '/opt/local/bin:/opt/local/sbin:/bin:/sbin:/usr/bin:/usr/sbin' or at its MacPorts configuration time location, did you move it?
    To report a bug, see <http://guide.macports.org/#project.tickets>

    The command line tools need to be installed separately.
    Go to Xcode->Preferences->Downloads
    Which is what the error message you got and the link it pointed to is teling you.

  • XCode connection problem with XCode

    Hi!
    I need some advice with my developer environment. When i got my dev-licence everything worked fine. But after som days my iPhone started to beap and XCode failed to connect to the iPhone. Some times it had a short connection for i minute or so.
    I have tested different usb cables. I have tested to restart my Mac, iPhone in different combinations.
    After upgrading iOS SDK my problems was gone for some day.
    I don't need to have XCode running to make the iPhone beap.
    My phone have some sequirity patches from the Company i work for.
    My setup: XCode 4.5 Mac Mini OSX 10.7.4
    Thankfull for all help!
    /Mikael

    My phone have some sequirity patches from the Company i work for.
    Good trick!  Care to elaborate on how your company applies security patches to an iPhone?

  • Problem with Xcode installing

    hi,im trying to install Xcode 6.1 in AppStore for my macbook pro with Yosemite OS.in Appstore there is an install button,but when i presses it just a progress circle showed and nothing happend.i have Xcode in another mac book with maveriks OS.why i can't install it?

    Same problem for me.  After installing latest XCode, I would get an error from iTunes whenever I attached my iPhone:
    "iTunes was unable to load dataclass information from Sync Services. Reconnect or try again later"
    (Apple must believe it will fix itself)
    Backup of the device would subsequently fail.  
    I dragged the itunes app to the trash, downloaded the latest version, and installed it.  iTunes works correctly now.

  • Having some problems with Xcode and C++

    hi guys , I am learning C++ and I am having the following problem when trying to use .h files.
    Example. I make a new document using Xcode2.3.
    in the source folder I got my main.cpp and i 2nd click it, choose add/file/BSD/header file.
    main.cpp
    #include "funtest.h"
    int main ()
    print_num ( 9 );
    return 0;
    funtest.h
    void print_num (int iNum);
    When I compile with Cmd+R , I get:
    [Session started at 2006-06-26 01:59:31 -0400.]
    ZeroLink: unknown symbol '_Z9printnumi'
    complex2 has exited due to signal 6 (SIGABRT).

    Thanks a lot! I don't recommend you to code too early in the morning :P
    The program now looks like this:
    funciones.cpp
    #include "funciones.h"
    #include <iostream>
    int main ()
    print_num ( 9 );
    return 0;
    funciones.h
    /*funciones utilizadas en el programa*/
    #include <iostream.h>
    void print_num (int iNum)
    std::cout << iNum << endl;
    now it builds and prints a fine "9" as output.
    The only thing that is killing me , is in funciones.h, if I don't use #include <iostream.h> the app doesn't run. And if I include it , it runs but Xcode gives me a warning of old headers.
    thanks again.

  • Hello...i have a problem with xcode...i am  a beginner user on mac and i am learning to program in C but lastime when i tried to compil a file with xcode it doens't function at well and i dont know while...her is my code source if somebody can help me

    #include <stdio.h>
    #include <stdlib.h>
    #define N 20
    int main (int argc, const char * argv[])
    {  FILE *fp;
        char nome_file[N];
        int i,j;
        int dim;
        float mat_in[N][N];
        float mat_out[N][N];
            // apertura del file
        printf("nome_file:");
        scanf("%s",nome_file);
        fp=fopen(nome_file, "r");
        if (fp==NULL) {
            printf("errore nell'apertura del file %s\n",nome_file, );
            return -1;
        fscanf(fp, "%d",&dim);
        printf("%d\n",dim);
        for (i=0; i<dim; i++) {
            for (j=0; j<dim; j++) {
                fscanf(fp, "%f",&mat_in[i][j]);
                printf("%.2f",mat_in[i][j]);
        int ordine_grandezza=1;
        for (i=0; i<dim; i++) {
            for (j=0; j<dim; j++) {

    here is my complete code source:
    #include <stdio.h>
    #include <stdlib.h>
    #include <errno.h>
    #define N 20
    int main (int argc, const char * argv[])
    {  FILE *fp;
        char nome_file[N];
        int i,j;
        int dim;
        float mat_in[N][N];
        float mat_out[N][N];
            // apertura del file
        printf("nome_file:");
        scanf("%s",nome_file);
        fp=fopen(nome_file, "r");
        if (fp==NULL) {
            printf("errore nell'apertura del file %s\nnumero errore: %d",nome_file, errno);
            return -1;
        fscanf(fp, "%d",&dim);
        printf("%d\n",dim);
        for (i=0; i<dim; i++) {
            for (j=0; j<dim; j++) {
                fscanf(fp, "%f",&mat_in[i][j]);
                printf("%.2f",mat_in[i][j]);
        int ordine_grandezza=1;
        for (i=0; i<dim; i++) {
            for (j=0; j<dim; j++) {
                if (mat_in[i][j]<=0){
                    mat_out[i][j]=0;
                else {
                    while (mat_in[i][j]>ordine_grandezza) {
                        ordine_grandezza=ordine_grandezza*10;
                    mat_out[i][j]=ordine_grandezza;
        for (i=0; i<dim; i++) {
            for (j=0; j<dim; j++){
                printf("%8.2f",mat_out[i][j]);
            printf("\n");
        int simmetric=0;
        for (i=0; i<dim && simmetric!=1; i++) {
            for (j=i+1; j<dim && simmetric!=1; j++){
                if (mat_out[i][j]!=mat_out[j][i])
                    simmetric=1;
        if (simmetric==1)
            printf("matrice simmetrica\n");
        else
            printf("matrice non simmetrica\n");
        return 0;
    and when i compil it shows it:
    nome_file:martin.txt
    errore nell'apertura del file martin.txt
    excuz me if i dont speak english very well....but i think that the problem is that i don't know to compil a file on xcode...and if yo can send me a tutorial about it i will be grateful

  • Problem with Xcode 3.0 message

    Hi
    I am just beginning to learn C++ and Xcode. When I attempt to run the "hello world" project I keep getting the same error message:
    Command/Developer/usr/bin/g++4.0 failed with exit code 1
    What does this mean and how can I fix it?
    Thank you

    Try updating the driver and firmware on the USB 3.0 controller:
    http://www.station-drivers.com/page/renesas.htm
    Might help, might not.
    W520: i7-2720QM, Q2000M at 1080/688/1376, 21GB RAM, 500GB + 750GB HDD, FHD screen
    X61T: L7500, 3GB RAM, 500GB HDD, XGA screen, Ultrabase
    Y3P: 5Y70, 8GB RAM, 256GB SSD, QHD+ screen

  • I got problem with Xcode 5

    My source
    //  ViewController.m
    //  Calculator
    //  Created by APPLE on 4/6/14.
    //  Copyright (c) 2014 DinhXuanVu. All rights reserved.
    #import "ViewController.h"
    @interface ViewController ()
    @end
    @implementation ViewController
    -(IBAction)Number1:(id)sender{
        Select = Select *10;
        Select = Select +1;
        Screen.text= [ NSString stringWithFormat : @"%i", Select ];
    -(IBAction)Number2:(id)sender{
        Select = Select *10;
        Select = Select +2;
        Screen.text= [ NSString stringWithFormat : @"%i", Select ];
    -(IBAction)Number3:(id)sender{
        Select = Select *10;
        Select = Select +3;
        Screen.text= [ NSString stringWithFormat : @"%i", Select ];
    -(IBAction)Number4:(id)sender{
        Select = Select *10;
        Select = Select +4;
        Screen.text= [ NSString stringWithFormat : @"%i", Select ];
    -(IBAction)Number5:(id)sender{
        Select = Select *10;
        Select = Select +5;
        Screen.text= [ NSString stringWithFormat : @"%i", Select ];
    -(IBAction)Number6:(id)sender{
        Select = Select *10;
        Select = Select +6;
        Screen.text= [ NSString stringWithFormat : @"%i", Select ];
    -(IBAction)Number7:(id)sender{
        Select = Select *10;
        Select = Select +7;
        Screen.text= [ NSString stringWithFormat : @"%i", Select ];
    -(IBAction)Number8:(id)sender{
        Select = Select *10;
        Select = Select +8;
        Screen.text= [ NSString stringWithFormat : @"%i", Select ];
    -(IBAction)Number9:(id)sender{
        Select = Select *10;
        Select = Select +9;
        Screen.text= [ NSString stringWithFormat : @"%i", Select ];
    -(IBAction)Number0:(id)sender{
        Select = Select *10;
        Select = Select +0;
        Screen.text= [ NSString stringWithFormat : @"%i", Select ];
    -(IBAction)NumberCộng:(id)sender{
        if (RunningTotal == 0) {
            RunningTotal = Select;
        else {
            switch (Method) {
                case 1:
                    RunningTotal = RunningTotal * Select ;
                    break;
                case 2:
                    RunningTotal = RunningTotal - Select ;
                    break;
                case 3:
                    RunningTotal = RunningTotal + Select ;
                    break;
                case 4:
                    RunningTotal = RunningTotal / Select;
                    break;
                default:
                    break;
            Method = 1;
            Select = 0;
    -(IBAction)Numbertrừ:(id)sender
        if (RunningTotal = = 0) {
            RunningTotal = Select;
        else {
            switch (Method) {
                case 1:
                    RunningTotal = RunningTotal * Select ;
                    break;
                case 2:
                    RunningTotal = RunningTotal - Select ;
                    break;
                case 3:
                    RunningTotal = RunningTotal + Select ;
                    break;
                case 4:
                    RunningTotal = RunningTotal / Select;
                    break;
                default:
                    break;
            Method = 2;
            Select = 0;
    -(IBAction)Numbernhân:(id)sender{
        Method = 3
        if (RunningTotal == 0) {
            RunningTotal = Select;
        else {
            switch (Method) {
                case 1:
                    RunningTotal = RunningTotal * Select ;
                    break;
                case 2:
                    RunningTotal = RunningTotal - Select ;
                    break;
                case 3:
                    RunningTotal = RunningTotal + Select ;
                    break;
                case 4:
                    RunningTotal = RunningTotal / Select;
                    break;
                default:
                    break;
        Method = 3;
            Select = 0;
    -(IBAction)Numberbằng:(id)sender{
        if (RunningTotal == 0) {
            RunningTotal = Select;
        else {
            switch (Method) {
                case 1:
                    RunningTotal = RunningTotal * Select ;
                    break;
                case 2:
                    RunningTotal = RunningTotal - Select ;
                    break;
                case 3:
                    RunningTotal = RunningTotal + Select ;
                    break;
                case 4:
                    RunningTotal = RunningTotal / Select;
                    break;
                default:
                    break;
        Method = 0;
            Select = 0;
            Screen.text = [NSString stringwithFormat: @"%.2f", RunningTotal];
    -(IBAction)Numberchia:(id)sender{
        if (RunningTotal == 0) {
            RunningTotal = Select;
        else {
            switch (Method) {
                case 1:
                    RunningTotal = RunningTotal * Select ;
                    break;
                case 2:
                    RunningTotal = RunningTotal - Select ;
                    break;
                case 3:
                    RunningTotal = RunningTotal + Select ;
                    break;
                case 4:
                    RunningTotal = RunningTotal / Select;
                    break;
                default:
                    break;
        Select = 0;
        Method = 5;
    -(IBAction)Numberphẩy:(id)sender{
    -(IBAction)NumberXoá:(id)sender{
        Method = 0;
        RunningTotal = 0;
        Select = 0;
        Screen.text = [ NSString stringWithFormat: @"0" ];
    - (void)viewDidLoad
        [super viewDidLoad];
      // Do any additional setup after loading the view, typically from a nib.
    - (void)didReceiveMemoryWarning
        [super didReceiveMemoryWarning];
        // Dispose of any resources that can be recreated.
    @end
    I try to create Calculator application by Xcode and then I got Method definition for ... then Expected expression. Please help me and I'm beginner.

    I believe a question like this needs to be posted in the Developer forums.
    ~Lyssa

  • Adobe Illustrator CS5 SDK not working with Xcode on Mac OS X Lion 10.7.1

    I recently was interested in developing an illustrator plug-in. I downloaded all the required files listed on the adobe site, including the pdf files.
    I was following the "getting started guide" while working on Xcode 4.1 when I saw that it required a "Carbon Bundle", since there wasn't one. I did my research and found out that I could download the bundle, which would only work on Xcode 3.2. However, when any of the sample files which are Carbon-based are loaded, Xcode 3.2 crashes while Xcode 4.1 notifies me with "Base SDK Missing".
    I would just love to have the sample code running, and I'm pretty sure I can handle it from thereon.
    Thanks in advance!

    I can get it to build on Lion with Xcode 4.1. The steps I went through were to first set all the "Build Settings" > Base SDK to Mac OS X 10.6 like below:
    Then when I built I found it would get stuck on TwirlFilter think there is a problem with Xcode as after force quiting and restarting the computer it was able to compile successfully.
    If you get any LLVM errors like error: extra qualification ... to do with AIPlatformFileDlgOpts then you just have to go to the line with the error and delete AIPlatformFileDlgOpts:: though I think that only happens if you have not done a clean before you built and there are still projects with Base SDKs set as 10.5
    Let me know how you get on,
    Robert

  • Problems with installing Xcode through App Store

    Hey guys,
    So trying to install Xcode on my Late 12 Macbook Pro with the ML update for a project with work.
    Everytime I try to install through the app store, I get the Grey Screen of Death. Anyone else having this problem or what could it be? I've had no other problems with installing programs through the App Store.
    I am currently downloading through the developer portal, so hopefully that works.
    Hope someone can guide some light on this.
    Thanks guys!

    Hello,
    For you problem with the Mac App Store you can contact the support here :
    http://www.apple.com/support/mac/app-store/
    (choose Account and Billing; you can change the country at the bottom of the page if you prefer dutch and go back to the support page).
    For your problem with Mail and iCloud you can read this page :
    http://support.apple.com/kb/TS4002?viewlocale=nl_NL (Troubleshooting iCloud Mail).
    Hope this will help.

  • Iphone - xcode - problem with loading reference library

    hello,
    I try to develop on iphone, with xcode.
    because I don't find any documentation, I have tried to download the ihpoen reference libray, un der xcode.
    I choos the menu help, then xcode workspace guide.
    on the page that apear, I choose Apple Iphone OS 2.0, and in this section, I choose Iphone os library.
    then, it was asking me a login and password.
    I put my login and password from my computer.
    now, the loading is locked.
    I don't know what login and password I have to use
    I don't know how to unlock the login and password.
    where is the keychain ? how can I delete it ?
    thank you for any help.
    best regards,
    Olivier

    I solved my problem

  • Problem with shell commands and scripts from an Applescript Application

    Hi-
    I am fairly new to OSX software development. I am trying to build an application that creates a reverse SSH tunnel to my computer and starts OSXvnc. The idea is that my Mom or anyone else who needs help can connect to me without having to tinker with their firewalls.
    There are plenty of resources on how to do this, and I have found them. What I have a problem with is the following.
    I am building this application in Xcode as an Applescript application, because Applescript and shell scripting are the only forms of programming I know. I use an expect script to connect through SSH, and a "do shell script" for the raw OSXvnc-server application to allow screen sharing.
    The problem is that when I click on the button to launch OSXvnc-server or the button to launch SSH, the application freezes until the process it spawns is killed or finishes. For example, I can set SSH to timeout after 60 seconds of no connection, and then the Applescript application responds again. I even tried using the ssh -f command to fork the process, but that doesn't seem to help.
    I am also using "try" around each of the items.
    What am I doing wrong? How can I make the buttons in my app launch SSH and OSXvnc-server without hanging the application while it waits for them to finish?
    Thanks so much!

    See here for an explanation of the syntax.
    (20960)

  • Display and lock up problems with 3 week old MBP!!!

    Hi all,
    I hope that someone here can help with a scary problem that I have experienced with my (otherwise perfect!!) MBP!!
    Occasionally, so far always after a boot up or wake up (but never on the login screen!), the MBP will lock up completely and the display will become corrupted as in the images I have posted below (fingers crossed!)!
    As I said, it locks up the MBP so that the only action I can take is to force a reboot by pressing the On/Off button for the required amount of time.
    I took the MBP to an Apple shop after making an appointment with a Genius (wonderful, lovely Spanish girl, name of Eva!!!!). Sadly, as the symptoms could not be recreated in the shop there was not a lot Eva could do, she did recommend a re-install of OS X, and also suggested that I let them have the MBP for a day so that they could hook it up to something (for a full eight hours!!) or other and test it. Eva did say that she had not seen the problem before (I took my camera to the shop and showed her the pics of the screen), but that it did not look good!!
    So, I decided to take it back home and ask for help here!!!!
    Any advice would be welcome!!!
    Screenshot 1...
    Screenshot 2...
    Regards
    Blakey

    i would go back and show them these pics, also try doing stuff that is graphics intensive, my guess is that you have a bad video card, doing things that heat it up should get it to happen
    one thing that you can use stress the vid car is the opengl example programs included with XCode (its included with the programs on the CD that came with the computer), so i recommend opening a few of those, and then doing a few `yes>/dev/null` in the terminal, also make the window semi-transparent, and put it on top of quicktime playing some movies, that should help stress the video card and put extra heat on it
    if you can get that to consistently cause the problem then take it back to Apple

  • Problem with display driver

    Hello,
    Im using Photoshop CC and when it starts up it sometimes gives me this error message:
    'Problem with display driver and has temporary disabled enhancements which use graphics hardware.'
    What does this mean?
    Then it tells me to download the latstest software and gives me a link to an Adobe site that tells me nothing about a sollution.
    About my mac:
    MacBook Pro
    Intel Core i7
    2,2 GHz
    4 cores
    8 GB RAM
    AMD Radeon HD 6750M
    Thanks a bunch!

    Here you go:
    Adobe Photoshop Version: 14.2 (14.2 20131211.r.515 2013/12/11:23:00:00) x64
    Operating System: Mac OS 10.9.1
    System architecture: Intel CPU Family:6, Model:42, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 2200 MHz
    Built-in memory: 4096 MB
    Free memory: 2266 MB
    Memory available to Photoshop: 3136 MB
    Memory used by Photoshop: 80 %
    Image tile size: 1024K
    Image cache levels: 4
    Font Preview: Medium
    TextComposer: Latin
    The GPU Sniffer crashed on 10/01/2014 at 09:05:58
    Display: 1
    Main Display
    Display Bounds: top=0, left=0, bottom=900, right=1440
    OpenGL Drawing: Enabled.
    OpenGL Allow Old GPUs: Not Detected.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    AIFCoreInitialized=1
    AIFOGLInitialized=1
    OGLContextCreated=1
    NumGPUs=1
    gpu[0].OGLVersion="2.1"
    gpu[0].MemoryMB=1024
    gpu[0].RectTextureSize=16384
    gpu[0].Renderer="AMD Radeon HD 6750M OpenGL Engine"
    gpu[0].RendererID=16915206
    gpu[0].Vendor="ATI Technologies Inc."
    gpu[0].VendorID=4098
    gpu[0].HasNPOTSupport=1
    gpu[0].CompileProgramGLSL=1
    gpu[0].TestFrameBuffer=1
    gpu[0].OCLPresent=1
    gpu[0].OCLVersion="1.2 (Aug 24 2013 21:03:27)"
    gpu[0].CUDASupported=0
    gpu[0].OCLBandwidth=1.89051e+10
    gpu[0].glGetString[GL_SHADING_LANGUAGE_VERSION]="1.20"
    gpu[0].glGetProgramivARB[GL_FRAGMENT_PROGRAM_ARB][GL_MAX_PROGRAM_INSTRUCTIONS_ARB]=[4096]
    gpu[0].glGetIntegerv[GL_MAX_TEXTURE_UNITS]=[8]
    gpu[0].glGetIntegerv[GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS]=[16]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS]=[16]
    gpu[0].glGetIntegerv[GL_MAX_TEXTURE_IMAGE_UNITS]=[16]
    gpu[0].glGetIntegerv[GL_MAX_DRAW_BUFFERS]=[8]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_UNIFORM_COMPONENTS]=[3072]
    gpu[0].glGetIntegerv[GL_MAX_FRAGMENT_UNIFORM_COMPONENTS]=[3072]
    gpu[0].glGetIntegerv[GL_MAX_VARYING_FLOATS]=[128]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_ATTRIBS]=[16]
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_PROGRAM]=1
    gpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_PROGRAM]=1
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_SHADER]=1
    gpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_SHADER]=1
    gpu[0].extension[AIF::OGL::GL_EXT_FRAMEBUFFER_OBJECT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_RECTANGLE]=1
    gpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_FLOAT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_OCCLUSION_QUERY]=1
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_BUFFER_OBJECT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_SHADER_TEXTURE_LOD]=1
    License Type: Subscription
    Serial number:
    Application folder: /Applications/Adobe Photoshop CC/
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Macintosh HD, 697.8G, 107.2G free
    Required Plug-ins folder: /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Required/Plug-Ins/
    Primary Plug-ins folder: /Applications/Adobe Photoshop CC/Plug-Ins/
    Installed components:
       adbeape.framework   adbeape   3.4.0.29366   0.1160850
       AdbeScriptUIFlex.framework   AdbeScriptUIFlex   6.3.2.31983   79.546835
       adobe_caps.framework   adobe_caps   7.0.0.21   1.248010
       AdobeACE.framework   AdobeACE   2.20.02.31977   79.548223
       AdobeAGM.framework   AdobeAGM   4.30.29.31977   79.548223
       AdobeAXE8SharedExpat.framework   AdobeAXE8SharedExpat   3.7.101.18636   66.26830
       AdobeAXEDOMCore.framework   AdobeAXEDOMCore   3.7.101.18636   66.26830
       AdobeBIB.framework   AdobeBIB   1.2.03.31977   79.548223
       AdobeBIBUtils.framework   AdobeBIBUtils   1.1.01   79.548223
       AdobeCoolType.framework   AdobeCoolType   5.15.00.31977   79.548223
       AdobeCrashReporter.framework   AdobeCrashReporter   7.0.1  
       AdobeExtendScript.framework   AdobeExtendScript   4.5.5.31983   79.546835
       AdobeJP2K.framework   AdobeJP2K   1.2.2.31977   79.248139
       AdobeLinguistic.framework      19061  
       AdobeMPS.framework   AdobeMPS   5.8.1.31977   79.535029
       AdobeOwl.framework   AdobeOwl   5.0.24   79.547804
       AdobePDFL.framework   AdobePDFL   11.0.0.31977   79.508720
       AdobePDFSettings.framework   AdobePDFSettings   1.4  
       AdobePIP.framework   AdobePIP   7.0.0.1786  
       AdobeScCore.framework   AdobeScCore   4.5.5.31983   79.546835
       AdobeUpdater.framework   AdobeUpdater   6.0.0.1452   "52.338651"
       AdobeXMP.framework   AdobeXMPCore   79.154911   79.154911
       AdobeXMPFiles.framework   AdobeXMPFiles   79.154911   79.154911
       AdobeXMPScript.framework   AdobeXMPScript   79.154911   79.154911
       ahclient.framework   ahclient   1.8.0.31  
       aif_core.framework   AdobeAIF   5.0.00   79.534508
       aif_ocl.framework   AdobeAIF   5.0.00   79.534508
       aif_ogl.framework   AdobeAIF   5.0.00   79.534508
       AlignmentLib.framework   xcode   Copyright © 2013 Adobe Systems Incorporated  
       amtlib.framework   amtlib   7.0.0.249  
       boost_date_time.framework   boost_date_time   7.0.0.0  
       boost_signals.framework   boost_signals   7.0.0.0  
       boost_system.framework   boost_system   7.0.0.0  
       boost_threads.framework   boost_threads   7.0.0.0  
       Cg.framework   NVIDIA Cg     
       CIT.framework   CIT   2.1.6.30929   151865
       CITThreading.framework   CITThreading   2.1.6.30929   151865
       dvaaudiodevice.framework   dvaaudiodevice   7.0.0.0  
       dvacore.framework   dvacore   7.0.0.0  
       dvamarshal.framework   dvamarshal   7.0.0.0  
       dvamediatypes.framework   dvamediatypes   7.0.0.0  
       dvaplayer.framework   dvaplayer   7.0.0.0  
       dvatransport.framework   dvatransport   7.0.0.0  
       dvaunittesting.framework   dvaunittesting   7.0.0.0  
       dynamiclink.framework   dynamiclink   7.0.0.0  
       FileInfo.framework   FileInfo   79.154511   79.154511
       filter_graph.framework   AdobeAIF   5.0.00   79.534508
       ICUConverter.framework   ICUConverter   3.61   "gtlib_3.0" "." "16615"
       ICUData.framework   ICUData   3.61   "gtlib_3.0" "." "16615"
       LogSession.framework   LogSession   2.1.2.1785  
       mediacoreif.framework   mediacoreif   7.0.0.0  
       patchmatch.framework   patchmatch   1.2.00.31977   79.542390
       PlugPlugOwl.framework   PlugPlugOwl   4.2.0.36  
       UpdaterNotifications.framework   UpdaterNotifications   7.0.1.102   "7.0.1.102"
       WRServices.framework        
    Required plug-ins:
       3D Studio 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “U3D.plugin”
       Accented Edges 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Adaptive Wide Angle 14.2, Copyright © 2014 Adobe Systems Incorporated - from the file “Adaptive Wide Angle.plugin”
       Angled Strokes 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Average 14.2 x001  ©1993-2014 Adobe Systems Incorporated - from the file “Average.plugin”
       Bas Relief 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       BMP 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Camera Raw 8.3 (141), Copyright © 2013 Adobe Systems Incorporated - from the file “Camera Raw.plugin”
       Camera Raw Filter 8.3 (141), Copyright © 2013 Adobe Systems Incorporated - from the file “Camera Raw.plugin”
       Chalk & Charcoal 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Charcoal 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Chrome 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Cineon 14.2 x001  ©2002-2014 Adobe Systems Incorporated - from the file “Cineon.plugin”
       Clouds 14.2 x001  ©1993-2014 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Collada DAE 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “U3D.plugin”
       Color Halftone 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Colored Pencil 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       CompuServe GIF 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Conté Crayon 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Craquelure 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crop and Straighten Photos 14.2 x001  ©2003-2014 Adobe Systems Incorporated - from the file “CropPhotosAuto.plugin”
       Crop and Straighten Photos Filter 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Crosshatch 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crystallize 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Cutout 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Dark Strokes 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       De-Interlace 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dicom 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “dicom.plugin”
       Difference Clouds 14.2 x001  ©1993-2014 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Diffuse Glow 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Displace 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dry Brush 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Eazel Acquire 14.2 x001  ©1997-2014 Adobe Systems Incorporated - from the file “EazelAcquire.plugin”
       Embed Watermark NO VERSION - from the file “DigiSign.plugin”
       Entropy 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Extrude 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       FastCore Routines 14.2 x001  ©1990-2014 Adobe Systems Incorporated - from the file “FastCore.plugin”
       Fibers 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Film Grain 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Filter Gallery 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Flash 3D 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “U3D.plugin”
       Fresco 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glass 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glowing Edges 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Google Earth 4 KMZ 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “U3D.plugin”
       Grain 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Graphic Pen 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Halftone Pattern 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       HDRMergeUI 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “HDRMergeUI.plugin”
       IFF Format 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Ink Outlines 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       JPEG 2000 14.2 x001  ©2001-2014 Adobe Systems Incorporated - from the file “JPEG2000.plugin”
       Kurtosis 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Lens Blur 14.2, Copyright © 2002-2014 Adobe Systems Incorporated - from the file “Lens Blur.plugin”
       Lens Correction 14.2, Copyright © 2002-2014 Adobe Systems Incorporated - from the file “Lens Correct.plugin”
       Lens Flare 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Liquify 14.2, Copyright © 2001-2014 Adobe Systems Incorporated - from the file “Liquify.plugin”
       Matlab Operation 14.2 x001  ©1993-2014 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Maximum 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Mean 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Measurement Core 14.2 x001  ©1993-2014 Adobe Systems Incorporated - from the file “MeasurementCore.plugin”
       Median 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Mezzotint 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Minimum 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       MMXCore Routines 14.2 x001  ©1990-2014 Adobe Systems Incorporated - from the file “MMXCore.plugin”
       Mosaic Tiles 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Multiprocessor Support 14.2 x001  ©1990-2014 Adobe Systems Incorporated - from the file “MultiProcessor Support.plugin”
       Neon Glow 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Note Paper 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       NTSC Colors 14.2 x001  ©1993-2014 Adobe Systems Incorporated - from the file “NTSC Colors.plugin”
       Ocean Ripple 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Oil Paint 14.2, Copyright © 2014 Adobe Systems Incorporated - from the file “Oil Paint.plugin”
       OpenEXR 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Paint Daubs 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Palette Knife 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Patchwork 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Paths to Illustrator 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       PCX 14.2 x001  ©1989-2014 Adobe Systems Incorporated - from the file “PCX.plugin”
       Photocopy 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Photoshop 3D Engine 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “Photoshop3DEngine.plugin”
       Photoshop Touch CC (14.2.0.0) ©1993-2014 Adobe Systems Incorporated - from the file “PSDX.plugin”
       Picture Package Filter 14.2 x001  ©1993-2014 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Pinch 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pixar 14.2 x001  ©1989-2014 Adobe Systems Incorporated - from the file “Pixar.plugin”
       Plaster 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Plastic Wrap 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       PNG 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pointillize 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Polar Coordinates 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Portable Bit Map 14.2 x001  ©1989-2014 Adobe Systems Incorporated - from the file “PBM.plugin”
       Poster Edges 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Radial Blur 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Radiance 14.2 x001  ©2003-2014 Adobe Systems Incorporated - from the file “Radiance.plugin”
       Range 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Read Watermark NO VERSION - from the file “DigiRead.plugin”
       Reticulation 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Ripple 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Rough Pastels 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Save for Web 14.2, Copyright © 1999-2014 Adobe Systems Incorporated - from the file “Save for Web.plugin”
       ScriptingSupport 14.2, Copyright © 2014 Adobe Systems Incorporated - from the file “ScriptingSupport.plugin”
       Shake Reduction 14.2, Copyright © 2014 Adobe Systems Incorporated - from the file “Shake Reduction.plugin”
       Shear 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Skewness 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Smart Blur 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Smudge Stick 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Solarize 14.2 x001  ©1993-2014 Adobe Systems Incorporated - from the file “Solarize.plugin”
       Spatter 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Spherize 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Sponge 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Sprayed Strokes 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stained Glass 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stamp 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Standard Deviation 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       STL 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “U3D.plugin”
       Sumi-e 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Summation 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Targa 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Texturizer 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Tiles 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Torn Edges 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Twirl 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Underpainting 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Vanishing Point 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “VanishingPoint.plugin”
       Variance 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Water Paper 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Watercolor 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Wave 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wavefront|OBJ 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “U3D.plugin”
       Wind 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wireless Bitmap 14.2 x001  ©1989-2014 Adobe Systems Incorporated - from the file “WBMP.plugin”
       ZigZag 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
       Adobe Exchange
    Installed TWAIN devices: NONE

Maybe you are looking for

  • How do I make a publication interactive for web use?

    I have Design Premium CS5.5. I created a publication in In Design and would like to make it interactive (turn pages and search capability) and place it on my website. What software in my Design Premium package would I use to do this?

  • Sorting Spry Accordion panels?- Repost

    I posted this question on 5/20 but did not get any replies, so I am reposting in hopes that someone might have an answer. Can Spry accordion panels be dynamically sorted the same way that regular Spry tables can? I created a Spry Accordion with a boo

  • Why that my credited points were decresing

    Hi Team, why my credited points are reducing after the rewarded by the solution seeker. it is happening to me for the 3 to 4 questions. i have suggested the solutions or the method  to the following thread.. [setting up OM number ranges; [Rounding Ru

  • I cannot download any addons.

    I get the error msg 'services.addons.mozilla.org:443 uses an untrusted security certificate. The security certificate is untrusted because the issuer certificate is untrusted. (Error code: sec_error_untrusted_issuer) This could be a problem with the

  • HT1338 Why does my mac desktop screen have black smoke like areas at the top of the screen on both sides?

    I have had my IMAC now a little over a year and now all of a sudden there is black smoke like marks on the top of both sides of the screen. Like exactly where the fans are. Is this telling me the fans have caused the screen to do this? I see I am not