Any ideas about interface problems on 2014.1.1?

On a fresh install of 2014.1.1 on a new macbook pro I am having interface problems. The Edge program locks up after a few minutes or the cursor won't show what's being selected, items disappear, sometimes get the "Save your work, error occurred" message and other odd interface behavior. Are there any known issues or likely culprits that might cause this sort of thing?

Thanks for jumping in. Yes, I've restored prefs and even uninstalled all (including prefs) and reinstalled. If it helps at all, I run several cloud apps (googledrive, dropbox, icloud, box, transporter, etc.). Other installed items include a Wacom tablet driver, latest Java, Flash player, Logitech mouse driver. Other than those the mac is brand new with no unusual system mods yet.
Appreciate any ideas.

Similar Messages

  • Error msg while downloading or visiting iTune store: "network connection was lost". Any idea about the problem?

    I am getting for the last days a constant error msg while downloading or visiting iTune store: "network connection was lost" (sometimes also ways it was "reset" instead). But, the network is working (I can make othe rdownloads and visit to other internet sites). Any idea about the problem?

    Mac server or Windows server? Have you checked her permissions/access vs another user not having the issue?

  • Hi. my iphone 4 suddenly is completely off though is is charged. i made everything possible to switch it on in vain. I even had someone call my number. It was ringing properly but no response at all with my phone. if you have any idea about the problem,he

    Hi. My Iphone 4 suddenly is completely off though it is charged. I even made someone else call my number in vain. I've been trying to switch it on, but in vain. First time this  problem happened. I have no idea what happened to the phone. it rings correcly in the other line. I just plugged in again with the charger but I dont see any signal. please help if somebody has an idea as I have no clue..Thanks.

    Miksu,
    Great ideas, thank you. I have two USB cables, both of which I have tried on my computer and my friends. Unless I got two bad cables in a row, I somewhat doubt it is the cause of my problem but it is still possible.
    I haven't yet tried any other form of connecting to my PC though I plan to borrow a neighbors Bluetooth USB Dongle tonight if I can and see if that works. I don't think any of my friends have a Nokia that uses the same cable, but I could check that too I guess.
    Any other suggestions will still be appreciated as I really doubt that these will solve the problem. On the other hand, you MAY BE RIGHT about my USB port on my phone. It is possible that it could be damaged, though I have used the same port with a headset and that worked. It might be that it was using a different pin configuration though. I also plan to try resetting to factory settings, and flashing/updating the firmware if I can find an authorized service agent of Nokia in my area. My cell provider may be able to help me in that regard, but it would be a couple weeks because they have to wait for a special data cable.
    I appreciate all the advice. Any other ideas would still be welcome because I think there have been a few others who have had trouble with my particular model of phone. A funny thing is that my phone model doesn't seem to be listed as compatible with PC Suite, but Nokia told me it was. Hopefully it's just a typo.

  • Any ideas about this problem's automization...

    Hi all
    Please suggest any sql query for below problem:
    I want to compare two schema tables(same in all schemas but altered late in either case) to display the differences in schemas. for this we can use TOAD SOFTWARE but it is very easy to compare the schema using this software but difficult to display the details (differences) according to my requirement. so can you anybody suggest any query to extract the following model:
    for example:
    Schema1 = emp table
    schema2 = emp table
    desc emp in schema1:
    empno number(10) notnull
    ename varchar2(20)
    sal number(30)
    desc emp in schema2:
    empno number(10) notnull
    empname varchar2(19) notnull
    sal number(30)
    out put requirement:
    Schema |TableName| Fields | Datatype | Null/Notnull | Constraint Schema2|TableName| Fields | Datatype | Null/Notnull
    EMP EMPNO NOTNULL EMP EMPNO NOT NULL
    SAL SAL
    ENAME VARCHAR2(20) EMPNAME VARCHAR2(19) "ADDITIONAL
                                                           (name change)      NOT NULL
                                                                     CONSTRAINT"
    let me explain above example, in the given two same tables in different schema, in the output
    those fields which are matched in terms of all i.e field name,datatype,constraint,null/notnull
    should be displayed first.
    Then those field which have differences should be displayed by giving appropriate comments
    like "colmn name changed if there is difference between col names in both schemas"
    In some cases, we cannot find the table in one schema, it should print "table not found on the schema2 side in the above output
    Very important note is that Schema1 should reflect same as
    schema2 tables.
    One more thing is in the above output : for ename field only datatype displayed, this is because for those
    fields which have change in schema2, for that colomns only we have to display the datatype.
    Thanks in advance
    prasanth

    Some sample code to get you started ...
    SQL> desc core.emp
    Name                                      Null?    Type
    EMPNO                                     NOT NULL NUMBER(10)
    ENAME                                              VARCHAR2(20)
    SAL                                                NUMBER(30)
    DT                                        NOT NULL DATE
     
    SQL> desc flip.emp
    Name                                      Null?    Type
    EMPNO                                     NOT NULL NUMBER(10)
    EMPNAME                                   NOT NULL VARCHAR2(19)
    SAL                                                NUMBER(30)
    DT                                                 DATE
     
    SQL> set lines 120
    SQL> col owner format a10
    SQL> col table_name format a10
    SQL> col column_name format a10
    SQL> col data_type format a10
    SQL>
    SQL> with t1 as
      2       ( SELECT 1               src1
      3               ,to_number(null) src2
      4               ,owner
      5               ,table_name
      6               ,column_name
      7               ,data_type
      8               ,data_length
      9               ,data_scale
    10               ,nullable
    11         FROM  dba_tab_columns
    12         WHERE owner      = 'CORE'
    13         AND   table_name = 'EMP'
    14       )
    15      ,t2 as
    16       ( SELECT to_number(null) src1
    17               ,1               src2
    18               ,owner
    19               ,table_name
    20               ,column_name
    21               ,data_type
    22               ,data_length
    23               ,data_scale
    24               ,nullable
    25         FROM  dba_tab_columns
    26         WHERE owner      = 'FLIP'
    27         AND   table_name = 'EMP'
    28       )
    29      ,src as
    30       ( select table_name
    31               ,column_name
    32               ,data_type
    33               ,data_length
    34               ,data_scale
    35               ,nullable
    36               ,count(src1) cnt1
    37               ,count(src2) cnt2
    38         from ( select * from t1
    39                union all
    40                select * from t2
    41              )
    42         group by table_name
    43               ,column_name
    44               ,data_type
    45               ,data_length
    46               ,data_scale
    47               ,nullable
    48       )
    49      ,similar_col as
    50       ( select table_name
    51               ,column_name
    52               ,data_type
    53               ,data_length
    54               ,data_scale
    55               ,nullable
    56         from   src
    57         where  cnt1 = cnt2
    58       )
    59      ,different_col as
    60       ( select table_name
    61               ,column_name
    62               ,data_type
    63               ,data_length
    64               ,data_scale
    65               ,nullable
    66         from   src
    67         where  cnt1 != cnt2
    68       )
    69      ,same as
    70       ( select 'Same'   text
    71               ,cast(null as varchar2(30)) owner
    72               ,s.*
    73        from    similar_col   s
    74       )
    75      ,diff1 as
    76       ( select 'Diff' text
    77               ,t1.owner
    78               ,d.*
    79         from   different_col d
    80               ,t1
    81         where  t1.table_name          = d.table_name
    82         and    t1.column_name         = d.column_name
    83         and    t1.data_type           = d.data_type
    84         and    nvl(t1.data_length,-1) = nvl(d.data_length,-1)
    85         and    nvl(t1.data_scale ,-1) = nvl(d.data_scale ,-1)
    86         and    t1.nullable            = d.nullable
    87       )
    88      ,diff2 as
    89       ( select 'Diff' text
    90               ,t2.owner
    91               ,d.*
    92         from   different_col d
    93               ,t2
    94         where  t2.table_name          = d.table_name
    95         and    t2.column_name         = d.column_name
    96         and    t2.data_type           = d.data_type
    97         and    nvl(t2.data_length,-1) = nvl(d.data_length,-1)
    98         and    nvl(t2.data_scale ,-1) = nvl(d.data_scale ,-1)
    99         and    t2.nullable            = d.nullable
    100       )
    101  select * from same
    102  union all
    103  select * from diff1
    104  union all
    105  select * from diff2
    106  order by 1 desc,4
    107  ;
     
    TEXT OWNER      TABLE_NAME COLUMN_NAM DATA_TYPE  DATA_LENGTH DATA_SCALE N
    Same            EMP        EMPNO      NUMBER              22          0 N
    Same            EMP        SAL        NUMBER              22          0 Y
    Diff CORE       EMP        DT         DATE                 7            N
    Diff FLIP       EMP        DT         DATE                 7            Y
    Diff FLIP       EMP        EMPNAME    VARCHAR2            19            N
    Diff CORE       EMP        ENAME      VARCHAR2            20            Y
     
    6 rows selected.To get the desired side by side output you would have to slightly modify the above and do a full outer join ... unfortunately, in 9.2.0.1.0, I got ORA-03113 trying to use the ANSI full outer join syntax ... to fake it with the traditional syntax ...
    SQL> set lines 200 pages 500
    SQL> with t1 as
      2       ( SELECT 1               src1
      3               ,to_number(null) src2
      4               ,owner
      5               ,table_name
      6               ,column_name
      7               ,data_type
      8               ,data_length
      9               ,data_scale
    10               ,nullable
    11         FROM  dba_tab_columns
    12         WHERE owner      = 'CORE'
    13         AND   table_name = 'EMP'
    14       )
    15      ,t2 as
    16       ( SELECT to_number(null) src1
    17               ,1               src2
    18               ,owner
    19               ,table_name
    20               ,column_name
    21               ,data_type
    22               ,data_length
    23               ,data_scale
    24               ,nullable
    25         FROM  dba_tab_columns
    26         WHERE owner      = 'FLIP'
    27         AND   table_name = 'EMP'
    28       )
    29      ,src as
    30       ( select table_name
    31               ,column_name
    32               ,data_type
    33               ,data_length
    34               ,data_scale
    35               ,nullable
    36               ,count(src1) cnt1
    37               ,count(src2) cnt2
    38         from ( select * from t1
    39                union all
    40                select * from t2
    41              )
    42         group by table_name
    43               ,column_name
    44               ,data_type
    45               ,data_length
    46               ,data_scale
    47               ,nullable
    48       )
    49      ,similar_col as
    50       ( select table_name
    51               ,column_name
    52               ,data_type
    53               ,data_length
    54               ,data_scale
    55               ,nullable
    56         from   src
    57         where  cnt1 = cnt2
    58       )
    59      ,different_col as
    60       ( select table_name
    61               ,column_name
    62               ,data_type
    63               ,data_length
    64               ,data_scale
    65               ,nullable
    66         from   src
    67         where  cnt1 != cnt2
    68       )
    69      ,sd1 as
    70       ( select 'same' text
    71               ,o.owner
    72               ,s.*
    73         from   similar_col   s
    74               ,(select owner from t1 where rownum <2) o
    75         union all
    76         select 'diff' text
    77               ,t1.owner
    78               ,d.*
    79         from   different_col d
    80               ,t1
    81         where  t1.table_name          = d.table_name
    82         and    t1.column_name         = d.column_name
    83         and    t1.data_type           = d.data_type
    84         and    nvl(t1.data_length,-1) = nvl(d.data_length,-1)
    85         and    nvl(t1.data_scale ,-1) = nvl(d.data_scale ,-1)
    86         and    t1.nullable            = d.nullable
    87       )
    88      ,sd2 as
    89       ( select 'same' text
    90               ,o.owner
    91               ,s.*
    92         from   similar_col   s
    93               ,(select owner from t2 where rownum <2) o
    94         union all
    95         select 'diff' text
    96               ,t2.owner
    97               ,d.*
    98         from   different_col d
    99               ,t2
    100         where  t2.table_name          = d.table_name
    101         and    t2.column_name         = d.column_name
    102         and    t2.data_type           = d.data_type
    103         and    nvl(t2.data_length,-1) = nvl(d.data_length,-1)
    104         and    nvl(t2.data_scale ,-1) = nvl(d.data_scale ,-1)
    105         and    t2.nullable            = d.nullable
    106       )
    107  select nvl(sd1.text,sd2.text) text
    108        ,sd1.owner
    109        ,sd1.table_name
    110        ,sd1.column_name
    111        ,sd1.data_type
    112        ,sd1.data_length
    113        ,sd1.data_scale
    114        ,sd1.nullable
    115        ,sd2.owner
    116        ,sd2.table_name
    117        ,sd2.column_name
    118        ,sd2.data_type
    119        ,sd2.data_length
    120        ,sd2.data_scale
    121        ,sd2.nullable
    122  from  sd1,sd2
    123  where sd1.table_name  = sd2.table_name  (+)
    124  and   sd1.column_name = sd2.column_name (+)
    125  union
    126  select nvl(sd1.text,sd2.text) text
    127        ,sd1.owner
    128        ,sd1.table_name
    129        ,sd1.column_name
    130        ,sd1.data_type
    131        ,sd1.data_length
    132        ,sd1.data_scale
    133        ,sd1.nullable
    134        ,sd2.owner
    135        ,sd2.table_name
    136        ,sd2.column_name
    137        ,sd2.data_type
    138        ,sd2.data_length
    139        ,sd2.data_scale
    140        ,sd2.nullable
    141  from  sd1,sd2
    142  where sd1.table_name  (+) = sd2.table_name
    143  and   sd1.column_name (+) = sd2.column_name
    144  order by 1 desc nulls last, 4
    145  ;
    TEXT OWNER      TABLE_NAME COLUMN_NAM DATA_TYPE  DATA_LENGTH DATA_SCALE N OWNER      TABLE_NAME COLUMN_NAM DATA_TYPE  DATA_LENGTH DATA_SCALE N
    same CORE       EMP        EMPNO      NUMBER              22          0 N FLIP       EMP        EMPNO      NUMBER              22          0 N
    same CORE       EMP        SAL        NUMBER              22          0 Y FLIP       EMP        SAL        NUMBER              22          0 Y
    diff CORE       EMP        DT         DATE                 7            N FLIP       EMP        DT         DATE                 7            Y
    diff CORE       EMP        ENAME      VARCHAR2            20            Y
    diff                                                                      FLIP       EMP        EMPNAME    VARCHAR2            19            NNow, having done all this ... was it worthwhile? Wouldn't comparing the output of dbms_metdata.get_ddl been as good (actionable) as this? Hmmm.
    Cheers.

  • I am using PP 2014 CC and it and or Encoder keep crashing.. using iMac computer with Yosemite OS anyone have any ideas about this issue?

    I am using PP 2014 CC and it and or Encoder keep crashing.. using iMac computer with Yosemite OS anyone have any ideas about this issue?

    Hi,
    Please give this a try: Premiere Pro CC, CC 2014, or 2014.1 freezing on startup or crashing while working (Mac OS X 10.9, and later)
    Thanks,
    Rameez

  • HT1386 Sry for disturbing, but i would to ask that how to overcome the problem of synchronising ? Itune showing me that the sync session is failed to start with my Ipad mini. Any ideas about what is going on ?

    Sry for disturbing, but i would to ask that how to overcome the problem of synchronising ? Itune showing me that the sync session is failed to start with my Ipad mini. Any ideas about what is going on ?

    What are you trying to sync?
    I see you are on ios 7.
    I also had upgraded my iPad Mini to ios 7 & then the 1st time I tried to open a Numbers file that was set up to sync w my MacBookPro, I got a warning that I would not be able to sync it any more w my Mac until I upgraded to Mavericks.
    So if you are trying to sync Numbers, Pages or Keynote files between your iPad mini in ios 7 and a Mac that hasn't been upgraded to Mavericks that could be the problem.
    I was very shocked to get that message since I bought Numbers on the iPad so that I could have a particular file on both devices & keep them synced. I had no clue when I upgraded to ios 7 on the iPad Mini that it would make it so the files in the iWorks apps woudln't sync any more.
    So I finally decided to go ahead & upgrade to Mavericks after carefully preparing & updating other software so that it would work w Mavericks. But I got error messages so haven't even been able to download Mavericks & now having 2nd thoughts about doing so.
    iPad mini ios 7
    MacBookPro Mid 2012 Mountain Lion
    iphone 4S ios 6

  • Qill my mac accept any IDE/ATAPI interface DVD writer?

    Hello,
    I'm currently seeking to upgrade my Quicksilver's 1x Superdrive to a newer, faster DVD writer. I was looking at a Lightscribe 20x DVD writer to transform the painfully slow burning sessions into quicker put-on-DVD archival making.
    +(RAW files take a lot of place on a HDD and slow burning sessions are now the weakest link in my workflow — a new DVD burner is a must until I change my whole computer somewhere in the following year...)+
    Now since most online retailers provide only minimum information about their products, you generally know which versions of Windows will support the drive, but when it comes to Mac OS X... usually, there's nothing to confirm that the drive will work on a Mac or not!
    Now the question is: will any IDE/ATAPI interface DVD burner fit in my G4 Quicksilver 2002 dual 1.0 GHz or do I need to look for a drive that specifically supports OS X? (Like an external USB / Firewire drive, for instance).
    Any feedback on that would be much appreciated.
    Thanks.

    There is a database that holds users' experiences installing third-party drives in various Macs. If you have a drive or two in mind, you can enter the specific drive and read the reports:
    http://forums.xlr8yourmac.com/drivedb/search.drivedb.lasso

  • Hey Dears, I was working with my Macbook pro 2011, then i have some flash light in the screen, so i shutdown the computer, when i try to open it again i had a black screen, so any one of you have any idea about what should i have to do ?

    Hey Dears, I was working with my Macbook pro 2011, then i have some flash light in the screen, so i shutdown the computer, when i try to open it again i had a black screen, so any one of you have any idea about what should i have to do ?

    Can you start Firefox in [[Safe mode]] ?
    You can also do a clean reinstall and download a fresh Firefox copy from http://www.mozilla.com/firefox/all.html and save the file to the desktop.
    Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.
    It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    You can initially skip the step to create a new profile, that may not necessary for this issue.
    See http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • Any Ideas about 1.2 fix? (Scrambled Screen, etc.)

    Anyone have any ideas about how to fix the problems with ipod software 1.2? Does anyone know how to fix the scrambled screen problem or the locking up of the screen, after two months of having to deal with the problem) (iPod software version 1.2 was released on September 12) (other than reverting back to 1.1.2)
    ...yeah, i didn't think so.

    yeah, many of us would like apple to fix this problem. I've stopped buying tv shows off the iTunes store, because I can't get the videos on my iPod without the update. Feh!

  • I was trying to update my IPAD 2 but it stucked, any idea what the problem can be

    I was trying to update my IPAD 2 but it stucked, any idea what the problem can be

    Stuck how ? What is showing on the iPad's screen, and/or in iTunes on your computer ?
    If the iPad won't start up then have you tried a reset ? Press and hold both the sleep and home buttons for about 10 to 15 seconds, after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • TS3988 trying to buy more storage on the cloud, response is 'there was a problem - try again later' its been doing this over the last two hours - any ideas what the 'problem' is please (assuming its not me) - thanks

    trying to buy more storage on the cloud, response is 'there was a problem - try again later' its been doing this over the last two hours - any ideas what the 'problem' is please (assuming its not me) - thanks

    Additional info on this:
    I strongly suspect this is time machine-related. Even though time machine has been turned off, this happens at intervals of exactly one hour.
    A single entry appears in the kernel log at the precise moment the (first) popup error box appears. This is:
    "AppleSRP started."
    Anyone have any clue how to go about diagnosing or fixing this? I don't even mind trying something brute force (short of wiping the HD and reinstalling lion, which I really DON'T want to do; I don't mind a non-destructive reinstall).

  • Whenever I try to log in to my Gmail account, the page redirects for a loooong time, then says that it won't load properly, and that the problem may be caused by not enabling cookies, but I have them enabled. Any idea what the problem might really be?

    Whenever I try to log in to my Gmail account, the page redirects for a loooong time, then says that it won't load properly, and that the problem may be caused by not enabling cookies, but I have them enabled. Any idea what the problem might really be?

    I did think about that and if I have to I will do that, however there are about 50 songs. I have closed and reopened iTunes several times and I am sure that I have the latest version. It fails right away but I can click on the cloud download icon and download the song that it failed on ... therefore it is not that song "or any one song" causing the issue. Any ideas?

  • TS1412 any ideas about how to fix an iPod Nano with a white screen??

    any ideas about how to fix an iPod Nano with a white screen??

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • Macbook pro keeps cutting out then wont turn on for a while then when it does same thing happens! Does any1 have any idea what the problem is?

    Macbook pro keeps cutting out then wont turn on for a while then when it does same thing happens! Happens with charger plugged in or not and green charge light stays on even when it cuts out and cant be turned on! Does any1 have any idea what the problem is?

    Try SMC and PRAM resets:
    http://support.apple.com/kb/HT3964
    http://support.apple.com/kb/ht1379
    Ciao.

  • I just got a notice to update my firefox to 4.0 and when I downloaded the new software it indicated: that I can't open the application "Firefox" because it is not supported on this architecture. Any ideas about what might be wrong and how to fix it?

    I just got a notice to update my firefox to 4.0 and when I downloaded the new software it indicated: that I can't open the application "Firefox" because it is not supported on this architecture. Any ideas about what might be wrong and how to fix it?

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

Maybe you are looking for

  • How do I change the background color and font color in SQLPLUS

    I wanted to have my sqlplus look like the Matrix screen.. Thanks in advance!!

  • How to change the message value in COGI entry

    Hi All, I have two COGI records on a material for a plant and while creating those entries those were locked by another user.  So it is getting message number as 897 and so it is not displaying in the report COGI. Could anybody tell me, how to remove

  • Broadcom bluetooth drives installation failed, no bluetooth device was detected.

     hello, i have HP Pavilion dm4-3013cl Entertainment Notebook PC laptop.and i am trying to install BROADCOM BLUETOOTH DRIVERS in my laptop and i am getting this error that no bluetooth device was detected. please make sure that your bluetooth device i

  • EXTERNAL USER VERIFICATION PROCESS

    Any tips, guidelines, or best practices on this topic? We have a large number of users from different companies. They need to login to access the information on the site, pertinent to their own company. Now, when a user leaves their own employer, we

  • Migrate Web Dynpro Project to NWDI through DC

    Hi All,         I have a requirement which i need to migrate the local Web Dynpro projects to NWDI to make it in central location. I have developed the Web Dynpro project which is local to my system (includes model creation - deprecated type). I need