I want to shade a whole day in iCal month (app?)

I've searched and found lots of folks looking to change text and its background, but I want to shade a whole day.  In the month view, I want important days (oh god, jury duty!!) to really stand out. 
Anyone know an add-on, or an app, or any way to do this? I think I've looked at a dozen options, but would love to hear from someone who has actually done this.
In pre-history, on the Pocket PC I bought Agenda Fusion for this kind of thing...  Thx for all answers.

jh2336,
I suppose a programming solution is possible. That is after all, ultimately how Apple will solve the problem if they are convinced to do so by user Feedback.
If you are wondering what to do with a tool, any tool, it would be advisable to learn how to use it before wielding it on anything that comes along.
The Developer Forum is under the Mac OS X Technologies category. You may find out where to learn about using the Xcode 2.4.1 tool in that Forum.
Forum: Software Development 101 would be another good choice.
Good Luck.
;~)

Similar Messages

  • I want to get number of days in the month I've chosen from Timeline slicer.

    I want to get number of days in the month
    I've chosen from Timeline slicer,
    does anyone know how to do?
    The problem I want to solve is to divide
    the number of customer visits as a salesman
    made during a month by the number of
    days in the month.

    Excel 2013 Pro Plus with PowerPivot.
    Count working days per month
    considering weekends and holidays.
    With help from book:
    "Building Data Models with PowerPivot"
    by Alberto Ferrari and Marco Russo.
    Easy. Not.
    http://www.mediafire.com/view/rw78t1y3bg8vm0c/04_10_15.xlsx

  • Want to get the 25th day of every month Date Function

    Dear All,
    i want want to get the 25th day of every month
    like.
    select sysdate from dua.
    Regards

    i want want to get the 25th day of every month By saying 'day', do you mean days like - Sunday, Monday, etc.?
    Why I'm in doubt is 25th of every month will always be 25 like '25-Jan', '25-Feb', '25-Mar', etc...
    In case you need the other way -
    SELECT
                ADD_MONTHS (
                            TRUNC (TO_DATE (SYSDATE), 'YEAR'), LEVEL - 1
                            ) + 24,
                TO_CHAR (
                    ADD_MONTHS (
                            TRUNC (TO_DATE (SYSDATE), 'YEAR'), LEVEL - 1
                            ) + 24
                    , 'DAY')
          FROM DUAL
    CONNECT BY LEVEL <= 12;Output:
    25-Jan-2013     FRIDAY  
    25-Feb-2013     MONDAY  
    25-Mar-2013     MONDAY  
    25-Apr-2013     THURSDAY
    25-May-2013     SATURDAY
    25-Jun-2013     TUESDAY 
    25-Jul-2013     THURSDAY
    25-Aug-2013     SUNDAY  
    25-Sep-2013     WEDNESDAY
    25-Oct-2013     FRIDAY  
    25-Nov-2013     MONDAY  
    25-Dec-2013     WEDNESDAY

  • Shade of current day in iCal

    i used the technique described in this post
    http://discussions.apple.com/thread.jspa?messageID=3470962&#3470962
    to fix the problem of the alarm message coming up offscreen. worked great for me and many others (many thanks). now that i have downloaded this useful (and MASSIVE) app to do the fix, can i also change the shade of the current day? on my laptop, the difference BARELY shows, and i'd like it more distinct. is that a similar fix?
    thanks to you gods of tech.

    jh2336,
    I suppose a programming solution is possible. That is after all, ultimately how Apple will solve the problem if they are convinced to do so by user Feedback.
    If you are wondering what to do with a tool, any tool, it would be advisable to learn how to use it before wielding it on anything that comes along.
    The Developer Forum is under the Mac OS X Technologies category. You may find out where to learn about using the Xcode 2.4.1 tool in that Forum.
    Forum: Software Development 101 would be another good choice.
    Good Luck.
    ;~)

  • How can I copy a whole day?

    I want to copy a whole day worth of activity's to make them repeat. How do I do this?
    I tried command A and click and drag over all the items but that only make a new event.

    Asiago,
    but is there a way to maintain calenders they are under.
    Not that I know of. Selective copy/paste appears to be the only choice.
    The calendar which is highlighted in the source pane will be the calendar which accepts the pasted events. You can use the info window "calendar" field to change the event back to the appropriate calendar.
    ;~)

  • Query to find the fifteenth day of a month

    i want to know the fifteenth day of a month in oracle
    can anyone send the query

    Hi,
    Try this:
    "afiedt.buf" 2 lines, 57 characters
      1* SELECT TO_CHAR(TO_DATE('15-AUG-2006'),'Day') FROM DUAL
    SQL>/
    TO_CHAR(T
    Tuesday
    1 row selected.
    SQL>Regards
    Avinash

  • Getting last days of several months - Bex Analyzer

    Hello, BW experts~
    I need to calculate with last days of several months.
    For example,
    - The sales in July: $100
       -> sales per day in July = $100 / <b>31</b>
    - The sales in last month(June): $100
       -> sales per day in last month(June) = $100 / <b>30</b>
    - The sales in 2 month ago(May): $100
       -> sales per day in 2 month ago = $100 / <b>31</b>
    I used to calculate a last day on a month with a customer exit variable. It works well when executing  the BEx query with one month. But, when executing the query with 3 months, it doesn't work well.
    For example, when executing the query in July, all last days, which are calculated via customer exit variable, become 31. Only one month.
    - Last day -
    July: <b>31</b>
    Last month(June): <b>31</b>
    2 month ago(May): <b>31</b>
    They have to be each 31(July), 30(June), 31(May).
    I want to get fit last days of several months at a time and one BEx query.
    Is it possible? (I wish it's possible.)
    Can I do something in CMOD?
    Thank you~
    Sihyoung Jurn

    Hi,
    You can get it by creating 3 formula variables with 'customer ext' as processing.
    Let us assume user enters the First month by a 'user entry' variable.
    In the code of user exit for 1st formula variable you will calculate the last day of the user entered month.
    In the code of user exit for 2nd formula variable you will calculate the last day of the (prevoius month to user entered month).
    Similarly for 3rd Formula Variable also.
    there will be 3 Restricted key figures.
    one for sales of user entered month.
    2nd one for sales of prevoius month to user entered month.
    3nd one for sales of two month to user entered month.
    you will have 3 calculated kfs.
    in first one you do 1st RKF/Formula variable1.
    in second one you do 2nd RKF/Formula variable2.
    in third one you do 3rd RKF/Formula variable3.
    Hope, you understood my explanation.
    With rgds,
    Anil Kuamr Sharma .P

  • When i try to add music from itunes to my ipod itune tells me the music on my ipod came from a differnt libray and  wants to erase my whole ipod. i just loaded my ipod two days ago. i don't want to replace everything every time i want to add to songs

    When i try to add music from itunes to my ipod, Itune tells me the music on my ipod came from a differnt libray and  wants to erase my whole ipod. i just loaded my ipod two days ago. i don't want to replace everything every time i want to add two to songs. My MacBook Pro is the only autherized computer.

    To prevent a sync when plugging in the iPod/iPhone - hold down the 'option' and the 'command' keys when plugging in the iPod/iPhone - key the keys down until the iPod/iPhone is listed under the Devices list in iTunes - this will prevent a sync from taking place and you will be able to change your settings.
    MJ

  • Want to print the whole month with or without overtime for each employee

    Hi,
    I have Oracle forms/reports10g R2, Below query returns employee overtime correctly but I want to add the whole month with it in simple words if one employee have overtime for five days in a month I want the query to return the whole month including five overtime days for each employee and let say if we have ten employees query return whole month for each employee either he have or overtime or not how can I implement this in report it becomes agony for me, anyone please suggest a solution.
    Thanks and regards, Khawar.
    ---Query---
    select o.ot_date , o.start_dt_time as start_time, o.end_dt_time as end_time, o.ot_details, et.holiday, et.staff_id, e.staff_name, e.desig
    from overtime o, emp_ot et, employee e
    where o.complain_no = et.complain_no
    and o.inc_type_code = et.inc_type_code
    and et.staff_id = e.staff_id
    order by 1, 2, 3, e.staff_id

    Hi Michael,
    Thanks for reply, I think I didn't explain as I should, I want to print Overtime report for each employee let say employee A123 did overtime for five days in DEC than what I want is to print report for employee A123 for the whole month means when I print report blank cell should come where A123 don't have data (I mean other 25/26 days).
    The structure of tables are as
    SQL> desc overtime
    Name Null? Type
    COMPLAIN_NO NOT NULL NUMBER(5)
    OT_DATE NOT NULL DATE
    START_DT_TIME NOT NULL DATE
    INC_REF_NO NUMBER(5)
    END_DT_TIME NOT NULL DATE
    INC_TYPE_CODE NOT NULL VARCHAR2(10)
    DISTRICT_CODE VARCHAR2(6)
    BUSBAR_VOL VARCHAR2(5)
    OT_DETAILS VARCHAR2(2000)
    SQL> desc EMP_OT
    Name Null? Type
    STAFF_ID NOT NULL VARCHAR2(8)
    COMPLAIN_NO NOT NULL NUMBER(5)
    INC_TYPE_CODE NOT NULL VARCHAR2(10)
    HOLIDAY NUMBER
    Each employee associated with primary key i.e COMPLAIN_NO and INC_TYPE_CODE
    in each OVERTIME table record we may have more than one employee in EMP_OT table.
    above detail may clear my query.
    Thanks and Regards,
    Khawar.

  • After update, Photoshop CC 2014 crashes just after launching - a whole day lost between forums and support

    Here in France, it's getting late, 9.45 PM, that is 12 hours after the first crash of Photoshop CC 2014 on my Mac OS 10.9.4.
    Nothing changed on my computer, excepted the PhCC14 update.
    Then I launched the app and it crashed right after displaying the workframe.
    I tried and tried so many things :
    Ashutosh.Nigam suggested me in this forum to change the permissions to SLStore & SLCache Folder, but it did not work.
    Ali from french Adobe support told me to delete my Settings files, but it was not enough.
    A girl with no name from the same team told me to update my graphics card driver, but, you know, I run the latest Mac OS X version and everything is updated, mademoiselle.
    Stephane sent me a link to a huge page of things to do :
    -  Troubleshoot account-specific fonts, but there wasn't any corrupted font
    - Delete account-specific Adobe cache files but... guess what...
    - Troubleshoot account-specific login items but... yes, that's it, I can see you understand me
    - Reset the access settings on the user account's Library folder... oh god, that was fun, I used the Terminal and sudo commands
    - I checked the disk and repaired all permissions...
    I did all of these things because when I tried to open PhCC in an other admin session, it worked. So it could  be an incompatibility between my session and PhCC. But, but, but, when I tried again to lauch the app in the second session, it worked fine but refused to quit. Ha ha ha.
    Last call to the french support : "Désolé Monsieur, you didn't spend 2000 € for a specific help, but because you have lost a whole day of work, we will pay you back 2€. And no, Photoshop won't work anymore on your session. You have to move all your files to a new session."
    It's unfair ! The software was running gently on my session, Adobe change things and I have to break everything on my computer, move every config from one session to another with absolutely no warranty that it won't crash again.
    It's NOT what I pay Adobe CC  each month for.
    Very disappointed Jean-Luc

    Anyone know how to read a crash report? 
    I can print with Lightroom, there is nothing wrong with the printer, or the file.  But I want to print with Photoshop without a crash.  Besides, Lightroom doesn't give me access to all of my print settings.
    Hoping someone can help, I"m exasperated.....

  • I bought my iPhone 5 almost an year ago and since the last 2 weeks my battery lasts about 2 hours or less, while before it lastre a whole day. Can anybody tell me why is this happening or how can i solve my problem, please? Thank you.

    I bought my iPhone 5 almost an year ago and since the last 2 weeks my battery lasts about 2 hours or less, while before it lastre a whole day. Can anybody tell me why is this happening or how can i solve my problem, please? Thank you.

    You can follow these steps to save battery.
    1. Turn on Auto-Brightness - The iPhone has an ambient light sensor that adjusts the brightness of the screen based on the light around it (darker in dark places, brighter when there's more ambient light) to both save battery and make it easier to see. Turn Auto-Brightness on and you’ll save battery because your screen will need to use less power in dark places.
    Find it in the Settings app -> Brightness & Wallpaper -> Auto-Brightness On
    2. Reduce Screen Brightness -the brighter the default setting for the screen, the more battery it requires. Keep the screen dimmer to conserve more of your battery.
    Find it in Settings -> Brightness & Wallpaper
    3. Stop Motion (iOS 7) -It's really cool, but it also drains battery. You may want to leave it on to enjoy the effect, but if not, turn it off this way: 
    Settings -> General -> Accessibility -> Reduce Motion -> move slider to green/on
    4. Turn Bluetooth Off-  Turn off Bluetooth except when you’re using it to squeeze more juice from your battery.
    Find it in Settings -> Bluetooth -> Move Slider to Off
    5. Turn Off Location Services -
    This allows your phone to know where you are and give you exact driving directions, give that information to apps that help you find restaurants, and more. But, like any service that sends data over a network, it needs battery power to work. If you’re not using Location Services, and don’t plan to right away, turn them off and save some power.
    Find it in Settings -> Privacy -> Location Services -> Slide to Off
    6. Don't Automatically Update Apps (iOS 7)-
    If you've got iOS 7, you can forget needing to update your apps by hand. There's now a feature that automatically updates them for you when new versions are released. Convenient, but also a drain on your battery. To only update apps when you want to, and thus manage your battery better:
    Settings -> iTunes & App Store -> Updates -> move slider to off/white
    7. Auto-Lock Sooner -
    You can set your iPhone to automatically go to sleep – a feature known as Auto-Lock - after a certain amount of time. The sooner it sleeps, the less power is used to run the screen or other services. Try setting Auto-Lock to 1 or 2 minutes.
    Find it in Settings -> General -> Auto-Lock -> Tap your Preference
    Few more things that would consume battery even when not is use are the applications that run in background.
    Follow the below steps to quit all running applications.
    1) Double tap on the home button on the iPhone ( this will display all apps that are running in the back ground).
    2) Just click on the tiny red X to quit application ( if iPhone is running on iOS 6 and below) else just swipe yhour finger over the running app upwards to quit ( if running on iOS7).

  • Using my macbook pro whole day with the power adapter , will it affect my battery? Please help

    Using my macbook pro whole day with the power adapter , will it affect my battery? Please help

    It doesn't affect the battery. You can use your MacBook Pro plugged in all the time without damaging the battery. You only have to be sure that you unplug it and run a battery cycle (drain the battery without letting the Mac turn off and charge it fully) at least once a month to keep the battery life.
    If you want more information about your battery > http://www.apple.com/batteries/notebooks.html

  • Outlook 2003 "whole day" events not synced properly

    Hi everybody
    I just figured out a little problem with some calendar entries:
    The following:
    I have some birthdays in my calendar, for example one on 1979/04/07 it's entered as a "whole day" (i run my PC in German so I don't know the proper term in English) event and a series-type starting in 1979, taking place every year from then on. Because she is born then...
    After syncing the the iPhone, the event in the iPhone calendar starts on the 7th of April but only on 2300h and ends on the 8th of April on 2300h. The event is not of the "whole day" type.
    What I did figure out so far, was that if i do not start the "appointment" in 1979 it is, indeed, synced properly. But that is not really what i want.
    Another, starting 1980/06/27, similar properties, works just fine...
    Any idea? Are there some fellows of Apple's in this forum?
    My timezone on the PC is GMT+1 (Zurich) and on the iPhone as well.
    Thanks a lot.
    el_engineer

    Hi Jason
    I just tried a whole bunch of possibilities, but none of them works. It seems that the problem only occurs with appointments during the daylight savings time. But unfortunately not with all between march and october...
    But, got it: Just studied the introduction of daylight savings time in Switzerland and figured the key issues out.
    DST was introduced in 1941 and abandoned after '42. Reintroduction took place in 1981 only.
    Thus all the appointments before introduction of DST in my calendar ar shifted by one hour.
    I think this might be a bug in the iPhone since they are right in Outlook...
    Anybody an idea how to get this to Apple's developers?
    Thx a lot
    el_engineer

  • How can I see the whole day in day view without scrolling?

    I'm using iCal 4.0.4 on my MacBook. I'd like to see the whole day of events without having to scroll down. Right now I can only see about 5 hours at a time. I've set the day to start at 8am to midnight. Is there a way to see 12-16 hours at a time with no scrolling?

    Hi,
    Go to iCal > Preferences General. If I remember correctly there should be a "Show XX hours at a time" option there.  There certainly is in version 6.0.
    Best wishes
    John M

  • I want the minimum of the horizontal axis to be the first day of the month.

    I have a situation where I want the minimum of the horizontal
    axis(with date time axis) to be the first day of the month. I
    attempt it like so:
    var max:Date = new Date();//current date is our max from
    which we will calculate the min
    var min:Date = new Date(max.fullYear,max.month,1);
    dateTimeAxis.minimum = min;
    However this first date on this axis is the last day of the
    previous month for example 31 August instead of 1 September. Any
    ideas how to fix?

    Nikos, the only thing I can think of (off hand) is that it's
    defaulting to "zero" hour on that date, if you tried:
    var min:Date = new Date(max.fullYear,max.month,1,13);
    Would that make it work? That would set the date to 1pm.
    Have you considered defining the axis with the data you are
    binding to?
    Cheers,
    David

Maybe you are looking for