ICal for Tiger - Colors etc.

I'm a longtime Mac user and finally caved in and had to upgrade to a new one with Tiger last Summer.
I cannot for the life of me understand if the iCal that came with this is really the only version of this, as it is so sparse, it just seems unlike any other beautiful Mac app....
I am running iCal 2.0.5 With all my searching on the site, I see examples of pre-Tiger iCal and Leopard iCal that all show tons of colors, ways to see events and the current day different from each other on your calendar, yet my version has no such option. The only thing I can do is change my whole calendar to have EVERYTHING be red or black or whatever, which is crazy!
I see one poster here is talking about having so many colors "eye-candy" that it annoys them. What on earth am I missing here????
How does iCal go from version 2.0.5 to 2.5 (Leopard) with no other versions in between?
Please help! This is driving me crazy!!! I used to have Now Up to Date which let me have all sorts of graphics, banners, fonts, etc so I can see what day it is, etc., but that is no longer available for new Macs.
Help help help!
Thanks ! LOL!!!!!!

lilskye,
You can color code calendars by selecting (clicking) the calendar in the source pane. The use the (⌘ + I) keyboard shortcut and you will be presented with a sidebar window that allows you to choose the calendar color in the upper right hand corner...but I suppose you already know that.
In order to display different colors you should split your calendar into categories (separate calendars), such as Home/Work/Holidays. Then drag the appropriate events to the desired calendar
;~)

Similar Messages

  • Backup iCal for Tiger install?

    Hey everyone.
    I am going to install Tiger, but before I wipe my HD, I want to backup my iCal, store it on my iPod, then copy it back afterwards. How can I go about this?
    I also need to do the same for AddressBook and my Safari Bookmarks.
    Thanks
    James

    James, I'm not sure that you need to do that. Study this first before you decide what type of install to do:
    http://docs.info.apple.com/article.html?artnum=301270
    or this:
    http://manuals.info.apple.com/en/TigerInstall_SetupGuide.pdf

  • Hello Mac heads.! I just downloaded Onyx for tiger.  All went well.  But I try to launch onyx from my applications and it doesn't offer checking the S.M.A.R.T. status so I can check my disk.  Everything else appears.  Uninstall only, forums, website etc.

    Hello Mac heads.! I just downloaded Onyx for tiger.  All went well.  But I try to launch onyx from my applications and it doesn't offer checking the S.M.A.R.T. status so I can check my disk.  Everything else appears.  Uninstall only, forums, website etc.

    I think you should get Applejack...
    http://www.macupdate.com/info.php/id/15667/applejack
    After installing, reboot holding down CMD+s, (+s), then when the DOS like prompt shows, type in...
    applejack AUTO
    Then let it do all 6 of it's things.
    At least it'll eliminate some questions if it doesn't fix it.
    The 6 things it does are...
    Correct any Disk problems.
    Repair Permissions.
    Clear out Cache Files.
    Repair/check several plist files.
    Dump the VM files for a fresh start.
    Trash old Log files.
    First reboot will be slower, sometimes 2 or 3 restarts will be required for full benefit... my guess is files relying upon other files relying upon other files! :-)
    Disconnect the USB cable from any Uninterruptible Power Supply so the system doesn't shut down in the middle of the process.

  • How to change font/ font color etc in a graphic object using JCombobox?

    Hello
    My program im writing recently is a small tiny application which can change fonts, font sizes, font colors and background color of the graphics object containing some strings. Im planning to use Jcomboboxes for all those 4 ideas in implementing those functions. Somehow it doesnt work! Any help would be grateful.
    So currently what ive done so far is that: Im using two classes to implement the whole program. One class is the main class which contains the GUI with its components (Jcomboboxes etc..) and the other class is a class extending JPanel which does all the drawing. Therefore it contains a graphics object in that class which draws the string. However what i want it to do is using jcombobox which should contain alit of all fonts available/ font sizes/ colors etc. When i scroll through the lists and click the one item i want - the graphics object properties (font sizes/ color etc) should change as a result.
    What ive gt so far is implemented the jcomboboxes in place. Problem is i cant get the font to change once selecting an item form it.
    Another problem is that to set the color of font - i need to use it with a graphics object in the paintcomponent method. In this case i dnt want to create several diff paint.. method with different property settings (font/ size/ color)
    Below is my code; perhaps you'll understand more looking at code.
    public class main...
    Color[] Colors = {Color.BLUE, Color.RED, Color.GREEN};
            ColorList = new JComboBox(Colors);
    ColorList.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent ev) {
                     JComboBox cb = (JComboBox)ev.getSource();
                    Color colorType = (Color)cb.getSelectedItem();
                    drawingBoard.setBackground(colorType);
              });;1) providing the GUI is correctly implemented with components
    2) Combobox stores the colors in an array
    3) ActionListener should do following job: (but cant get it right - that is where my problem is)
    - once selected the item (color/ font size etc... as i would have similar methods for each) i want, it should pass the item into the drawingboard class (JPanel) and then this class should do the job.
    public class DrawingBoard extends JPanel {
           private String message;
           public DrawingBoard() {
                  setBackground(Color.white);
                  Font font = new Font("Serif", Font.PLAIN, fontSize);
                  setFont(font);
                  message = "";
           public void setMessage(String m) {
                message = m;
                repaint();
           public void paintComponent(Graphics g) {
                  super.paintComponent(g);
                  //setBackground(Color.RED);
                  Graphics2D g2 = (Graphics2D) g;
                  g2.setRenderingHint             
                  g2.drawString(message, 50, 50);
           public void settingFont(String font) {
                //not sure how to implement this?                          //Jcombobox should pass an item to this
                                   //it should match against all known fonts in system then set that font to the graphics
          private void settingFontSize(Graphics g, int f) {
                         //same probelm with above..              
          public void setBackgroundColor(Color c) {
               setBackground(c);
               repaint(); // still not sure if this done corretly.
          public void setFontColor(Color c) {
                    //not sure how to do this part aswell.
                   //i know a method " g.setColor(c)" exist but i need to use a graphics object - and to do that i need to pass it in (then it will cause some confusion in the main class (previous code)
           My problems have been highlighted in the comments of code above.
    Any help will be much appreciated thanks!!!

    It is the completely correct code
    I hope that's what you need
    Just put DrawingBoard into JFrame and run
    Good luck!
    public class DrawingBoard extends JPanel implements ActionListener{
         private String message = "message";
         private Font font = new Font("Serif", Font.PLAIN, 10);
         private Color color = Color.RED;
         private Color bg = Color.WHITE;
         private int size = 10;
         public DrawingBoard(){
              JComboBox cbFont = new JComboBox(GraphicsEnvironment.getLocalGraphicsEnvironment().getAvailableFontFamilyNames());
              cbFont.setActionCommand("font");
              JComboBox cbSize = new JComboBox(new Integer[]{new Integer(14), new Integer(13)});
              cbSize.setActionCommand("size");
              JComboBox cbColor = new JComboBox(new Color[]{Color.BLUE, Color.RED, Color.GREEN});
              cbColor.setActionCommand("color");
              JComboBox cbBG = new JComboBox(new Color[]{Color.BLUE, Color.RED, Color.GREEN});
              cbBG.setActionCommand("bg");
              add(cbFont);
              cbFont.addActionListener(this);
              add(cbSize);
              cbSize.addActionListener(this);
              add(cbColor);
              cbColor.addActionListener(this);
              add(cbBG);
              cbBG.addActionListener(this);
         public void setMessage(String m){
              message = m;
              repaint();
         protected void paintComponent(Graphics g){
              super.paintComponent(g);
              Graphics2D g2 = (Graphics2D)g;
              g2.setColor(bg);//set background color
              g2.fillRect(0,0, getWidth(), getHeight());          
              g2.setColor(color);//set text color
              FontRenderContext frc = g2.getFontRenderContext();
              TextLayout tl = new TextLayout(message,font,frc);//set font and message
              AffineTransform at = new AffineTransform();
              at.setToTranslation(getWidth()/2-tl.getBounds().getWidth()/2,
                        getWidth()/2 + tl.getBounds().getHeight()/2);//set text at center of panel
              g2.fill(tl.getOutline(at));
         public void actionPerformed(ActionEvent e){
              JComboBox cb = (JComboBox)e.getSource();
              if (e.getActionCommand().equals("font")){
                   font = new Font(cb.getSelectedItem().toString(), Font.PLAIN, size);
              }else if (e.getActionCommand().equals("size")){
                   size = ((Integer)cb.getSelectedItem()).intValue();
              }else if (e.getActionCommand().equals("color")){
                   color = (Color)cb.getSelectedItem();
              }else if (e.getActionCommand().equals("bg")){
                   bg = (Color)cb.getSelectedItem();
              repaint();
    }

  • Looking for a better solution to the "Save for web" color shift issue

    Ok, everyone who has fussed much with photoshop and "Save For Web" knows about the color shift issue. If you want your colors to look right after you "save for web", you have to work in the sRGB colorspace, and have Proof Colors checked (soft proofing on) and the proof color setup set to Monitor RGB, otherwise what you get looks terrible when displayed in a browser.
    But of course if you are editing for print, this is exactly what you DON'T want to do. Well, I work in both. In fact, often the same images, and I want them to appear as close as reasonably possible in both print and web formats, and without a lot of fussing on my part. And I'm pickiest about the print mode, since I have the most control there, so that's the way I want to edit by default.
    Nothing new here.
    Now comes the interesting part (in my mind, anyway). Obviously there is a known remapping -- because PhotoShop DOES it when you select Proof Colors. So the inverse mapping must also be known (with some gamut issues, but I'm not concerned with those, because, after all, I'm VIEWING it on a monitor anyway!). What I want is a plug-in that automatically applies that inverse mapping so that, when I do a Save For Web, I end up with the colors I've been viewing all the time when setting the shot up in print mode. Then, too, I don't have to worry about what mode I'm in when I'm editing -- it just fixes it when doing a save-for-web.
    Again, I want to edit in my normal print mode (typically ProPhoto colorspace, and with soft-proofing off or set to the printer/medium combination I expect to use), then do a single operation (might be a multi-step action) to "screw up" my colors so that when I then do a "Save-For-Web", the resulting image, when viewed on the average color-stupid browser, looks like the image I've been seeing in Photoshop.
    Anyone know of such a beast?   I would gladly pay for a plug-in that really works and fixes the problem.
    And if you have other solutions, I'm interested, but the absolute requirement is that it I do one single edit pass for my colors for both print and web use, and I get what I see on the screen in PS on both the prints and on the web display (i.e., working in sRGB/Monitor RGB mode all the time won't cut it). And PREFERABLY, let me do all my editing work in the ProPhoto (or at least AdobeRGB) colorspace so I have a gamut closer to what the printer can do.
    Anyone got a decent solution for this?

    Chris
    I spent all day Googling and doing side by side comparisons of my old and new systems.
    My display is a Dell U2410. It has several presets, including sRGB and Adobe RGB. I've been using sRGB.
    On my OLD system, (Win XP, PsCS2, DwCS4) there seems to be no distinction between color managed and non color managed apps, even on this wide gamut display. I could capture (digital camera) in Adobe RGB, open and edit in PsCS2, save as .psd, convert to CMYK for print, or convert to sRGB for SFW. All images looked identical and they printed and displayed perfectly. I thought this was normal, and seemed logical. This also seems to be the source of my incorrect assumptions. I was trying to get my new machine to behave like my old one.
    So I get this new machine (Windows 7, PsCS5, DwCS5) and now (still in sRGB display mode) all color managed apps appear de-saturated. Non color managed apps are OK. If I switch the display to Adobe RGB, color managed apps are OK, but non color managed apps are way too saturated. From my investigation, I believe this is normal behavior on a wide gamut display. I've tried changing the Control Panel > Display > Screen Resolution > Advanced settings > Color Management options, but to no avail. Either I'm missing something, or Windows 7 is doing color management differently.
    It seems my only option now is to use Adobe RGB display setting for Ps, etc. and switch to sRGB for Dw and non color managed apps. Or, have 2 separate files for print and web. I've Googled 'til my eyes are numb and still not sure I'm getting this. Any enlightenment would be greatly appreciated.
    Finally, I don't see an edit function here, so I can't remove my previous incorrect reply. Moderator, please feel free to do so.
    Thanks

  • Is there a way to apply LUT's to a photo in Lightroom?  Such as .cube, Vision Color, etc.

    Is there a way to apply LUT's to a photo in Lightroom?  Such as .cube, Vision Color, etc.  I have some film stock and Osiris LUTs I like to use for video that I'd love to apply to RAW still photos in Lightroom.  I know it's possible in Photoshop CC but the process would save me time if it's possible to easily do in Lightroom 5.  Anyone know?

    Unfortunately, you can't do it in LR.  You could add your vote and opinion to this topic in the official Adobe feedback forum: Lightroom: Ability to use 3D LUTs.

  • Image generator w/ customizable text, colors, etc?

    Hello,
    I was just wondering if there was some sort of module or
    application for ColdFusion that would allow me to generate images
    based on a user's input of text, colors, etc. Something like at
    http://www.finestationery.com...
    http://www.finestationery.com/prod_enter_wording.cfm?prod_id=27502&fss_id=1805200717151002 31481532356810&smain_id=47757042&cm_thiscategory=667&CFID=115729&CFTOKEN=92434145
    ... where the user can type text, set a font, change colors,
    etc, and hit "Preview" to view a generated JPEG with all of their
    personalized options.
    Is something like this available somewhere? Or does Fine
    Stationery just have a bunch of really studly programmers?
    Thanks!

    check out imagemagick (google it 'cos i don't remember the
    url) and
    imagecfc (www.opensourcecf.com/imagecfc/)
    both a free.
    Azadi Saryev
    Sabai-dee.com
    Vientiane, Laos
    http://www.sabai-dee.com

  • Could not execute auto check for display colors using command /usr/

    I am trying to Install Oracle 10g R2 on Solaris X86 32 bit
    I am connecting to system from my windows vista laptop through putty... I get the following error...
    $ ./runInstaller
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be 5.10. Actual 5.10
    Passed
    Checking Temp space: must be greater than 250 MB. Actual 1214 MB Passed
    Checking swap space: must be greater than 500 MB. Actual 1799 MB Passed
    Checking monitor: must be configured to display at least 256 colors
    >>> Could not execute auto check for display colors using command /usr/openw
    Some requirement checks failed. You must fulfill these requirements before
    continuing with the installation,at which time they will be rechecked.
    Continue? (y/n) [n] n
    User Selected: No
    Exiting Oracle Universal Installer, log for this session can be found at /tmp/Or
    I have done the following:-
    # DISPLAY=192.168.1.133:0.0; export DISPLAY
    # echo $DISPLAY
    192.168.1.133:0.0
    # xhost+
    xhost+: not found
    # xclock
    xclock: not found
    I know that I have to do the following:-
    1. Install SUNWxwplt package ========> Is already Installed
    2. Set DISPLAY variable
    3. Execute xhost + on target (set in DISPLAY) computer
    # pkginfo -i SUNWxwplt
    system SUNWxwplt X Window System platform software
    Some sites claim xming and some xwindows etc.... Plz give me a step by step instruction as how to overcome this..
    bash-3.00# /usr/openwin/bin/xclock
    Error: Can't open display:
    bash-3.00# DISPLAY=192.168.1.133:0.0; export DISPLAY; echo DISPLAY
    DISPLAY
    bash-3.00# echo $DISPLAY
    192.168.1.133:0.0
    bash-3.00# /usr/openwin/bin/xclock
    Error: Can't open display: 192.168.1.133:0.0
    bash-3.00# pwd
    bash-3.00# find . -name xhost
    ./usr/openwin/bin/xhost
    ^C
    bash-3.00# /usr/openwin/bin/xhost +
    /usr/openwin/bin/xhost: unable to open display "192.168.1.133:0.0"
    bash-3.00#
    # echo $PATH
    /usr/sbin:/usr/bin
    I have also gone through the below ... but was not of much help
    Unable to execute runInstaller: Check if the DISPLAY variable is set
    Plz help
    Edited by: [email protected] on Feb 11, 2009 5:16 AM

    bash-3.00# echo $SHELL
    /sbin/sh
    bash-3.00# echo $DISPLAY
    bash-3.00# DISPLAY=192.168.1.133:0.0;export DISPLAY
    bash-3.00# echo $DISPLAY
    192.168.1.133:0.0
    bash-3.00# /usr/openwin/bin/xclock
    Error: Can't open display: 192.168.1.133:0.0
    bash-3.00# man xclock
    No manual entry for xclock.
    bash-3.00# /usr/openwin/bin/xhost +
    /usr/openwin/bin/xhost: unable to open display "192.168.1.133:0.0"
    bash-3.00#

  • Hello MacHeads: I downloaded Handbrake 0.9.1 for Tiger, so I can upload a homemade DVD for editing in imovie.  Problem is I can't even access Handbrake Help book, because I think my firewall settings are preventing me.  I tried turning off all my firewall

    Hello MacHeads: I downloaded Handbrake 0.9.1 for Tiger, so I can upload a homemade DVD for editing in imovie.  Problem is I can't even access Handbrake Help book, because I think my firewall settings are preventing me.  I tried turning off all my firewall settings.?  IDK if I'm even doing that right.  Can anyone help out here?

    You don't need Handbrake for that if it is your own DVD.
    You need to convert the VOB files in the TS-Folder of the DVD back to DV which iMovie is designed to handle.
    a DVD is in a compresed format called mpeg2, which is standard across all DVDs. This is what is known as a 'final delivery format' and is not suitable for editing. Because is is compressed, a 4.7GB DVD can hold a two hour movie (dual layer DVDs twice that), whereas the DV stream from a video camera, which runs at about 13GB per hour, is not compressed and IS intended for editing.
    In other words you have to 'reverse engineer' the DVD back to an uncompressed format in ordfer to edit it. There is a penalty for doing this in terms of slight quality loss, but it is one you can live with.
    When you have your DVD as an icon on your desktop, double-click it, and it will open to reveal a TS-Folder containing a number of various files, some called VOB. These are the constituent parts of any video DVD.
    When you have downloaded and installed mpegStreamclip, and purchased and installed the Apple mpeg2 plugin, open mpegStreamclip and drag the entire TS Folder into its window. Then using the various menus available to you (just explore them and you will get the hang of it) ask it to convert to DV.
    That DV file, which will be many times larger than the original TS Folder, and which can a while to create (be patient - make coffee or prune the roses!) is what you can now import into iMovie for editing etc.
    When you have finished doing that, you then have to turn the project back into a DVD.
    mpegStreamclip can be downloaded from here:
    http://www.apple.com/downloads/macosx/video/mpegstreamclip.html
    which is free, but you must also have the  Apple mpeg2 plugin :
    http://www.apple.com/quicktime/mpeg2/
    which is a mere $20.
    Another possibility is to use DVDxDV:
    http://www.dvdxdv.com/NewFolderLookSite/Products/DVDxDV.overview.htm
    which costs $25.
    For the benefit of others who may read this thread:
    Obviously the foregoing only applies to DVDs you have made yourself, or other home-made DVDs that have been given to you. It will NOT work on copy-protected commercial DVDs, which in any case would be illegal.

  • How can I combine 3 bitmaps? However, it should be each bitmap for each color channel, RGB

    How can I combine 3 bitmaps? However, it should be each bitmap for each color channel. RGB
    How can i do it by AS3 ?

    bitmap1 will supply the red for the final bitmap, bitmap2 will supply the green value for the final bitmap etc?
    if so, loop through the final bitmaps pixels and assign values using setColor() or setColor32 and the bitwise operators to extract and add rgb values.

  • Which color mode in psd cs4 is best to use for 2-color project, grayscale or cmyk?

    The project is a photo montage. It was 4-color, now must become 2 colors.
    So I've changed each of the original 4-color photos (jpg and eps) into separate psd files (as grayscale/duotone/montage-and assigned it One pantone color)
    In a new psd "montage"  file, I plan to place each photo on its own layer, adjust tints, transparency, etc, to  create one new montage/flattened.
    I'm not sure which color mode is best when setting up this new file, CMYK or grayscale?
    Once the PS  doc is done, the job will be saved as a PDF for 2-color printing.
    I want to insure the 2 pantone colors separate properly at press.
    any advise how how to best achieve this?

    Yes it is possible in InDesign. You will have to judge whether you feel more proficient in doing something new in Photoshop or in InDesign.
    If you restrict this to being done in Photoshop, you just need to change the color mode to duotone and export the PDF file with the 'high quality print' profile or similar. Some other PDF settings may convert your duotone to a regular CMYK or RGB image.

  • ICal on Tiger won't start. No crash message.

    Hi all,
    I installed Leopard on an unsupported 800Mhz G4 iMac. It worked fine but the airport card wasn't supported, so I decided to revert back to Tiger.
    So, I did an erase and install, to give me a brand "new" clean system. After the install I downloaded the software updates.
    Then I did a sync, replacing all the data on the computer with the data in .Mac. Everything works fine: mail, address book, bookmarks ... BUT ... iCal now won't start. The icon bounces 3 or 4 times, then it stops without another word. Looking in the console log shows that iCal hits a "white space" or "white page" error (I'm not at my machine ATM)
    Anybody got any ideas how to cure this? Can I do a reinstall to repaie iCal?
    Stuart

    Stuart,
    .Mac has been suffering maintenance pains since Oct 19, 2007 5:51 AM.
    If your problem is related to .Mac sync, and you do not have any other backups, it may be difficult to resolve until .Mac is fully functional.
    In the meantime experiment with removing the iCal Plist. This can be accomplished by quitting iCal and dragging the com.apple.iCal.plist file which is located in your Macintosh HD/Users/yourusername/Library/Preferences Folder to the Desktop. Then log out/in or restart and check iCal for normal behavior. You can delete the iCal plist file on your Desktop.
    ;~)

  • Anything like Bento for Tiger?

    I have Filemaker's Bento on my iMac, running Leopard and love it. My laptop however, is an iBook G3 with Tiger installed, and Bento won't work on any OS before Leopard, so..
    Does anyone know of something that provides a small customizable database that integrates iCal and Address Book? I use iCal, Address Book, and Mail for my business, but need a good way to take down a bunch of notes, and maintain contact with customers. The notes are usually the same each time I take them, and I need to refer to them over and over.
    Any ideas would be awesome. Thanks!!
    Stephen

    About the only thing readily available for both Tiger and Leopard
    to do these kinds of functions, and be transferable between all,
    could be the feature set in MobileMe... as it gains strength and
    the product gets on track to being the high standard we'd expect.
    { MobileMe and an iPhone? There's two interesting considerations! }
    However, that is a service; and not a product for Tiger to do for
    you what Bento does in Leopard. There should be some kind of
    shareware to fulfill this rather basic need. Have you tried the
    software downloads page: http://www.apple.com/downloads/ ?
    Some of the other software sites have links to shareware & free-
    ware, such as http://versiontracker.com & http://macupdate.com
    which are searchable and also have a by topic index.
    Hopefully someone with a more precise contribution will appear.
    Good luck & happy computing!

  • Is time running out for Tiger?

    Not sure if this is the right forum, but I'm getting a little edgy as time goes by -
    I get on fine with Tiger and am not too happy about going through the hassle (and cost) of upgrading to Leopard. Obviously upgrades have long finished for Tiger but Leopard goes on improving in minor ways (I imagine).
    Can anyone tell me if Tiger is likely to meet a nasty end soon (I had this problem with OS9 some years ago)?
    And, apart from this, could I have a brief summary as to why moving to Leopard would be a good idea as far as function is concerned?

    Your newer software upgrades may be where costs could be a little tall,
    if you should need to continue using professional apps and find they
    may be way out of date (since some don't find support in Snow Leopard)
    so budget on that contingency and perhaps some of the ones you use
    won't be orphan-ware at a time when you'd otherwise not expect it.
    To have and use an older computer for offline or local use, along with a
    time capsule of vintage apps, may be fine; but if your use includes a
    form of production or shared works over a network (local or internet)
    then another matter arises, in being compatible.
    Also, software updates, security updates, and other items are part of
    the support picture where an operating system and associated hardware
    can be expected to keep up to a level of that compatibility in business
    and to be able to connect to the ever evolving internet.
    One way to upgrade, is to get a later model computer which includes
    the recent OS X and is very well suited to running it; maybe a nice
    last model well proven Mac from the online Store's refurbished deals?
    Or an all-new model from the online store. Some authorized resellers
    may have an older model and not that great a deal, when the actual
    Apple store or online one, has the most recent for a better overall deal.
    My antiques are chugging along OK at the present, but I do have the
    last OS X version and other software suited for their last upgrade steps
    so the expectation at some point, would be a hardware failure costing
    more than the actions involved in a repair, given the vintage involved.
    And the lack of apps, utilities, updates, and security; new browsers,
    Flash/Shockwave and other support, etc; is always moving onward.
    So, to set up another computer and adopt the latest OS X and apps
    then start migrating your work over as best you can, is one idea. At
    some point, you could also use one of your ancient Macs to run a
    variant unix freeware system, an experiment; just because it's possible.
    Good luck & happy computing!

  • ICal using Tiger/Panther Help?

    iCal using Tiger/Panther Help?
    I’m sure this is a stupid question but I’m trying to import my iCal info from home to work and back. I have Tiger at home and Panther at work, is there a simple way to import and export and update? I’ve tried thought email and had know luck, it comes thought as raw text. I’m sure there a simple way to do this! Thanks Scott F.

    Henry,
    Click on your selected calendar, then Click the Info button on the lower right side of the iCal Window, and the window which opens will allow you to change the color in the color window drop down menu which is located in the upper right hand corner of the Info Window.
    Just drag them to change the order.
    ;~)

Maybe you are looking for

  • ITunes Produce delivery error ERROR ITMS-3000

    Hi everyone, I am going crazy trying to publish an e-book on the iBookstore, and I hope I can get some help here. First some background info: I am intending to publish a small collection of short stories written in Pages '09 and converted to .epub in

  • Packing material consumsion

    Hi , I am doing packing at the time of delivery. When i do PGI the packing material stock is not reduce. if the packing material is not present it also not giving any error.When I checking the Handling Unit " status " tab it is showing the field " HU

  • Outlook Calendar Sync has stopped working

    Prior to iTunes 7.4.X, Outlook Calendar Sync was working OK. Now, it does not. No new calendar entries posted in Outlook following the installation of iTunes 7.4.X make it into the iPhone. I've tried all the usual tricks - reinstall iTunes, reset the

  • Hiding certain songs in iTunes

    Is there a way to hide certain songs in iTunes or to lock them to prevent play by unauthorised users? I have about 20 or 30 songs out of about 8000 that I don't want anyone except me to be able to play. Is there anyway I can either remove them from b

  • Problem with Client Side Validator - e.getFacesMessage is not a function

    (JDeveloper 11g, TP2 and TP3) I have created a custom validator that does server side validation as well as client side validation. It gets invoked - an alert is fired to prove that - but when validation fails, instead of the red box and error messag