Confusion about the requirements for the 2015 CC software

I currently have Windows 8.0 (64 bit) which is so satisfactory and stable.  I have not upgraded to 8.1 Windows because I can't install same normal updates for Windows 8.0 without experiencing freezes system that only restore points can heal.  So for now, I would stick with what I have.  But the problem is the confusing requirements for various programs within the pile of creative cloud applications:

Premiere Pro: Microsoft Windows 7 Service Pack 1 (64-bit) or Windows 8 (64-bit)
Photoshop: Microsoft Windows 7 with Service Pack 1 or Windows 8.1

Illustrator: Microsoft Windows 7 with Service Pack 1, Windows 8 or 8.1 Windows

Dreamweaver: Microsoft Windows 7, Windows 8 or 8.1 Windows

Hearing: Microsoft® Windows® 7 with Service Pack 1 (64-bit), Windows 8 (64-bit) or Windows 8.1 (64-bit)

So what I'm confused about is the fact that Windows 8.0 is not listed for Photoshop, but Windows 7 and Windows 8.1 are.  Does this mean Photoshop CC 2015 is not compatible with Windows 8?  And that means that Premiere Pro is not compatible with Windows 8.1 since only 7.0 (SP1) and 8.0 are listed, I would have preferred the upgrade of software CC WITHOUT update Windows since I am picky on my installation of Windows 8 stable pipes now solid as a rock.  Fortunately, Illustrator, Dreamweaver, and hearing are compatible with all three, it seems.

Can someone clear up the confusion, please?

I think that my hardware is OK for this.

Motherboard: Asus Crosshair Formula V-Z (AMD 990FX)

CPU: AMD FX-6300 Vichera 3.5 GHz

Memory: 16GB Kingston HyperX DDR3 2133 MHz

Video: MSI N650-MD1GD5/OC GeForce 650MX

Monitor: Acer S271HL of 27 "(1920 x 1080)"

Power supply: Seasonic X-Series 1050W (SS-1050XM Active PFC F3)

HDD1: Western Digital 320 GB (System)

HDD2: Seagate SV35 Series (ST1000VX000 1 TB 7200 RPM 64 GB OEM)

VidCap: Blackmagic intensity Pro HDMI

USB hub: Rosewill RDCR-11005 5.25 "

UPS: APC Back-UPS XS 1500

Router: Netgear WNDR3700 N600

System is NOT overclocked

It is compatible but not tested.

Tags: Adobe

Similar Questions

  • Confused about the notion of VLAN

    I'm confused about the VLAN. I thought that the notion of VLAN was this computer on different VLANS were not suppose to be able to communicate with each other. I am setting up a 6248 and for me to get DHCP to work, I need to enable ip Routing. When I turn the routing ip, all computers on different VLANS are able to ping each other. Is - it the way it was suppose to work, or am I missing something?
    MGMT is on vlan 4093
    DHCP is on VLAN 100 trunk e34 10.10.1.1
    Host 1 is on VLAN 200 trunk e34 10.10.2.1
    Host 2 is on VLAN 300 trunk e34 10.10.3.1
    active IP routing

  • Confusion about the size of the array in Oracle 11 g

    There is confusion about the size of a table. When exporting schema 'CRESTELWOMPRD601', the log file shows:

    _____________________________________________________________________________________

    . . exported "CRESTELWOMPRD601." "' TBLRSUBSCRIBERFIELDWORK ' lines of 12.62 GB 35568

    ____________________________________________________________________________________

    which may involve the size of the TBLRSUBSCRIBERFIELDWORK table is 12.62 GB.

    But when I find the size of the table using the query:

    SELECT nom_segment, BYTES / 1024 / 1024 "SIZE (MB)" FROM dba_segments where owner = 'CRESTELWOMPRD601' and nom_segment = 'TBLRSUBSCRIBERFIELDWORK. '

    He said that the size is only 9 MB for the TBLRSUBSCRIBERFIELDWORK table.

    I hope that my request is clear that there is no clarity on the size of the TBLRSUBSCRIBERFIELDWORK table.

    Please get back with the answer to my query


    Concerning

    Dba_segments indicates the space allocated to the segment while expdp indicates the size of the exported data, so if you had a table with a measure of 1 MB, but no data, dba_segments would 1 MB and expdp would report 0 bytes.

    John

  • Hi, I'm Vero. I am a student. I want to download install Oracle Applications R12. I am very confused about the installation

    Hi, I'm Vero. I am a student. I want to download install Oracle Applications R12. I am very confused about the installation. I learned to know to install Oracle R12 apps, you have to install VM Box for Oracle Linux OS.
    I'll be very grateful, if someone can provide the documentation for installing the software. (Please complete documentation)

    Thank you and best regards,
    Isabelle

    Hello Vero,

    You can find information on documentation of the product for Oracle VM and Oracle VM templates on the following link:

    http://www.Oracle.com/technetwork/documentation/VM-096300.html

    You can find more information about Oracle VM on the following knowledge article, let me know if you have access to My Oracle support.

    Model of machine virtual of Oracle for Oracle Siebel CRM - Quick Start Guide (Doc ID 951872.1)

    Best regards

    Chetan

  • Confused about the extension of the Sprite class

    Howdy-

    I learn programming with object oriented ActionScript and am confused about the class Sprite and OO in general.

    My understanding is that the Sprite class allows you to group a set of objects that you can manipulate all the objects at the same time.

    I explored the Open Flash Chart code and note that the main class extends the Sprite class:

    Base/public class extends Sprite {}

    What this lets you do?

    Also, on a related note, how to draw, say, a line once I extended?

    Without extend Sprite I could write:

    var graphContainer:Sprite = new Sprite();

    var newLine:Graphics = graphContainer.graphics;

    ...

    And it works very well. Once I have extend the Sprite class, I'm lost. How can I modify this code so that it still draws a line? I tried:

    var newLine:Graphics = this.graphics;

    My understanding is that since I extend the Sprite class, I should still be able to call its method chart (or property? I have no idea). But, he screams at me, saying "1046: Type was not found or is not a constant of compilation: graphs.»

    A number of things.

    First of all, I would not use this approach in your table constructor. Setting the width and height only makes sense if you adjust the width and height of the existing content, and the table (Sprite) does not at this time here. If you want to give the table a 'size', you could do it like this:

    public function Chart (width: Number, height: Number) {}
    This.Width = width;
    This.Height = height;
    put in a background invisible to this size:
    this.graphics.beginFill (0,0);
    this.graphics.drawRect (0,0,width,height);
    }

    There are other ways, including putting in a form or a Sprite of child as a child for the background so that clear will not erase the background of the chart. This way you could have properties for the background in your table class and update the background as a child DisplayObject instance... a few ideas to think to...

    Then, after that, your chart should be functional...

    Then back in your scenario, you could do this:

    import graphics. Table;

    Stop()

    var myNewChart:Chart = new Chart (300,200)
    myNewChart.render ();
    addChild (myNewChart)

  • Confusion about the use of the tables [was: tables]

    I was told, at some point by someone, that the new web site design uses no tables. I'm so confused that I just read in the Help Guide of Dreamweaver Reference Guide, Chapter 5 page layout and Design, there is a whole section for tables. Many help sites, I was told that my site does not even because it is built in the tables. I built it using the ancient DW in 2002. I don't know which version, but the most recent version was Dreamweaver 4 back then. I am trying the trial of 2015, making many tutorials to learn the latest that has completely changed what I learned 14 years ago.

    So, what I can, or may not, use arrays? Please see the reference guide for DW 2015, 5 ml

    Thank you, Deb

    Oh, my site is mainemadestuff.com

    [Edited by moderator subject line]

    Dreamweaver reference Guide is desperately obsolete. Because Dreamweaver is now updated several times per year, new features have been added, but the old material has not been removed. For example, Chapter 5 contains 12 pages on executives. Dreamweaver can't stand frames.

    Advice than a website "shouldn't even work because it is built in the tables" are nonsense. Your site does not, and will continue to work for many years to come.

    The problem with the page layout using tables, it's that it is rigid. The content is not redistributed when the site is displayed on a mobile device. Tables is also bad for technology assistance for the blind. A blind person trying to access your site would have great difficulty of navigation on every page.

    Tables should be used these days for their original purpose: to display data, such as sports or statistical results in tables of trade. Modern web design uses CSS to control page layout and styles. But do not worry about your existing site stop suddenly work. Spend the time learning the latest techniques and reorganize your site when you feel more comfortable with CSS. But forget the so-called Dreamweaver reference Guide. It will be much more to enlighten confused them.

  • Confused about the capacity of the HARD drive on my new Equium L350

    I'm rather confused (normal state) about the capacity of my hard disk. This is supposed to be 120 GB but... On 'My computer', it shows that I have 23 GB of 55.7 left GB on Vista C and 49.8 54.5 on E of data that is delivered to about 110 GB.

    I'm already about 10 GB missing but maybe that is taken up with hidden files. More worrying is that I have so little space on Vista C. Can I save files on the data partition, or is that a no-no? So far, everything I've loaded on it goes into Vista C.
    Any help would be appreciated.
    Thank you

    I agree with InvaderZim.

    But there should also be another reason why the two partitions of HARD drive are smaller than the whole HARD disk.

    I assume you are using the Vista operating system.
    Vista uses hidden for some files from recovery partition.
    If you check the Disk Manager, and you should see all available on your HARD disk partitions.

    See you soon

  • Confused about the new creative cloud

    Hi all

    Since I read adout the new creative cloud I'm confused about what will happen to my license for Adobe Lightroom. Will they remain still desktop apps as well or I have to pay for an annual license, if I want to use new versions of Lightroom?

    I am a casual photographer and I like to use Lighroom for my photos, but I don't think that pay for an annual license because I'm not spending a lot of time, image-editing.

    Can someone clarify this for me?

    Thank you very much

    Lucian

    5 Lightroom does not have subscription only, you're fine. There is no sign that it will even happen in the foreseeable future either.  It's just the ex-Creative-Suite that all talk.

    Target market of Lightroom is different from the Creative Suite/Cloud. CC is a good deal for the majority of its base of users (next door), while the majority signed without major complaints.  Lightroom has a huge customer base amateur, and they would be much more difficult to convince us to go subscription only. They would be likely to lose most of customers of Lightroom at the moment, and they are not completely stupid.

  • Confusion about the Source of excitement in the bridge SMU-4331 input module

    Hello

    I had some confusion through the input of the bridge SMU-4331 sheet module.

    In the features section of excitement, its current Minimum as 29mA says. What it means. It can only current greater than 29mA delivery!

    I think this should me Maximum current specification.

    If you look at the table below

    350 ohm resistance, the current should be 10V/350 ohm = 28.5mA

    but for 1 K ohm, current will me 10V/1Kohm = 10mA, which isn't normal, if you specify current minimum as 29mA.

    any thoughts?

    Kind regards

    Mirash

    Hello Mirash,

    I'm glad I could help!

    As for your other question, the SMU-4330/4331 are inherently peripheral ratiometric.  This means that they are designed to detect the level of excitement and range of the ADC to the appropriate scale.  In this way, we can compensate for permanent changes in the voltage.  One of our engineers wrote a big article really nice area on the subject I would recommend that you take a look at: Sensors of Measuring Bridge-Based with the ratiometric approach

    See you soon,.

  • confused about the function of culture

    OK I've been using photoshop for a while but it has the function of culture changed?  My question is, when I crop a picture, even though I have crops on a very small section, the file remains the same size (pixel dimensions).  If an image is 60 m and I have very small crops, it remains 60 M and 5616 X 3200 pixel, for example.  I'm a bit confused by the present, I'm sure that when I have cultivated an image before it reduces when I cultures.  I hope that I myself make clear...

    any help appreciated.


  • Confused about the location of TDE wallet!

    due to

    http://www.Oracle.com/technology/oramag/Oracle/05-Sep/o55security.html

    I guess to add the following lines to sqlnet.ora if I want to change the default location of the portfolio to the orawall folder:

    ----------------------------------------------------------------
    ENCRYPTION_WALLET_LOCATION =
    (SOURCE =
    (METHOD = file)
    (METHOD_DATA =
    (RÉPERTOIRE = / orawall)))
    ----------------------------------------------------------------

    I just confused of the last line that describe the path of the portfolio... I mean I do not understand where assumes that this location * / orawall * exist on my computer, why he wrote the full path?

    This is the full path to the wallet. I suppose that the example of Arup uses little flavor of Unix, it has no doubt created an ORAWALL directly from the root.

    You can store the wallet in any directory that you have chosen. Typically, you would choose $ORACLE_BASE/admin / $ORACLE_SID/portfolio. On my Windows machine where I have a database with the SID jcave11gr1, who would be

    ENCRYPTION_WALLET_LOCATION =
      (SOURCE =
        (METHOD = FILE)
        (METHOD_DATA =
          (DIRECTORY = c:/oracle/admin/jcave11gr1/wallet)
        )
      )
    

    Justin

  • Question about the Microsoft malicious software removal tool

    Recently, I downloaded and executed the MS Malicious Software Removal Tool. He said that if it finds any infected file he would remove the. I did 2 quick scans, and twice he told them I had 3 infected files, but at the end of the scan it says no malicious software found. Anyone know anything about this?

    Hi Flamencoqueen,

    Please use the Forum for answers!

    Different security programs have different detection evaluates, performance etc.  It could be that when scanning infected files were found and removed. If you have reason to believe that the result cannot be specific, you can choose to run that more than one antivirus program on a particular system provided that they are not in conflict with one another.

    David O
    Microsoft Answers Support Engineer
    Visit our and tell us what you think.

  • Question about the Oracle Client software

    Good afternoon

    The following statement appears in the day 2 DBA OBE for Chapter 4:

    >
    You must first install the Oracle database client software, which includes the Oracle Net software.
    >

    I downloaded the instant client, installed and everything works fine. However, the instant client does not include the Oracle Net software. I searched for a 'no snapshot' customer ;) he would understand, but did not find these clients. I tried to start the complete installation (downloaded from the Oracle site) and there is no option to install the client only.

    Question: There is another client that includes the Oracle Net software as described in the OBE? If Yes, where is it?

    Thank you for your help,

    John.

    Yes, the "full" client package is available in the downloads / database and has a name like this:

    Oracle Database 11 g Release 2 (11.2.0.1.0) Client for Microsoft Windows (32-bit)

    (and of course is available for different platforms)

  • confused about the want 700-074 update bios - it's for my computer?

    Hi all

    I am a happy owner of a 700-074 HP Envy computer. I have a question about a recent update BIOS I've seen on the software and drivers download page on the main site HP.COM. I frequently check the site for updates of drivers and software.

    The update in question is classified

    Update BIOS HP Compaq consumer desktop PC (SSID family ROM 2AF3)

    Although the ROMA family corresponds to the family on my computer, it lists the update of a HP Compaq computer.

    This BIOS does the 700-074 want system specifically? I guess it's because it it lists to the title of the download page for 700-074 want systems. However, I don't want to patch my BIOS with the update incorrect if it is considered an error.

    Any help will be appreciated.  Thank you!

    Hello @boinc127,

    I understand that you are looking to confirm that the update of the BIOS HP Compaq consumer Desktop PC BIOS Update (2AF3 ROM family SSID) is appropriate for your computer. As far as I can tell it's the update of the correct BIOS for your computer.

    I hope that I have answered your question to your satisfaction. Thanks for posting on the HP Forums. Have a great day!

  • Confused about the creation of a .db file for the first time in the property fodler

    How can I create a file .db for the first time and bring it to assets by program? If I have to create manually on the current folder, then how I can modify it. I read something about copying program to a different folder and edit it. But then I have to copy it on record new assets which should be limited by program. According to me, Miss me something here. But I can't know that. I really need help on this problem. Thank you.

    The only way you will get a file .db in assets / are to put it there on your PC, when package you it application.

    This file is supposed to be read-only in your application? If this isn't the case, you don't want it in the current folder anyway.

    Maybe you can explain why you think that you must have a .db in the active folder anyway, instead of somewhere else. Is there that a documentation means that you should put this active file? Or are you assuming that the current folder is special somehow I suspect, that he really isn't, at least for the .db files?

Maybe you are looking for