Print out my calendar

Anybody know how to print out the calendar in iCloud?  I need to have it for tax purposes as all my business appts and travel are on it. Thanks!

You can only print from the iCloud website if you take a screenshot (command-shift-3 for the entire screen or command-shift-4 and select the area to save).
You would do better to print from iCal, but your signature says you have 10.6.8 - if this is true you cannot sync your calendar (other than by a hack which may or may not work). If you do have Lion please amend your signature.
The 'hack' is detailed here:
http://hints.macworld.com/article.php?story=20111014102515403&msg=15

Similar Messages

  • TS4118 When I print out my ical calendars, there are three duplicate events happening every day of the week and I never entered this event?

    When I print out my calendars from ical, there is one event that is reoccurring 3x/day/every day of week! It is not showing on the actual calendar and I cannot figure out how or where it's coming from? It's in the calendar marked Jimmys action which just shows my sons activities and for this activitiy, I put one day with a recurring weekly on just two days of the week at a specific time and this is showing up as well and correctly? What should I do to remedy this?

    UPDATE: I think I found the answer to my problem. I travel between two time zones and recently started listing event times as "floating" so they don't get messed up when I travel between west and east coasts. It seems that when I want to print out a calendar sheet, the time of the event doesn't show up if it's a "floating" event. So, I need to go back to putting a time zone in and turning off "time support" in Preferences for iCal. BTW this (in reverse) is a solution for those who don't want to see appointment times printed out – make it a "floating" event.

  • Calendar print out with telephone link

    Hi everyone!
    We have a strange calendar-print out Problem.
    We are running GW 2012SP2 on the Client and GW 2012sp1 on the backend.
    Default compose view is set to "plain text"
    If a User creates a posted appointment in plain text and writes a number
    (like a telephone number) in the message field with further
    text the number is converted to a kind of "telephone link". OK - but if
    we want to print out the calendar
    in "expandable day calendar" format with message content the output is
    not correct.
    Somtimes the code of the link is part of the output or the text after
    the "telephone link" is missing.
    Can anyone duplicate this?
    As a workaround we found either to compose the appointment in HTML or to
    delete the "telephone link" manually.
    Is this a known bug?
    thanks in advance
    Wolfgang

    Hi Wolfgang,
    Let me do some testing and see what I can come up with
    Cheers,

  • How to use Applescript to print out a certain calendar at 7am every morning?

    Hey guys,
    I am trying to use AppleScript to print out one of my calendars each day at 7am every morning.
    I have come up with this so far:
    tell application "Calendar"
           view calendar "My Appointments" at (my (current date))
           switch view to day view
           activate
                        tell application "System Events"
                     keystroke "p" using command down
                     delay 1 -- (seconds)
                     tell process "Calendar"
                                                      tell window "Print"
                                                                     if value of checkbox "Calendar Keys" is not 0 then
                                      click checkbox "Calendar Keys"
                               end if
                                                      end tell
                                       end tell
                        end tell
    end tell
    The problem with this is that it will print out whatever calendars are currently viewable. I can't figure out how to tell it to deselect other calendars and just select the one I want. I also want to tell it to print this out at 7am every morning.
    Any help would be very appreciated!

    If you wanted to do the printout over multiple days, you would be best to loop through each day's events in the way the current script does, but to put a new loop around it that gets each new day's data:
    --opens a temporary file
    set fileRef to open for access ((path to desktop) as string) & "meetings.txt" with write permission
    --effectively empties the file
    set eof fileRef to 0
    tell application "Calendar"
              set dayCount to 9 --this will be the number of days to look forward (not including today)
              repeat with currentDay from 0 to dayCount
                        set startList to {}
      --get's today's date
      --set startRange to ((current date) + 12 * days) -- I used this for testing, to point to a day that had many appointments.  I've left it so you can use it, too.
                        set startRange to ((current date) + (currentDay * days))
      --set the start of the range to previous midnight
                        set hours of startRange to 0
                        set minutes of startRange to 0
                        set seconds of startRange to 0
      --set end of the range to next midnight
                        set endRange to (startRange + 1 * days)
      --get today's events
                        set todaysEvents to get (events of calendar "My Appointments" whose (start date is greater than startRange) and (end date is less than endRange))
      --make a new list with start time of the event for sort purposes
                        repeat with theEvent in todaysEvents
                                  set end of startList to {startdate:start date of theEvent, eventID:theEvent}
                        end repeat
      --sort using a bubble sort (suitable for short lists)
                        repeat with i from 1 to (count of startList) - 1
                                  repeat with j from i + 1 to count of startList
                                            if startdate of item j of startList < startdate of item i of startList then
                                                      set temp to item i of startList
                                                      set item i of startList to item j of startList
                                                      set item j of startList to temp
                                            end if
                                  end repeat
                        end repeat
      --empty the original list
                        set todaysEvents to {}
      --repopulate the list in correct chronological order
                        repeat with theEvent in startList
                                  set end of todaysEvents to eventID of theEvent
                        end repeat
      --write today's date to the file
      write (date string of startRange & return & return) to fileRef
      --if there are no events, write this to the file as well
                        if length of todaysEvents is 0 then
                                  write "No events" & return & return to fileRef
                        else
      --process each event into format: hh:mm-hh:mm/new line/event summary
                                  repeat with theEvent in todaysEvents
                                            set startdate to start date of theEvent
                                            set enddate to end date of theEvent
                                            set startHours to hours of startdate as string
                                            if length of startHours is 1 then set startHours to "0" & startHours
                                            set startMins to minutes of startdate as string
                                            if length of startMins is 1 then set startMins to "0" & startMins
                                            set starttime to startHours & ":" & startMins
                                            set endHours to hours of enddate as string
                                            if length of endHours is 1 then set endHours to "0" & endHours
                                            set endMins to minutes of enddate as string
                                            if length of endMins is 1 then set endMins to "0" & endMins
                                            set endTime to endHours & ":" & endMins
      --write the event to the file
                                            set theSummary to (starttime & "-" & endTime & return & summary of theEvent & return & return) as string
      write theSummary to fileRef
                                  end repeat
                        end if
      write return to fileRef
              end repeat
    end tell
    --close the file
    close access fileRef
    --print the file
    set theFile to (((path to desktop) as text) & "meetings.txt") as alias
    tell application "TextEdit"
              print theFile without print dialog
    end tell

  • In setting up my ICal calendar I have specific times (as new events) that I want to be included in the print out.  This doesn't happen.

    In setting up my ICAL calendar I have specific times (as new events) for each day.  When it prints out the time does not show up (rather its a bar).  I would like the time for each appointment to print out. How do I do this?

    These are two possible approaches that will normally work to move an existing library to a new computer.
    Method 1
    Backup the library with this User Tip.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Restore the backup to your new computer using the same tool used to back it up.
    Keep your backup up-to-date in future.
    Method 2
    Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
    Both methods should give the new computer a working clone of the library that was on the old one. As far as iTunes is concerned this is still the "home" library for your devices so you shouldn't have any issues with iTunes wanting to erase and reload.
    I'd recommend method 1 since it establishes an ongoing backup for your library.
    Note if you have failed to move contacts and calendar items across you should create one dummy entry of each in your new profile and iTunes should  merge the existing data from the device.
    If your media folder has been split out from the main iTunes folder you may need to do some preparatory work to make it easier to move. See make a split library portable.
    Should you be in the unfortunate position where you are no longer able to access your original library or a backup then then see Recover your iTunes library from your iPod or iOS device for advice on how to set up your devices with a new library with the maximum preservation of data.
    tt2

  • How can I print out specific categories on my outlook calendar

    After downloading latest version of Icloud. I am not able to print out specific categories on icloud calendar

    I tried this Finder drag method & discovered that it is very important to set the blank TextEdit document to plain text before the drag (from the format menu or with Cmd-shift-t). If you don't, TextEdit attempts to load the content of the files!
    Once I discovered this, I tried the method with Find (Cmd-F) results & it works for that, too. This means that by choosing the right combination of search location(s) & search criteria, you can extend the method to filter the list to just about any files you want, which could be very handy.
    For instance, set the "Kind" criteria to "QuickTime Movie" & location to "Computer" & you get a list of every QT movie. Or set the search location to the folder containing the movies of interest & you get all of them, including ones in subfolders. You could also use the 'date created' or other search criteria to filter the list to a specific subset of movies (or whatever).
    If you need to do this often, you could create one or more 'Smart Folders' with the criteria preloaded for each search.
    The only drawback I see for either Finder based method is the full path one. If you are getting results from just one or a few folders, Find & Replace can delete any of the path name fairly easily, but it becomes a chore if there are a lot of different ones. Some other text editor, like TexEdit Pro, that supports grep searches would be handy here, but since I'm not up to speed on grep, someone else will have to explain how to use it for this, if they want.

  • How can i print out calendars ...

    I have a mac that cannont carry lion so I cannont access icloud except on the web site. Still, I need to be able to print out calendars the way I did with icalendar. Is there a way of doing that?

    http://guides.macrumors.com/Taking_Screenshots_in_Mac_OS_X
    Print them as you would any other document, by choosing Print from the File menu in whatever program you use.

  • How can I print out a daily, weekly and or monthly calendar?

    I am a busy person and find if I can print out my weekly calendar and have it nearby I can quickly plan my time better.
    Lorrene

    Assuminh your profile is correct that you are running OS X 10.5.8, you need the version of Pages from iWork 09.
    Try to find the CD for it on eBay
    Allan

  • HT4968 Can I print out my iCloud Calendar?

    I use my calendar for my whole family but only some of us have access to iCloud (younger members do not have smart phones). I would like to print out a weekly calendar for posting in a central location.
    When I simply use ctrl-P, I get a useless version without the full formatting to make it readable.
    How can I print out a copy that looks like what I see on my screen?

    If you are syncing the calendar with Outlook, print it from Outlook.  If not, try taking a screenshot and print the image.

  • GMT Calendar printing out time as IST

    Can anyone tell me why the following is happening please. I know there are always people asking about dates/times/timezones etc but i haven't seen anyone with this problem. so i'll ask it.....
    I'm creating a calendar with the GMT timezone. If the calendar is set to a date that is in daylight savings time it prints out the date with the timezone IST, but if the date is not in daylight savings time the date is GMT.
    How can i make it print the date with GMT ?
    I'm in Dublin, working on NT, with jdk1.3.1
    here's the code snippets if it helps:
    String time = "2003.08.13 AD 11:10:00.802 GMT";
    Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
    SimpleDateFormat sdf = new SimpleDateFormat("yyyy.MM.dd G HH:mm:ss.SSS z");
    Date temptime = sdf.parse(time);
    cal.setTime(temptime );
    temptime= cal.getTime();
    System.out.println("temptime = "+temptime);
    And here's the output:
    Wed Aug 13 12:10:00 IST 2003

    Hi "mazzam3",
    If you look at the source code for the "SimpleDateFormat" class, you will see that it uses the default time zone. So even though you have ensured that your "Calendar" instance is using the correct time zone, your "SimpleDateFormat" instance is not. What I usually do is set the default time zone for the JVM before I start working with dates and times -- that way I know that all date and time related classes are using the same time zone. So I guess in your case, I suggest setting the default time zone to GMT.
    Hope this helps.
    Good Luck,
    Avi.

  • How can I print out iCal monthly calendars for my planner?

    MacBook Pro 17"
    Intel chip
    OSX 9.6
    Is there any way to print out my iCal monthly pages to make my own planner book?
    I looked at a third party app called iPlanner and it purports to do what I want, but it's old and has mixed reviews. I cannot believe that there is not that function built into iCal. Please advise. Thanks you much.

    You should design you front panel to more closely match the aspect ratio of the paper.
    A possible solution would also be to create a special subVI with the desired print layout. Whenever you want to print, call it with the current display data and make sure to set it to "print when complete".
    LabVIEW Champion . Do more with less code and in less time .

  • How can I print the iCloud calendar on mt PC (windows 7)

    Does anyone know how to print the monthly calendar in iCloud.  I can view it,but don't know how to print it.
    Thanks

    whoops - I was wrong. First of the three pages I see in preview is grayed out, next page has a couple of pics/boxes, one says "Find my Phone", third page has some other pics/windows ... definitely not my calendar that I had on the screen when I tried to print.

  • How to print out a date from the past

    I am trying to print out a date from the past but I cant seem to get It,
    Lets use for example Independece Day,
    How would you write the code in order to print out that exact date?

    Look at the
    [url=http://java.sun.com/javase/6/docs/api/index.html?
    java/util/Date.html]Date APIActually the Calendar class would be better to use, since you can set all the different fields from year to second, plus things like day of week, day of month, week of year, etc.
    too slow
    Message was edited by:
    hunter9000

  • Anyone has print out the iPhoto album book by apple after finish editing? May I check is the quality good? I have compiled my photo album book , choosen hard cover option , 100 pages , estimated cost is US150. Not sure worth to print out or not?

    Anyone has print out the iPhoto album book by apple after finish editing? May I check is the quality good? I have compiled my photo album book , choosen hard cover option , 100 pages , estimated cost is US150. Not sure worth to print out or not?

    All I can say is the books I've created as gifts to my children for their children were received with absolute joy and appreciation (each book chronicled in pictures  the first year of each grandchild's life). Granted the sentimental factor had a lot to do with the recipient's enjoyment of the book but they were spetacular. The book with its glossy dust cover is a very impressinve way to present your photos. 
    As Larry has pointed out so many have posted here that they were very satisfried with their book and Apple is very good about correcting problems. 
    To make sure there are no errors in the book before you order preview the book as described in this Apple document: iPhoto '11: Preview a book, card, or calendar before you order or print it. If the PDF file shows no errors, either in text typos (my biggest problem) or in missing photos, etc., the printed book will be error free.
    OT

  • How do I print out the results of a "search" or "find"?

    I used ical's "find" or "search" field to look up all calendar entries for a project I was working on. How do I print out this result? This is basically the information in the lower right box after you do a search.

    Dear Bri81,
    Thank you for your reply.
    I tried the coding as you suggested
    while(i.hasNext())
    System.out.println( i.next() );
    but the error message reads:
    "CD.java": Error #: 354 : incompatible types; found: void, required: java.lang.String at line 35
    Your help is appreciated
    Norman
    import java.util.*;
    public class TryCD
       public static void main(String[] args)
         Vector cdVector = new Vector();
         CD cd_1 = new CD("Heavy Rapper", "Joe", true);
         CD cd_2 = new CD("Country Music", "Sam", true);
         CD cd_3 = new CD("Punk Music", "Mary", true);
         cdVector.add(cd_1);
         cdVector.add(cd_2);
         cdVector.add(cd_3);
         Iterator i = cdVector.iterator();
         while(i.hasNext())
           System.out.println( i.next() );
    public class CD
       private String item;
       private boolean borrowed = false;
       private String borrower = "";
       private int totalNumberOfItems;
       private int totalNumberOfItemsBorrowed;
       public CD(String item,String borrower, boolean borrowed)
         this.item = item;
         this.borrower = borrower;
         this.borrowed = borrowed;
       public String getItem()
         return item;
       public String getBorrower()
         return borrower;
       public boolean getBorrowed()
         return borrowed;
       public String toString()
          return System.out.println( getItem() + getBorrower());

Maybe you are looking for

  • Please help regarding the function module 'MESSAGE_TEXT_BUILD'

    hii i am a new employee. can anyone please explain wat the following code is doing IF sy-subrc = 0. l_mstring = t100-text. IF l_mstring CS '&1'. REPLACE '&1' WITH wa_messtab-msgv1 INTO l_mstring. REPLACE '&2' WITH wa_messtab-msgv2 INTO l_mstring. REP

  • How can I stop QuickTime from streaming all internet videos?

    HI When I updated my ITunes all the media file associations were changed to QuickTime. I want the Windows Media Player to keep the associations. What I did so far is: I have disabled all associations in QuickTime player options (except .mov) and turn

  • Account's holder name

    Hi All, I am working with outbound idocs, requirement is to update the bank data in segement e1edk28. Currently system does not show the correct details for the bank in segement e1edk28. I have found one user exit in which I have created the logic in

  • FFP INVALID OBJECTS

    Hi, How to compile FFP INVALID OBJECTS in Oracle EBS R12.1.3 Totally i have 230 FFP invalid Objects.. Kindly do the needfull.. Regards Vel

  • Photoshop: How do I stop the image from flashing black?

        How do I stop the image from flashing black when i am working on it