In the New group from layers, How can I get more colors on the Folders options in Photoshop CC?

Hola
There is any way that I can get more or make my own colors to distinguish the folders in Photoshop CC?
Please, let me know
Thanks

Daniel Ulysses wrote:
Not good
Hope someone knows a hidden way to make more colors…
If you're very good at writing code and willing to hack your copy of Photoshop—but, then, if you were you wouldn't be asking here, I suppose.

Similar Messages

  • I got the iphone 5, got some pics and msgs and contacts on it, and when i connected to my PC to restore my previous info from the old iphone, all the new stuff are gone, how can i get it back, thanks for help.

    i got the iphone 5, got some pics and msgs and contacts on it, and when i connected to my PC to restore my previous info from the old iphone, all the new stuff are gone, how can i get it back, thanks for help.

    The voicemail system used for the iPhone is different from the voicemail system used on the rest of the Verizon Wireless network. When you activate the iPhone, you lose your saved voicemails from the other system. When you activate a non-iphone, you lose any saved voicemails from the iPhone voicemail system too.

  • I would like to see all my contacts in my old outlook acount, after loading the cloud I I can only find them in the new cloud acount. How do I get them back in the old outlook acount

    I would like to see all my contacts in my old outlook acount, after loading the cloud I I can only find them in the new cloud acount. How do I get them back in the old outlook acount?

    In Outlook, export your contacts to a .pst or .csv file. Keep the exported file
    How to export contacts from Outlook for Windows.

  • I recently made an album from my i photos and the the drive crashed ...the album isnt in iphoto.how can i order more copies of the album?

    i recently made an album from my i photos and the the drive crashed ...the album isnt in iphoto.how can i order more copies of the album?

    Ay album do you mean an iPhoto book?  The best way is to restore a backup copy of your iPhoto library from just before the drive crashed.
    Baring that your only hope is to recreate the book in iPhoto.  For future book I suggest you try what is described in this tutorial: iP08 - Archiving an iPhoto Book for Editing and/or Ordering at a Later Date and, if you don't already have one, start a backup strategy for backing up your important files.
    OT

  • I have downloaded some songs from Soundcloud and i have the 'waiting' iCloud Icon. How can i get iTunes to recognise the songs as i can do anything with the songs i.e.: put into a playlist?

    Hi
    I have downloaded 6 songs from Soundcloud.
    iCloud doesn't recognise them and i have the 'Waiting' iCloud symbol.
    How can i change those icons as i can't put any of the songs into a playlist?

    Sounds like you are trying to manually delete content from your device via iTunes. If so, you'll want to make sure your iPod is set up for manual management by enabling the Manually manage music option from under the iPod's Summary tab in iTunes.
    B-rock

  • How can i get more info about the sent data in RTP?

    Hello.
    I'm working with the examples AVTransmitt2 and AV Receive2 and i want to get more information about the data that it is being sent to de receiver side. In AVTrasmitt2 i only see a calling to processor.start();. How could i know each packet that AvTransmit2 sends to the other side. I want info like the size of the data, the quality, format, etc..

    Hi!
    As I mentioned above. RTPSocketAdapter has two inner classes, SockOutputStream and SockInputStream.
    SockOutputStream have a write method which is called when RTP data is sent over the NET. SockInputStream have a read method which is called when RTP data is received.
    If you for instance want to know exactly what is sent you can parse the byte array that comes into write.
    Like this:
    * An inner class to implement an OutputDataStream based on UDP sockets.
    class SockOutputStream implements OutputDataStream {
         DatagramSocket sock;
         InetAddress addr;
         int port;
         boolean isRTCP;
         public SockOutputStream(DatagramSocket sock, InetAddress addr, int port, boolean isRTCP) {
              this.sock = sock;
              this.addr = addr;
              this.port = port;
         public int write(byte data[], int offset, int len) {
              if(isRTCP){
                   parseAndPrintRTCPData(data);               
              }else{
                   parseAndPrintRTPData(data);
              try {
                   sock.send(new DatagramPacket(data, offset, len, addr, port));
              } catch (Exception e) {
                   return -1;
              if(debug){
                   System.out.println(debugName+": written "+len+" bytes to address:port: "+addr+":"+port);
              return len;
    private void parseAndPrintRTPData(byte[] data) {
         // part of header, there still left SSRC and CSRC:s
         byte[] rtpHeader = new byte[8];
         System.arraycopy(data, 0, rtpHeader, 0, rtpHeader.length);
         ByteBuffer buffer = ByteBuffer.wrap(rtpHeader);
         int word = buffer.getInt();
         // version
         int v = word >>> 30;
         System.out.println("version: "+v);
         // padding
         int p = (word & 0x20000000) >>> 29;
         System.out.println("padding: "+p);
         // extension
         int x = (word & 0x10000000) >>> 28;
         System.out.println("extension: "+x);
         // CSRC count
         int cc = (word & 0x0F000000) >>> 24;
         System.out.println("CSRC: "+cc);
         // marker
         int m = (word & 0x00800000) >>> 23;
         System.out.println("marker: "+m);
         // payload type
         int pt = (word & 0x00700000) >>> 16;
         System.out.println("payload type: "+pt);
         // sequence number
         int seqNbr = (word & 0x0000FFFF);
         System.out.println("sequence number: "+seqNbr);
         // timestamp
         int timestamp = buffer.getInt();
         System.out.println("timestamp: "+timestamp);
    private void parseAndPrintRTCPData(byte[] data) {
         // this only works when the RTCP packet is a Sender report (SR).
         // All RTCP packets are compound packets with a SR or Receiver report (RR) packet first.
         // part of header, there is still the report blocks (see RFC 3550).
         byte[] rtcpHeader = new byte[28];
         System.arraycopy(data, 0, rtcpHeader, 0, rtcpHeader.length);
         ByteBuffer buffer = ByteBuffer.wrap(rtcpHeader);
         int word = buffer.getInt();
         // version
         int v = word >>> 30;
         System.out.println("version: "+v);
         // padding
         int p = (word & 0x20000000) >>> 29;
         System.out.println("padding: "+p);
         // reception report count
         int rc = (word & 0x0F000000) >>> 24;
         System.out.println("reception report count: "+rc);
         // payload type, which is 200 in this case (SR=200)
         int pt = (0x00FF0000 & word) >>> 16;
         System.out.println("payload type: "+pt);
         // length
         int length = (word & 0x0000FFFF);
         System.out.println("length: "+length);
         // SSRC of sender
         int ssrc = buffer.getInt();
         System.out.println("SSRC: "+ssrc);
         // NTP timestamp
         long ntp_timestamp = buffer.getLong();
         System.out.println("NTP timestamp: "+ntp_timestamp);
         // RTP timestamp
         int rtp_timestamp = buffer.getInt();
         System.out.println("RTP timestamp: "+rtp_timestamp);
         // sender's packet count
         int nbrOfSentPackets = buffer.getInt();
         System.out.println("sender's packet count: "+nbrOfSentPackets);
         // sender's octet count
         int nbrOfSentBytes = buffer.getInt();
         System.out.println("sender's octet count: "+nbrOfSentBytes);
    }I added a boolean isRTCP to the constructor so to know what sort of data is sent.
    Hope this clarifies things.

  • HT2589 We had an account that was housed on our old computer but it didn't make it onto the new one...how can I get the account balance and start using it?

    We had an account that was housed on our old computer but it didn't make it to the  new one.  How can we find the balance and start using it again?

    iTunes accounts are not located on your computer.  They are simply tied to a specific AppleID.  Just log in to iTunes with the correct AppleID and Password and you will be back in that account.

  • Macafee is not working properly with the latest version of firefox, how can I get it to work the way it was working on the previous version?

    when browsing on google, it doesn't show the macafee safety arrow or caution, nor does it name the macafee secure sites. What happened with the new version?

    '''McAfee Site Advisor:''' https://support.mozilla.com/questions/837419
    Look for an updated version in about the 3rd week of July; hopefully they'll fix their many other errors besides, I don't think I've been able to use it since about Firefox 3.6.0 or maybe 3.6.6
    Be aware that if you currently choose to use McAfee Site Advisor it has some serious problems for Firefox users, check
    *http://kb.mozillazine.org/Problematic_extensions for some things to watch out for.
    *https://support.mozilla.com/questions/837877
    *https://community.mcafee.com/message/195191

  • I lost all my music from my ipod when syncing and do not have them backed up. I have the purchase list from apple, how can I get that music?

    I lost all my music that I purchased from Itunes. I would like to know how to get all the music that is purchased back? I do not have anything backed up but I have the invoices for all the songs.

    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/HT2519

  • I have an icloud account but my daughter also has an icloud account on my computer.  hers is the one that comes up.  when i try to sign her out it wants to delete the contacts and calendars.  how can i get my icloud on the computer without disrupting hers

    I have an icloud account but my daughter also has an icloud account.  We have them registered under different emails.  When I try to sign her out of icloud on the computer it wants to delete calendar and contacts.  how do i sign into my account with out messing up hers?

    You need to setup your own user account on the computer to keep independent iCloud accounts, contacts & calendars. Then sign in to your iCloud account in your user account.

  • How do I get more colors in the console?

    I'm wanting to experiment with using emacs in the console ($TERM = linux) but it only has 8 colors, all of them ugly. Is there a way to have it provide more than 8 colors? (This will be without X, obviously).

    Which version did you install? According to their homepage fbterm provides 256 colors since version 1.4.
    How did you try to install? Installing fbterm-1.7.0-2 from the AUR using yaourt went flawlessly here. Dependencies are pretty standard (gcc-libs, libx86, fontconfig) so there should be no problem, really.
    (I didn't run it, though.)
    Last edited by bernarcher (2010-11-27 21:53:21)

  • Hi, i got a Mac OS X version 10.5.8, how can i get more space to be able to download photoshop on my mac?

    Just bought Adobe photoshop element 11...i need to find more space on my Mac OS X version 10.5.8, can i do that
    with up grading to snow leopard or what's my option?

    Freeing Up Space on The Hard Drive
      1. See Lion/Mountain Lion's Storage Display.
      2. You can remove data from your Home folder except for the /Home/Library/ folder.
      3. Visit The XLab FAQs and read the FAQ on freeing up space on your hard drive.
      4. Also see Freeing space on your Mac OS X startup disk.
      5. See Where did my Disk Space go?.
      6. See The Storage Display.
    You must Empty the Trash in order to recover the space they occupied on the hard drive.
    You should consider replacing the drive with a larger one. Check out OWC for drives, tutorials, and toolkits.
    Try using OmniDiskSweeper 1.8 or GrandPerspective to search your drive for large files and where they are located.

  • I have a issue with my mac book pro. For some reason it won't stay powered on. I can't get past the apple loading logo. The battery is fully charged so it is not the problem. Can anyone tell me what the problem may be and how can i get it resolved?

    I have a issue with my mac book pro. For some reason it won't stay powered on. I can't get past the apple loading logo. The battery is fully charged so it is not the problem. Can anyone tell me what the problem may be and how can i get it resolved?

    The battery is fully charged so it is not the problem.
    What happens when you use the MagSafe?

  • I have the original iPad and when I sync it with my macbook pro in iPhoto the faces are different on both, how can I get them to be the same as on the computer

    I have the original iPad and when I sync it with my macbook pro in iPhoto the faces key photo aren't the same on both devices, how can I get them to be the same as on the computer

    Interesting observation.  Thanks for sharing.
    Did you have a technical support question?

  • How can i get more disk space on my i phone

    i purchased music from i tunes but i can't sync my i ohone it's telling me i need more room how can i get more space on the phone i have an i phone 4s.

    Transfer photos & videos from your iOS device to your computer, and then delete them off of the device.

Maybe you are looking for

  • Is there a way to hightlight a word or phrase on a websit and do a web search on it without retyping it into the search box

    I would like to highlight a word or phrase on a website while in Firefox and press a shortcut key to do a web search on this term without retyping the whole word or phrase into the search box. Can this be done?

  • How edit document header

    Numbers Version 3.5.2 (2118) on iMac.  What is the most efficient way add or edit a document header? Currently I can only access the header by selecting Print and repeated zooming (keyboard shortcut does not work in print mode) until I can see it cle

  • SSL error restoring from iCloud

    I just bought a new iPhone 5. From the setup process, I am trying to restore an iCloud backup. When it asks for my Apple ID and I submit it it says "Could Not Sign In. An SSL error has occurred and a secure connection to the server cannot be made." I

  • 5d Mark III support when?

    I'm fully aware that this is just a release candidate but that should be close to perfect.. I also fully understand the issue with being first off the line and get the latest camera. But this is the second release of CR that doesn't support the 5DIII

  • Subtotal value in sales order not coming into the net value field.

    Dear Gurus, I am entering two manual conditions in sales order and the total of the two conditions is taking into subtotal step. I want to show that subtotal value into Net Value field(i.e. avilable in the conditions tab). I tried number of combinati