Need more color choices in New Event!

When I create a New Event, I have 3 colors to choose from. Green, yellow, & red. How can I create or change the color? I should be able to figure this out!
Does anyone else know how?
Thanks,
Larry

Do you have 3 calendars of those colours? If so, then the way to create more available colours is to have more available Calendars, although I wish the default colour spectrum available was a bit more varied.
If not, do you mean that you can't find any more colours to select? Try right-clicking on the calendar item in the calendar list, select "get info", find the colour selector pull-down at the upper-right of the dialogue, and scroll down to "others…" at the bottom of the list. The colour selector that pops up will let you go nuts with system-wide palettes.

Similar Messages

  • How do you date and time stamp iCal entries?  We share an event calendar and need to know when a new event was entered into iCal.

    How do you date and time stamp iCal entries?  We share an event calendar and need to know when a new event was entered into iCal.

    BKBK,
    Thank you for your response. That does adequately cover the
    client-originated sessions, but still leaves the ability I am
    looking for unavailable.
    It did serve to definitively answer my most pressing
    question, however, with this statement:
    Note: ColdFusion cannot create a session if an initiator
    application uses a SendGatewayMessage method to start an
    interaction with a client, such as an SMS user. In this case, the
    sending code must keep track (for example, in a database) of the
    messages it sends and their destinations. When a response event
    arrives, it can look up the origniatorID to determine whether it
    was in response to an outgoing message.
    I will play around with the Application scope to see if there
    might be a workable solution there.
    RLS

  • HT5839 Need more colors for tags than the 7 colors in Finder Preferences

    Is there a way to  get more colors than the 7 colors now standard in Finder? I have nearly 12 categories and I would each to have a distinctive color.
    There could be more than one shade of each color, for example.
    Thank you

    You can't select a color at all in the File Save/Get Info dialog. You have to set them in the Finder Preferences as I showed above. You can choose from the list of already defined Tags, or you can type in a new one.
    If you want that new tag to have a color associated with it, go to Finder Preferences and select the color like I displayed (and you also did).
    Here is a link to lots of You Tube videos on using Tags. I looked at the first one from iMore and she demonstrated one way to change the color of a Tag by using the Sidebar. You can also change it in the Finder Tags Preferences as I've already stated.
    using tags in Mavericks you tube

  • Is there anyway to change/add more highlighter colors in Preview? I need more colors aside from those already provided in the app.

    I'm a law student and I use the preview app extensively for reading cases. I need more highlighter colors aside from those already provided and it seems that there's no possible way of adding/changing the colors.

    Unlike Preview, the Adobe Reader application allows you to change PDF highlight (comment) text colors via a standard Apple color chooser. Click Tools on the Reader Toolbar, and then Comment. The second button in the Comment Annotation section is highlight text, and defaults to canary yellow.
    Highlight the document text, and then two-finger tap/control-right-click that highlighted text. On the contextual menu, you will see Properties…. The properties panel has a color well set to yellow. Click this color well, and a standard Apple color chooser will appear that allows you more creative control over your highlight color. When you click a color in the color chooser, it is not automatically updated in the color well, which remains dark grey. When you quit the color chooser, the selected color is updated in this color well and in your document. The next text that you select to highlight will receive a default yellow highlight.

  • Since update calendar colors show up as colored dots only, no more coloring the typed in event. Help

    Need calendar help. Since iOS 7 update can no longer use different calendar colors to hilite typed in event. They only show up as little dots next to event. This is worthless

    I know your issue was long ago...but I found that the dots show up with specific time frames and the solid colors are for "all day" events.

  • Need more options to add new email address

    Most of my setup works perfectly.
    However, one of my email accounts requireds the [email protected] as a username for login rather than simply name. The result is that I get the error: "Unable to connect to the server. Please try again later." when I try to add the email account.
    The workaround I use at the moment is to use an incorrect domain.com part for the original email address. The setup process then allows me to enter the mail server names and ports specifically. I can now receive pushed email on my phone.
    However, when I try to send email from that account, the mail is rejected by the mail server since the "from" email address doesn't exist (since the domain.com I used is invalid.)
    I REALLY would like to be able to specify all settings manually right from the start of the setup process in an "advanced setup" step. Give me the control to enter what I want, and leave the simple automatic works-most-of-the-time-for-most-people approach for those who don't need to flexibility.
    Solved!
    Go to Solution.

    I enter in my correct details on the "add new account" page.  I get the same error "Could not connet. Please try later".  Then enter this address into the browser  https://email.nokia.com/account/addEmailMoreInfoNoCorpSupport.action
    (note, the first part of this link should be the same as the address in the bar BEFORE you type this.  If your address doesn't start with email.nokia.com then replace that with whatever you have)
    This takes you to the manual settings screen where you can enter all the settings, but with the correct email address in the annoying read-only field!
    Dear Nokia - can this have been so hard to allow in the first place? 
    Message Edited by dazz19 on 29-Aug-2009 08:44 AM

  • Need More Mouse Events

    [http://forums.sun.com/thread.jspa?messageID=10811388|http://forums.sun.com/thread.jspa?messageID=10811388]
    During search over net I found the above thread and it seems to be describing the same problem which I am also facing. For my application also I need to capture all the mouse events while dragging. I tried the soluiotn mentioned at this thread to solve this problem by overrinding the below method in several ways:
    protected AWTEvent coalesceEvents(AWTEvent existingEvent,AWTEvent newEvent);
    Even after several attempts, I could not succeed. Can you please suggest how to do that. I was not able to reply to above thread so creating this new thread.
    Thanks

    I wanted to see if a timer based approach does indeed produce a smoother curve than just simply listening for mouse drag events. What I came up with below was the resulting test code. Lo and behold, using a timer does indeed produce a smoother curve. But it wasn't because it was capturing more mouse positions, it was because it was capturing less. Ain't that a kicker? Another interesting thing is that according to the source code, coalesceEvents is a no-op. The documentation, however, would have you believe that it coalesces mouse events as I thought it did.
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.GeneralPath;
    import javax.swing.SwingUtilities;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.Timer;
    import javax.swing.BorderFactory;
    public class Test {
        private static class TimerBasedPanel extends JPanel implements MouseListener {
            private GeneralPath line;
            private Timer mousePosQuerier;
            private Component mouseEvtSource;
            private int pointCount;
            public TimerBasedPanel(Component mouseEventSource) {
                mousePosQuerier = new Timer(15, new ActionListener() {
                    Point lastMousePoint = new Point(-1, -1);
                    public void actionPerformed(ActionEvent e) {
                        Point p = MouseInfo.getPointerInfo().getLocation();
                        if (p.x != lastMousePoint.x || p.y != lastMousePoint.y) {
                            lastMousePoint.setLocation(p);
                            SwingUtilities.convertPointFromScreen(p, mouseEvtSource);
                            line.lineTo(p.x, p.y);
                            pointCount++;
                            repaint();
                mouseEvtSource = mouseEventSource;
            public void paintComponent(Graphics g) {
                super.paintComponent(g);
                if(line != null) {
                    ((Graphics2D) g).draw(line);
            public void mousePressed(MouseEvent e) {
                line = new GeneralPath();
                line.moveTo(e.getX(), e.getY());
                pointCount = 1;
                mousePosQuerier.start();
            public void mouseReleased(MouseEvent e) {
                mousePosQuerier.stop();
                repaint();
                System.out.println("Timer Based, Points Captured: " + pointCount);
            public void mouseEntered(MouseEvent e){}
            public void mouseExited(MouseEvent e){}
            public void mouseClicked(MouseEvent e){}
        private static class DragEventsPanel extends JPanel
                implements MouseListener, MouseMotionListener{
            private GeneralPath line;
            private int pointCount;
            public void paintComponent(Graphics g) {
                super.paintComponent(g);
                if(line != null) {
                    ((Graphics2D) g).draw(line);
            public void mousePressed(MouseEvent e) {
                line = new GeneralPath();
                line.moveTo(e.getX(), e.getY());
                pointCount = 1;
            public void mouseDragged(MouseEvent e) {
                pointCount++;
                line.lineTo(e.getX(),e.getY());
                repaint();
            public void mouseReleased(MouseEvent e){
                System.out.println("DragEvent Based, Points Captured: " + pointCount);
            public void mouseEntered(MouseEvent e){}
            public void mouseExited(MouseEvent e){}
            public void mouseClicked(MouseEvent e){}
            public void mouseMoved(MouseEvent e) {}
        public static void main(String args[]) {
            JFrame frame = new JFrame();
            JPanel drawPanel = new JPanel() {
                @Override
                protected AWTEvent coalesceEvents(AWTEvent existingEvent,
                                                  AWTEvent newEvent) {
                    if(newEvent.getID() == MouseEvent.MOUSE_DRAGGED) {
                        return null;
                    }else {
                        return super.coalesceEvents(existingEvent, newEvent);
            TimerBasedPanel timerPanel = new TimerBasedPanel(drawPanel);
            DragEventsPanel dragPanel = new DragEventsPanel();
            drawPanel.setBorder(BorderFactory.createTitledBorder("Draw here"));
            timerPanel.setBorder(BorderFactory.createTitledBorder("Uses a timer"));
            dragPanel.setBorder(BorderFactory.createTitledBorder("Listens for drag events."));
            drawPanel.addMouseListener(timerPanel);
            drawPanel.addMouseListener(dragPanel);
            drawPanel.addMouseMotionListener(dragPanel);
            frame.setLayout(new java.awt.GridLayout(0,3));
            frame.add(drawPanel);
            frame.add(timerPanel);
            frame.add(dragPanel);
            frame.setSize(600,200);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setVisible(true);
    }Edited by: Maxideon on Sep 16, 2009 9:56 PM
    Minor error, but now fixed.

  • HT1918 I'm having some issues trying to change my account billing---I have a new debit card and i need to punch in the new number but when i go to edit my info itunes says my 'session has timed out.' i've logged in and out more than once. what's the probl

    i'm having some issues trying to change my account billing---I have a new debit card and i need to punch in the new number but when i go to edit my info itunes says my 'session has timed out.' i've logged in and out more than once. what's the problem?

    Try to change the credit information from your iphone or other ios device. Tap on settings > store > tap Apple ID > tap view account > tap payment information > change

  • Opinions - time for a new computer?  need more RAM, Time Machine back up full - get new computer?

    I am in a quandary.  My early 2008 iMac needs more Ram.  I could upgrade from 2gb to 4gb for around $60.  My 1T external hard drive for Time Machine is full and I do not relish the idea of it erasing old data if I continue to use it this way, but then I am shelling out more money for a new hard drive.  Can get new 3T hd for about $200.  Is it worth it to shore up my computer?  I have recently upgraded OS to ML and it is really starting to act sluggish.  I hate the idea of having to transfer everything over to a new Mac and therefore new OS.   I need a working computer every day for business for my husband, so it would be impossible to go without a computer while things are being transferred over - and how long would it take for me to do that.  Plus, will files and photos be transferred over exactly as I have organized them?  I have spent a lot of time organizing bookmark folders in Safari, mailboxes in Mail and albums and folders in iPhoto.  Don't want to start from scratch again.   Also don't like the idea that the new iMacs don't have a slot for dvds and cds, playing and burning.  I do a lot of this kind of thing.  So then I would need to buy a separate thing for doing this as well as the computer itself.  Have wondered how many things have changed from ML to Maverick.  Another big learning curve???
    Would really appreciate any thoughts and opinions.  I am a senior citizen and don't know how to sort through this.  One thing I think about is that I don't know how much longer I will be living and able to do computer work. I know everything is a risk, but would like some advice even if it is only an opinion.

    It's probably time for a new machine. You won't have to start from scratch. Migration Assistant will bring over all of your data and apps (some may need to be re-activated using product keys). Depending on how much you actually have, a few hours should be all it takes over Ethernet.
    Time Machine should continually erase the oldest backups when it needs space for new ones.
    You might want to do both. Upgrade the RAM in the old machine to the max it will take, and buy a new machine as well. If your husband really needs a machine available all the time for business, having a 'spare' is a good thing.
    Check out what's available in the refurb store. They are virtually indistinguishable from new retail stock and come with a full warranty. You can save hundreds.
    http://store.apple.com/us/browse/home/specialdeals/mac

  • New to SAP PI, I need more information on SAP PI Topics

    Hi Guys,
    I'm New to SAP PI, I need more information on SAP PI Topics which are related to Development and configuration.
    i have gather some information please add more topics and major scenarios if i missed out.
    SAP PI Topics:
    1.     Mapping
    u2022     Standard Functions
    u2022     User-defined Functions
    u2022     Message Mapping
    u2022     Multi-Mapping
    u2022     Java, XSLT mapping overview
    2.     Business Process Management
    u2022     BP Modeling
    u2022     BP Engine
    3.     Design and Configuration
    u2022     System Landscape Directory
    u2022     Enterprise Services Repository
    u2022     Integration Directory
    4.     Runtime
    u2022     Integration Engine
    u2022     Different installations of Adapter Engines
    u2022     Runtime Workbench / Monitoring
    u2022     Architecture
    5.     PI as Component of SAP NetWeaver
    u2022     Positioning
    6.     Overview and Basic Concepts
    u2022     Adapters & J2EE Adapter framework
    u2022     Business Process Management
    u2022     Mapping
    7.     Adapters
    8.     Technical Connectivity for communication with SAP and non-SAP systems
    u2022     File/FTP(S) (File Systems / FTP Servers)
    u2022     JDBC (RDBMS systems)
    u2022     JMS (Messaging systems, e. g. MQSeries, SonicMQ)
    u2022     SOAP (Web Services based on SOAP)
    u2022     WS-RM (Web Services based on WS Reliable Messaging)
    u2022     HTTP_AAE Adapter
    u2022     Plain HTTP(S)
    u2022     Mail (Mail Servers via SMTP, IMAP4, POP3)
    u2022     SAP Business Connector (SAP BC)
    u2022     Marketplace (SAP Marketplaces)
    9.     Application Connectivity
    u2022     RFC
    u2022     IDOC_AAE Adapter
    u2022     IDoc
    u2022     Proxy (ABAP and Java)
    10.     SAP Industry Business Packages (contain adapters and content)
    u2022     RNIF 2.0 (RosettaNet)
    u2022     RNIF 1.1 (RosettaNet)
    u2022     CIDX (RNIF 1.1)
    11.     Advanced Adapter Engine Extended u2013 AAE
    u2022     PI as Infrastructure for Service Oriented Architecture (SOA)
    SAP PI Scenarios:
    u2022     SOAP to JDBC scenario
    u2022     RFC to FILE scenario
    u2022     Multiple IDOC's to File scenario
    u2022     File to File scenario
    u2022     File to RFC scenario using BPM
    u2022     File to JDBC scenario
    u2022     Idoc to File scenario
    u2022     Abap Proxy to XI scenario
    u2022     Idoc Flatfile to Idoc XML Scenario

    You may search for all basic topics on SCN and you will get required information. Such basic questions should be searched before posting. Thread locked.
    Regards,
    Prateek Raj Srivastava

  • I have an 8gb iPhone 4 and i need more space, is there a way to get more space rather then buying a whole new phone?

    I have an 8gb iPhone 4 and i need more space, is there a way to get more space rather then buying a whole new phone?

    No. Sell the 8gb and buy one with more capacity.

  • How do i get that little pop up menu with all the editing choices on it that i used to get?  Is there a way to get the editing box to pop up as I make a new event instead of editing an event after i just made it ??????

    How do i get that little pop up menu with all the editing choices on it that i used to get?  Is there a way to get the editing box to pop up as I make a new event instead of editing an event after i just made it ??????

    Michal,
    iCal Help is a good place to start. Here are a couple of examples:

  • IBP 4.0 FP1 Patch 2 - Need more info on new features in Supply Planning

    Hi All,
    I was reading the SAP help and some of the new features are not very clear to me, if you have clarity around it please read and help me to get more clarity.
    As per SAP Help,The following features are now available in IBP for supply:
    Separate lead time units of measure can be defined for use in multiple planning areas depending on different time granularities.
    My Query - Where do we define it? I do not see any additional attribute in the MDT where lead time is present but don't see any attribute to define lead time units or any other different settings in the planning area so how can we define this?
    Static periods of supply are taken into account as input for the inventory target, with projected periods of coverage provided as output.
    My Query - What exactly has changed and which are the new key figures here to support this? I could not understand this from reading the above text.
    Independent demand is taken into account as input at the product location, in addition to the distribution demand from other nodes and customer demand.
    The optimizer algorithm supports the Non-Delivery Cost Rate key figure as input for the independent demand at the product location.
    My Query - A new key figure "INDEPENDENTDEMAND" is available now @PERPRODLOC so first point is very clear but second point is very confusing to me as "Non delivery cost rate" is only defined @PERPRODCUST so how we will define the non delivery cost rate for independent demand which is at different planning level and if we are not able to define it how optimizer algorithm will support it? Ideally it needs to be at same level like consensus demand and Non delivery cost rate both @PERPRODCUST Level.
    Thanks
    Girish

    Hi Mark,
    While I'm not in your list of people to respond I figure I give it a go anyways :-)
    The list of features you mentioned is a nice summary. One of the main release themes is data quality as you noticed. Apart from changes to the name&address functionality we also added the advanced matching and merging into this release. So you can use custom rules to match and merge data. This also allows you to do things like householding for customer data records. In essence we have now completed the integration of Pure*Integrate into Warehouse Builder.
    The mapping debugger is another big thing. This allow you to walk through your mappings and see in detail what happes to the data.
    The metadata change management is now in the UI. THis means there is now object level version management in Warehouse Builder via the UI. You can also compare versions and get a difference report.
    As you mentioned there are a number of smaller and bigger features next to this. The idea for this release is to make OWB a top Data Quality product and allow you to do your ETL and DQ in one tool. Apart from that we have added usability features (debugger, N&A wizard) and we have added some features to solve specific problems.
    Especially the corelated commit is interesting in that respect. You can now, in a map with multiple targets control the commit, and choose to either commit all targets or none, or commit them individually (current behavior).
    As usual there is a lot more, as this is indeed a major release. Keep an eye on OTN for more collateral regarding the new features. We are currently updating the site to reflect the new stuff.
    On the OLAP patch, both 9.0.4 and 9.2 will work equally well with the OLAP patch (when it is available). In 9.2 we added some small thing around composites. More about that when there is an OLAP patch to test this one on in a customer site.
    I hope this answered the question, if not let me know.
    Jean-Pierre

  • When I plug in a Lexar thumb drive, I get a "USB Low Power Notice' saying it cannot operate because it needs more power than is available.  This is new.  Thumb drives worked last week.  Any suggestions?  Is this an apple or a Lexar issue?

    When I plug in a Lexar thumb drive, I get a "USB Low Power Notice' saying it cannot operate because it needs more power than is available.  This is new.  Thumb drives worked last week.  Any suggestions?  Is this an apple or a Lexar issue?

    Apple intentional, use a powered USB hub instead.

  • Hi, I'm creating an iphoto book and need more design options.  Someone said I had a program called "Keynote" on my new imac.  Is that true, and if so where is it?    Thanks    e is it

    Hi, I'm creating an ibook in iphoto and need more design options.  Someone said there was a program called "Keynote" on my new imac.  If so, how do I find it?

    This application is very well available, just not preinstalled on your mac.
    It costs $19 dollars on the Mac app store and is worth every penny.

Maybe you are looking for

  • Project Resource Weekend Allocation

    I have built up a large number of independant projects that are currently active in my department.  Each was completely individual until this week when I decided I needed a single resource pool, which would allow me to easily see how my resources are

  • How to save data on a graph and then add new data to it

    i am currently plotting data on a graph from a physical system. However when i want to add new data to the plot, the old one is replaced. I am trying to do more than one plot on the same graph, where the incoming data is at different times. I want so

  • Continue button after failure result

    Hello, I want to set the quiz to make the student review the course before retaking the quiz, so I have set off the 'retake quiz' button, set the "failure" setting to jump to slide starting the course. So, continue button on the results slide jumps t

  • Complines in eclise but not through unix terminal

    Hey everybody, I can run my program in Eclipse but when i try and run it through the unix terminal. Everything is find in eclipse but when i try and compile it through the unix terminal, i get this error: "Syntax error, parameterized types are only a

  • Up-to-date check on genInterface ant task

    I have been using the genInterface ant task to generate a java interface from a WSDL file. Works great, except that eventhough my wsdl file does not change it regenerates the interface every time and then since the java file got touched, forces a nee