Can't figure out this screen mode problem! Pic to illustrate!! THANKYOU FOR YOUR HELP

THIS IS THE TUT IM FOLLOWING.                                                                        
THIS IS WHAT MINE LOOKS LIKE BEFORE I APPLY THE SCREEN MODE
THIS IS WHAT IT LOOKS LIKE AFTER I APPLY SCREEN MODE
What is the problem????? THANKYOU SO MUCH FOR YOUR HELP.

You need to understand the meaning of the word Screen.
It has nothing to do with half tones or rasters.
It refers to additive (light) colour mixing like on your computer screen. So Red + Green = Yellow and so on. Look at your own screen with a strong magnifying glass to see how it works.
Like Monika says it works best in RGB mode. If you are working in CMYK you must use a rich black (preferably 100% of all 4 colours in this rare case).
Incidentally, an opacity mask might be a better way to go for buttons and stuff.
There too you should use 100% of all 4 colours in the mask when working in CMYK.

Similar Messages

  • I got an ipod touch from my friend, but can't figure out how to change the apple id to get games. Help?

    I got an ipod touch from my friend, but can't figure out how to change the apple id to get games. Help?

    Never mind, I got this.

  • IPhone 5 storage completely full and can't figure out to fix the problem?

    I got the iPhone 5c in August of last year. Previously, I had owned a flip-phone and only a flip-phone, so you can imagine that it was a big change. Though I know there is so much more that it can do (and so many things I have yet to discover), I mostly appreciated the phone for its photo and Internet capabilities. Only a few weeks after I got the phone, I went to a concert and, as you can imagine, the videos took up a lot of space on my phone. I also have a bad problem with saving screenshots, so I quickly filled up space with pictures. Once I realized it was reaching an overwhelming amount (and space was getting limited), I backed-up my iPhone to iTunes on my computer and deleted around 800 pictures. It barely freed up any space. I did this once or twice until one time I tried backing it up again and it would not let me, saying that there was not enough space to do the back-up. I don't quite know how that works, but after that, I just ignored my problem. Well, then my space was dwindling down close to zero. I deleted most of my apps, though it did not free up much at all because 11.4 GB of my 13.2 GB phone is from Photos/Videos.
    My phone reached 0 bytes available in, I'm guessing, November of last year? To my surprise, I could still use some of the features on my phone. Internet, screenshotting (though I could no longer take pictures), and some of the apps (though they often would not load fully). This didn't last for long. One day, I wasn't able to open hardly any of my apps. Then it transitioned to my Internet closing out of itself every now-and-then. Well, currently (and I've been having these problems consistently for the past month or so), I can not open any apps. If I try to go to a website, it closes out of itself almost every single time. I never know if my texts go through because it never finishes the sending process (sometimes people say they get them, sometimes they don't). I cannot receive texts. I can't even try to delete my photos/videos because when I click "delete", it goes to my Home Screen (again, it closes out of itself) and when I check, the pictures/videos are still there. For the past month or so, the only thing my phone can do is call. Which, you know, defeats the purpose of an iPhone. Basically, I have gotten myself into quite a conundrum.
    Is there a solution to my problem that does not involve restoring it to factory settings?

    Thank you for your reply! I just tried importing my pictures again. iTunes gave me the same message - that the storage was too full. I looked under summary, and I don't quite exactly know what usage numbers you are looking for, but it does say it is over capacity by 190.8 MB. However, when I plugged in my phone to the computer, it started to import pictures automatically into Dropbox. I just recently got Dropbox, so I did not have it the other times I tried to import. I managed to get the pictures onto my computer and, by some miracle, was able to delete a couple hundred from my phone. It also let me delete the long videos on my phone, which I've been trying to do for months. I went to my Storage and it now says I have 6.6 GB free (which was so amazing to see that I had to take a moment). I can take pictures now. I quickly updated a few apps and the space is still good. However, there are some apps that it still will not open (as in I open it up, then one second later it closes out). These seem to be the social media apps-- Twitter, Instagram, Facebook. Should I just delete them, then re-download? That will not mess anything up, correct? So far, Safari is working, which is a major relief.
    How would I go about syncing things like contacts?

  • Can't figure out this NullPointerException

    Hi I posted yesterday that I was making an infix to postfix converter for school and I thought I had it finished and all good when i compiled a testapp for it and got this:
    Exception in thread "main" java.lang.NullPointerException
         at myStack.push(myStack.java:14)
         at inToPost.translate(inToPost.java:14)
         at itpTest.main(itpTest.java:5)Here is the code that is creating this error:
    Method Push in myStack:
    public void push(String str)
              Node newTop = null;
              newTop.item = str; // Line 14
              newTop.next = top;
              top = newTop;
         }method translate in inToPost
    public void translate(){
              String token;
              inFile.open("data.txt");
              while(!inFile.eof()){
                   token = inFile.readString();
                   token.trim();
                   if(token.compareTo("open") > 0){
                        theStack.push("open");  //Line 14
                   else if(token.compareTo("close") > 0){
                        gotRightPar(token);
                   else if(token.compareTo("plus") > 0 || token.compareTo("minus") > 0){
                        tokenIsOp(token, 1);
                        break;
                   else if(token.compareTo("times") > 0){
                        tokenIsOp(token, 2);
                   else if(token.compareTo("pow") > 0 || token.compareTo("goob") > 0){
                        tokenIsOp(token, 3);
                   else
                        output = output + " " + token;
              inFile.close();
         }Can someone give me some insight on maybe why this is happening.
    I read the API on this error but I don't see why I would have a problem.
    As always thanks in advance for the help!

    You're a total dumb ass:
    public void push(String str)
              Node newTop = null;  // newTop is null
              newTop.item = str; // Line 14; it's still null here.
              newTop.next = top;
              top = newTop;
         }Set newTop to point to a non-null Node.
    %

  • Can you figure out what was the problem in this simple 3 liner code?

    Hello, below is a class to demonstrate a problem I see that I can't understand. I create an instance of the enclosing
    class at class level, another instance in static main method. Class below fails at run time with stack overflow exception. It's all fine if one of those two instantiation steps is removed, What is wrong can anyone any ideas?
    public class App
    // create instance of this class     
    App app = new App();
    public static void main( String[] args )
         // create instance of this class again.
    App app2 = new App();
    System.out.println( "Hello World!" );
    }

    As soon as a new instance of 'App' is created, 'App app = new App();' is called, which calls 'App app = new App();' etc. Hence the stack overflow.
    When you remove 'App app = new App();', obviously, the stack overflow does not occur. And when your remove 'App app2 = new App();' the 'App' class is never instantiated and therefore, the exception is also not thrown.

  • Can't figure out my Airport Express problem...

    I can't connect to the internet with my Airport Express. I've tried every option but none seem to work.
    I have a RCA Digital Broadband box, which has a ethernet cable that I plug into my Airport. This is a sublease apartment so the internet was already set up and I just want to make it wireless.
    When I go through the setup I choose "I don't have a wireless network and I want to create one" and then I am confronted with the "Bridge Mode" or "Single IP address using DHCP and NAT." I've tried both to no avail. When I choose "Single IP address using DHCP and NAT" it actually tells me that the light will blink amber and asks me to ignore, skip or cancel. The "Bridge Mode" goes straight to the screen I am confronted with if I skip the amber light warning.
    It asks for: Configure IPv4, IP address, Subnet Mask, Router Address, DNS Server, Domain Name and DHCP Client ID. I leave it all as is so only IP and Subnet have information filled in.
    Anyways, this fails as usual. I get the error saying that the "Apple wireless device does not have a valid IP address." I can pull the ethernet from the Airport and plug it into my laptop and I am connected in seconds... it's very annoying. Any idea of what I am doing wrong?
    Sometimes, actually, I get the light to turn green and it says I am connected but the internet still doesn't work. Figures.

    Hi,
    Well, I went through the entire process (selecting bridge) and ignored the last problem where it said that Airport didn't have a valid IP. The light on my Airport is green and my Airport icon on my mac gives me full bars; however, there is still no internet.
    I went into the internet options as you suggested and here are the results:
    Connect using: Ethernet
    Configure IPv4: Using DHCP
    IP Address: 169.254.18.108
    Subnet Mask: 255.255.0.0
    Routher: (blank)
    DNS Server(s): (blank)
    Domain name: (blank)
    DHCP Client ID: (blank)
    Ethernet WAN Port: Automatic (Default)
    Connection Sharing: Off (Bridge Mode)
    When I press the airport tab and click status, which says normal and is green, it brings me to a new section. This section says there is an issue with my internet connection and the cause is that my "Apple wireless device does not have a valid IP address."
    That seems to be the issue. I don't know how to fix it though. One thing that looks out of place is that when Airport Utility is searching for my Airport Express network, it reports that the IP address is fe80::21f:f3ff:fef9:fe54%en1.

  • Help, I just can't figure out this code or what to do to make it work

    ok, what i'm trying to do is the following: I created a class called Enrollement, in that class I put in an array of 30 objects to hold the places of 30 names that I used Scanner to bring in from a text file. Ok, that part of the code alone works fine. After that, I know want to write a function that will count the number of times each letter (a-z) appears in the first and last names in the class that are held in that array. I have been working on this for a while making changes doing a bunch of stuff but i keep getting errors with the second part that I honestly don't know how to fix or what i'm doing wrong. I am very new to Java. IF/when anyone responds, please dumb down your answers as much as possible so that I can understand what you are saying, I just have no idea what the errors mean or how to make this program work. my code is below:
    import java.util.Scanner;
       import java.io.File;
        class Enrollment{
           public static void main(String [] args)throws Exception{
             Person [] name = new Person [30];
             Scanner sc = new Scanner(new File("names.txt"));
             while (sc.hasNext()){
                String lastName = sc.next();
                String firstName = sc.next();
                sc.nextLine();
                System.out.println("Name: " + firstName + " " + lastName.substring(0,lastName.length()-1));
           public int chararcterCount(char c){
             int count = 0;
             for(int i = 0;i<30;i++){
                Person p = Person ;
    count = count + p.charCount(c);
    return count;
    public static void main(String [] args)throws Exception{
    Enrollment e = new Enrollment();
    e.print();
    System.out.println("Letter a appears " + e.characterCount('a') + times);
    keeps telling me that public static void main.... is already defined and i know that but once i delete that part from program i just keep getting more errors later and i just have no clue how to make this all work

    the program is supposed to count the number of times
    a certain letter appears in the first and last names
    of the class.I was asking about the particular code snippet you posted, not about the program.
    ....p.charCount is supposed to count the
    number of times that character appears, or at least
    that's what i want it to do, Does it do that? Did you test it? You should write a main method that just constructs a Person object and then call its charcount method for vairous characters--one that appears zero times, one time, and multiple times--and see if you get the right results.
    i'm not too sure of the
    rules aorund here and i don't know if this is taboo,
    but would it be possible tot talk to you in real time
    on AOL Instant Messenger or somethingNo, most people here (myself included) will not do that. It denies others the chance to learn from your problem, and prevents others who might help you from participating in the conversation.

  • Can you figure out this setup? Snow Leopard and Windows 7...

    Here's my potential rig:
    - Running a Mac Pro.
    - 2 Hard Drives:
    1) Snow Leopard on first drive
    2) Windows 7 on second drive
    - 2 24" Apple LED Cinema Displays
    So here's my question...is there a way I can have both OS's running at the same time, with Snow Leopard on the left monitor and Windows 7 on the right monitor, all running out from one computer rig (Mac Pro)?
    I've heard of ppl using Synergy to run dual monitors with dual computers and sharing one keyboard and mouse. I want to do the same EXCEPT run it all out of 1 computer.
    Any advice, suggestions, critiques?
    Thanks!

    You'll have to rely on virtualization there. Check out parallels or VMWare Fusion. I think both companies provide evalauation versions. There's also Sun's free VirtualBox that you might want to give a try. A virtual windows installation won't perform as well as a boot camp installation in all situations
    Cheers,
    Jazz

  • Can't figure out this error...

    The assignment is to create a program that uses a class to store information about DVDs and then diplay the information.
    One error is "cannot find symbol, symbol: constructor Dvd(), location: class Dvd, Dvd mydvd = new Dvd();
    The other error is "cannot find symbol, symbol method calculateValue(), location class DvdTest, System.out.println("The value in inventory is $", calculateValue() );
    Here's my code:
    {code// EmployeeInfo class created by Michelle Groves
    // Last edited April12 09
    public class DvdTest
       public static void main(String args [])
    Dvd mydvd = new Dvd();
    Dvd[] prodArray = new Dvd[2]; // creat an array
    prodArray[0] = new Dvd( 231562, 7.49, 2, "Cars" );
    prodArray[1] = new Dvd( 231562, 7.49, 2, "Toy Story" );
    // Displays first element's info
    System.out.println("The stock number is " + prodArray[0].getstockedDvds());
    System.out.println("Priced at " + prodArray[0].getdvdPrice());
    System.out.println("Inventory contains " + prodArray[0].getstockedDvds());
    System.out.println("The title is " + prodArray[0].getdvdName());
    // Displays second element's info
    System.out.println("The stock number is " + prodArray[1].getstockedDvds());
    System.out.println("Priced at " + prodArray[1].getdvdPrice());
    System.out.println("Inventory contains " + prodArray[1].getstockedDvds());
    System.out.println("The title is " + prodArray[1].getdvdName());
    System.out.println("The value in inventory is $", calculateValue() );
    } //end main
    } // end class
    class Dvd
    private int dvdNumber; // DVD Product Number
    private double dvdPrice; // price of DVD
    private double stockedDvds; // number of units in stock
    private String dvdName; // name of DVD
    public Dvd( int dvdNumber, double dvdPrice, double stockedDvds,
    String dvdName ) // constructor for dvd
    dvdNumber = 0;
    dvdPrice = 0.0;
    stockedDvds = 0.0;
    dvdName = "";
    } // end constructor
    // method to set DVD number
    public void setdvdNumber( int dvdNumber )
    dvdNumber = dvdNumber; // store DVD number
    } // end method setdvdNumber
    // method to retrieve DVD number
    public double getdvdNumber()
    return dvdNumber;
    } // end method getdvdNumber
    // method to set DVD price
    public void setdvdPrice( double dvdPrice )
    dvdPrice = dvdPrice;
    } // end method setdvdPrice
    // method to retrieve DVD price
    public double getdvdPrice()
    return dvdPrice;
    } // end method getdvdPrice
    // method to set stocked number of DVDs
    public void setstockedDvds( double stockedDvds )
    stockedDvds = stockedDvds;
    } // end method setstockedDvds
    // method to retrieve stocked number of DVDs
    public double getstockedDvds()
    return stockedDvds;
    } // end method getstockedDvds
    // method to set DVD Name
    public void setdvdName( String dvdName )
    dvdName = dvdName;
    } // end method setdvdName
    // method to retrieve DVD name
    public String getdvdName()
    return dvdName;
    } // end method getstockedDvds
    // method to calculate pay for week
    public double calculateValue()
    return dvdPrice * stockedDvds;
    } // end method total
    } // end class

    Here's my code a little more readable:
    // EmployeeInfo class created by Michelle Groves
    // Last edited April12 09
    public class DvdTest
    public static void main(String args [])
    Dvd mydvd = new Dvd();
    Dvd[] prodArray = new Dvd[2]; // creat an array
    prodArray[0] = new Dvd( 231562, 7.49, 2, "Cars" );
    prodArray[1] = new Dvd( 231562, 7.49, 2, "Toy Story" );
    // Displays first element's info
    System.out.println("The stock number is " + prodArray[0].getstockedDvds());
    System.out.println("Priced at " + prodArray[0].getdvdPrice());
    System.out.println("Inventory contains " + prodArray[0].getstockedDvds());
    System.out.println("The title is " + prodArray[0].getdvdName());
    // Displays second element's info
    System.out.println("The stock number is " + prodArray[1].getstockedDvds());
    System.out.println("Priced at " + prodArray[1].getdvdPrice());
    System.out.println("Inventory contains " + prodArray[1].getstockedDvds());
    System.out.println("The title is " + prodArray[1].getdvdName());
    System.out.println("The value in inventory is $", calculateValue() );
    } //end main
    } // end class
    class Dvd
    private int dvdNumber; // DVD Product Number
    private double dvdPrice; // price of DVD
    private double stockedDvds; // number of units in stock
    private String dvdName; // name of DVD
    public Dvd( int dvdNumber, double dvdPrice, double stockedDvds,
    String dvdName ) // constructor for dvd
    dvdNumber = 0;
    dvdPrice = 0.0;
    stockedDvds = 0.0;
    dvdName = "";
    } // end constructor
    // method to set DVD number
    public void setdvdNumber( int dvdNumber )
    dvdNumber = dvdNumber; // store DVD number
    } // end method setdvdNumber
    // method to retrieve DVD number
    public double getdvdNumber()
    return dvdNumber;
    } // end method getdvdNumber
    // method to set DVD price
    public void setdvdPrice( double dvdPrice )
    dvdPrice = dvdPrice;
    } // end method setdvdPrice
    // method to retrieve DVD price
    public double getdvdPrice()
    return dvdPrice;
    } // end method getdvdPrice
    // method to set stocked number of DVDs
    public void setstockedDvds( double stockedDvds )
    stockedDvds = stockedDvds;
    } // end method setstockedDvds
    // method to retrieve stocked number of DVDs
    public double getstockedDvds()
    return stockedDvds;
    } // end method getstockedDvds
    // method to set DVD Name
    public void setdvdName( String dvdName )
    dvdName = dvdName;
    } // end method setdvdName
    // method to retrieve DVD name
    public String getdvdName()
    return dvdName;
    } // end method getstockedDvds
    // method to calculate pay for week
    public double calculateValue()
    return dvdPrice * stockedDvds;
    } // end method total
    } // end class

  • HT201493 After recent iOS update, no longer have names and pics, but only email addresses of friends? Can't figure out how to put names/pics back on. Suggestions??

    Advice??

    Your issue has been escalated to a Verizon agent. Before the agent can begin assisting you, they will need to collect further information from you.
    Please go to your profile page for the forum, and look in the middle, right at the top where you will find an area titled "My Support Cases". You can reach your profile page by clicking on your name beside your post, or at the top left of this page underneath the title of the board.
    Under “My Support Cases” you will find a link to the private board where you and the agent may exchange information. This should be checked on a frequent basis as the agent may be waiting for information from you before they can proceed with any actions.
    To ensure you know when they have responded to you, at the top of your support case there is a drop down menu for support case options. Open that and choose "subscribe".
    Please keep all correspondence regarding your issue in the private support portal.

  • Can't figure out how to put a Line "-" over and "E" for pronunciation...

    I can see how to do it for other accent marks but not for the straight line.
    Using Appleworks, I would like the "E" in "TELA" to have a line "-"over it, so it is pronounced properly.
    I have been at this for at least two hours.
    Any suggestions?
    thanks
    Powerbook   Mac OS X (10.4.6)  

    One could use the Equation Editor to construct any character under a bar quite easily. Launch Equation Editor from the Edit menu. Choose a font that matches your text and set the style to "text". Begin typing your word. When you get to the letter(s) requiring the overbar, select the overbar from the appropriate dropdown menu (the one you want is just right of center in the bottom row), then type your character(s). Hit the right arrow one time (and you'll probably have to reset the font style to "text" again) and continue typing your word. Close the Equation Editor window to place the entry into your document.

  • Just purchased a Mac today. Large screen but small type size on the desktop. How can I change the font size that appears on the desktop? The only place that I can find font size is in word and this is not what I need. Thanks for your help!

    JUST PURCHASED A MAC TODAY. LION OS. NEED HELP INCREASING THE SIZE OF THE FONTS ON THE DESKTOP. EVEN THOUGH I HAVE A LARGE SCREEN, THE TYPE SIZE IS VERY SMALL. GOING TO WORD AND CHANGING THAT TYPE SIZE IS ALL I HAVE FOUND IN HELP TOPIC.

    Finder > View > Show View Options
    Change the text size to whatever you want.

  • I have a MacBook with iWork 09 installed. For a year I would use "save as Word document" to convert my Pages documents for others. I installed Lion yesterday and can't figure out how to save my document as a Word document. Help!

    I have a MacBook with iWork 09 installed. I bought and downloaded OS X Lion yesterday. How do I save my Pages documents as Word documents?

    Use the Export... option:
    Regards,
    Colin R.

  • Keychain was not set up correctly, and i can't figure out how to edit or change the phone number for it.  can anyone help?

    I did the whole thing when i bought my  MBP, now a year or so later its getting more annoying asking for my keychain password aldo  keychain seems like a neat feature that i don't want any info texted or sent to the other number i entered. 

    Back up all data before proceeding.
    Launch the Keychain Access application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Keychain Access in the icon grid.
    Select the login keychain from the list on the left side of the Keychain Access window. If your default keychain has a different name, select that.
    If the lock icon in the top left corner of the window shows that the keychain is locked, click to unlock it. You'll be prompted for the keychain password, which is the same as your login password, unless you've changed it.
    Right-click or control-click the login entry in the list. From the menu that pops up, select
              Change Settings for Keychain "login"
    In the sheet that opens, uncheck both boxes, if not already unchecked.
    From the menu bar, select
              Keychain Access ▹ Preferences ▹ First Aid
    If the box marked
              Keep login keychain unlocked
    is not checked, check it.
    Select
              Keychain Access ▹ Keychain First Aid
    from the menu bar and repair the keychain. Quit Keychain Access.

  • I have a brand new macbook with microsoft office loaded. I set outlook as the default mail. i would rather go back to mac mail but can't figure out how to do it. any ideas?

    I have a brand new macbook with microsoft office loaded. I set outlook as the default mail. i would rather go back to mac mail but can't figure out how to do it. any ideas?
    Thanks for any help
    Lou

    I have a similar problem: I switched from mac mail to Outlook 2011 as the default client, and want to switch back. Mailto links (eg from browser etc) default to Mail.  However, when I try to email a Word document as an attachment, it continues to open Outlook.  Outlook has a button in its prefs for making it the default client, but I don't see a way to turn this pref off in either Outlook or in Word.  

Maybe you are looking for

  • No audio on Timeline Premiere Elements 13 and no longer on 12 after upgrading to 13.

    On my Mac with OS X Yosemite I've worked with Premiere Elements 12 for a while and it just worked fine. Now I;ve upgraded to Elements 13 and the clips that were fine the other day have now lost there audio when I put them on the Timeline. However if

  • IUnitOfMeasure returns wrong format on Intel Mac -- CS2 SDK !!

    Hi,<br /><br />I am trying to convert the Point value to the current document measurement system and it is working fine on other Macs except Intel Mac. It is returning some weired trailing decimal values when run on an Intel Mac. Any ideas how to fix

  • Error as follows

    Hi All, I am getting the following error while executing delete statement ... Now how should I proceed? SQL> @del_ctrl_sess.sql Enter value for 1: 424708 old 2: where sess_id ='&1' new 2: where sess_id ='424708' delete from dw_ctrls ERROR at line 1:

  • ITunes has terrible preformance issues

    As iTunes has marched along with its myriad of updates, its performance has progressively gotten worse. It seems every time I upgrade (which is usually unnecessary) iTunes gets slower and slower. When I plug in my iPod it hangs for anywhere between 3

  • Error in posting Inbound IDOC

    Hi Gurus, I am trying to create Vendor by inbound IDOC by  enhancing the standard FM IDOC_INPUT_CREDITOR but IDOC is getting posted with status 51: Status 51: Trans. XK01 record 3 : Data record is not flagged as record type 2