Why does the 'iCal helper' keep appearing in my dock?

After upgrading to 10.5.6 today the iCal helper application keeps launching and staying in my dock. It's not marked as a log-in item, and doesn't necessarily launch when i log-in. It just launches randomly every hour or so.
I've read that it is the program that allows iCal to display alerts when it's not running, but it never used to be visible in the dock, it doesn't even have a real application icon.
Does someone know how to prevent it from showing up in the dock??
Message was edited by: goughbradley

Anyone??

Similar Messages

  • Why does the Adobe Updater keep failing?

    Why does the Adobe Updater keep failing? I close my Webroot antivirus app and the update keeps failing for the Extension Manager 6.0.8 Update. The message is "Extension Manager 6.0.8 Update Installation failed. Error Code: U44M1P7". I cannot retry until the Adobe Updater appears again in the notification bar (lower right of my Win 7 desktop.

    Hi,
    You can try to manually install the updates:
    Product updates
    Helpful Links:
    Installation failed. Error U44M1P7 | Updates
    http://helpx.adobe.com/photoshop/kb/photoshop-cs6-updates-dont-install.html

  • Why does Adobe XI Pro keep appearing on screen each time I open a pdf file?

    Why does Adobe XI Pro keep appearing on screen each time I open a pdf file?

    Is this whatyou need?
    If  you uncheck this Acrobat Opens but the PDF will open without showing startup screen.

  • Why does the same RGB color appear lighter in one ai file and darker in another?

    Why does the same RGB color appear lighter in one ai file and darker in another??  I want to use the more vibrant color, but when I try to reproduce the same RGB color code in another Adobe Illustrator (ai) file, it shows up darker.  I printed the two files out, and you can see the difference in the print too.  I exported the color orginally as an eps file from an ArcGIS map.
    Any insight is greatly appreciated!
    Anne

    You illustrator files may have different color profiles attached.
    Set to show your color profile in the bottom left of each document by using the flyout menu >> show >> document color profile
    Then you can use edit >> assign profile to get them the same
    Yours are quite far off for RGB (which are usually close to each other for many profile due to wide gamut).  I question as Jacob did if one of your documents are in CMYK mode. Look in parenthesis after the document name at top of window.
    Check if view > proof setup is the same (do not use the uncoated profile as in my screenshot, that was only there cause of my testing)
    Make sure view >> proofs colors is checked or unchecked for both.
    To get them to print the same, check these settings are the same
    Sorry for all the screenshots, but hopefully one day we will see Adobe's complex color management united all in one window.

  • Why does the store app keeps loading and doesn't work ?

    why does the store app keeps loading and doesn't work ?

    Hi Peter,
    In order to analyze your issue better, we need more detailed information.
    Did you mean when you launch the Windows store app, the app can't start? Was there any prompt message or error code? Did this issue occur on all Windows Store app or specific one?
    Try the method in this blog:
    Fix Store App in Windows 8.1
    http://blogs.msdn.com/b/notime/archive/2013/10/18/fix-store-app-in-windows-8-1.aspx
    Karen Hu
    TechNet Community Support

  • Why does the airplay symbol not appear on the top left of my imac i bout this computer this august and i bought the apple tv yesterday?? what can i do to make the airplay work??

    why does the airplay symbol not appear on the top left of my imac i bout this computer this august and i bought the apple tv yesterday?? what can i do to make the airplay work??

    Open  > About this Mac and see Version. If it's 10.7.x, read > http://www.apple.com/osx/uptodate

  • Why does my ical not keep events in my upcoming days?

    Why does ical not keep events that i have added? the events show up on my other devices and on the me website but will not sync to my computer. does ical have a finite amount of events and if so what is the number.

    Anyone??

  • Why does the properties menu not appear with the templates?

    Hi,
    This is a bit hard to explain but maybe someone will get it.
    If you draw a div on your deisgn window 'draw AP div' then
    click somewhere on that div again, in the design window, then you
    get a list of properties at the bottom such as width, height, top,
    left, z-index etc....ok.
    Now if i load the '3 column hybrid header and footer
    template' and click on any div on the deisgn window of this
    template then i dont get this properties menu at the bottom. The
    width in the css template are set in 'em' btw if that matters.
    Now i am thinking there is a fundmental difference betwee the
    divs in the template than drawing a div using the 'draw AP div'
    tool.??
    It's kinda of like the templates are using pure css whereas
    the AP div is a mixture, ok i am sure i am WAY of the mark here and
    this is just a little thing. Can someone explain?
    thanks for any advice!

    > Now if i load the '3 column hybrid header and footer
    template' and click
    > on
    > any div on the deisgn window of this template then i
    dont get this
    > properties
    > menu at the bottom.
    That's because the div *you* created was Absolutely
    Positioned, and there is
    a specific inspector for absolutely positioned elements. But
    the divs in
    the 3-column hybrid header and footer are NOT absolutely
    positioned and so
    you do not get the special inspector. If you are not sure
    about the
    difference between absolutely positioned and non-positioned
    elements, then
    you would be well advised to NOT use absolute positioning
    until you do. It
    will create big problems for you if you ignore this.
    > The width in the css template are set in 'em' btw if
    that matters.
    That makes the container expand in width as the font size is
    expanded by the
    visitor, which is what is meant by the 'hybrid' term in the
    sample file's
    name.
    > Now i am thinking there is a fundmental difference
    betwee the divs in the
    > template than drawing a div using the 'draw AP div'
    tool.??
    Yes, definitely. This may help you understand positioning a
    bit -
    There are 4 different types of positioning:
    Absolute
    Relative
    Fixed
    Static
    Here is a brief explanation of each kind of positioning (with
    regard to
    placement of elements on the page only)....
    Position:absolute (or A/P elements)
    This does several things -
    1. It 'removes' the element from the flow of the code on
    the page so that
    it can no longer influence the size or position of any other
    page element
    (except for those contained within it, of course).
    2. The absolutely positioned element takes its position from
    the position of
    its closest PARENT *positioned* element - in the
    absence of any explicitly
    positioned parent, this will default to the <body> tag,
    which is always
    positioned
    at 0,0 in the browser viewport.
    This means that it doesn't matter where in the HTML code the
    layer's code
    appears (between <body> and </body>), its
    location on the screen will not
    change (this assumes that you have not positioned the A/P
    element within
    a table or another A/P element, of course).
    Furthermore, the space in
    which
    this element would have appeared were it not positioned
    is not preserved
    on the screen. In other words, absolutely positioned elements
    don't take
    up any space on the page. In fact, they FLOAT over the page.
    Position:relative (or R/P elements)
    In contrast to absolute positioning, a relatively positioned
    page element is
    *not* removed from the flow of the code on the page, so
    it will use the
    spot
    where it would have appeared based on its position in
    the code as its
    zero point reference. If you then supply top, right,
    bottom, or left
    positions
    to the style for this element, those values will be
    used as offsets from
    its
    zero point.
    This means that it DOES matter where in the code the
    relatively positioned
    element appears (, as it will be positioned in that location
    (factoring in
    the offsets) on the screen (this is true for any placement in
    the code).
    Furthermore, the space where this element would have
    appeared is
    preserved in the display, and can therefore affect the
    placement of
    succeeding elements. This means that the taller a relatively
    positioned element is, the more space it forces on the page.
    Position:static
    As with relative position, static positions also "go with
    the flow". An
    element with a static position cannot have values for
    offsets (top, right,
    left, bottom) or if it has them, they will be ignored. Unless
    explicitly
    positioned, all div elements default to static positioning.
    Position:fixed
    A page element with this style will not scroll as the page
    content scrolls.
    Support for this in elements other than page backgrounds is
    quirky
    There are several other things you need to know:
    1. ANY page element can be positioned - paragraphs, tables,
    images, lists,
    etc.
    2. The <div> tag is a BLOCK level tag. This means that
    if it is not
    positioned or explicitly styled otherwise, a) it will always
    begin on a new
    line on the screen, and b) it will always force content to a
    new line below
    it, and c) it will always take up the entire width of its
    container (i.e.,
    width:100%).
    3. The placement of A/P elements *can* affect the BEHAVIOR of
    other
    elements
    on the page. For example, a 'layer' placed over a hyperlink
    will mask that
    hyperlink.
    You can see a good example of the essential difference
    between absolute and
    relative positioning here -
    http://www.great-web-sights.com/g_layersdemo.asp
    You can see a good demonstration of why using layers for a
    page layout tool
    is dangerous here -
    http://www.great-web-sights.com/g_layer-overlap.asp
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "rams30" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi,
    >
    > This is a bit hard to explain but maybe someone will get
    it.
    >
    > If you draw a div on your deisgn window 'draw AP div'
    then click somewhere
    > on
    > that div again, in the design window, then you get a
    list of properties at
    > the
    > bottom such as width, height, top, left, z-index
    etc....ok.
    >
    > Now if i load the '3 column hybrid header and footer
    template' and click
    > on
    > any div on the deisgn window of this template then i
    dont get this
    > properties
    > menu at the bottom. The width in the css template are
    set in 'em' btw if
    > that
    > matters.
    >
    > Now i am thinking there is a fundmental difference
    betwee the divs in the
    > template than drawing a div using the 'draw AP div'
    tool.??
    >
    > It's kinda of like the templates are using pure css
    whereas the AP div is
    > a
    > mixture, ok i am sure i am WAY of the mark here and this
    is just a little
    > thing. Can someone explain?
    >
    > thanks for any advice!
    >

  • Why does the Adobe Help Manager not close?

    I'm not sure what the "Adobe Help Manager" (silly name) is. I notice it as an open application in my toolbar (Windows 7) but you cannot close it. It just stays there. Only goes away when I've restarted my system. Any ideas or comments?
    Generally speaking, I'd like to comment that many of the current Adobe programs (including CC) are not nearly as intuitive as they should be. One wastes quite a bit of time trying to figure out how to accomplish rather obvious functions. Usually will have to go online to find an answer. Should be more obvious and clear. The interface of CC (for uploading work files) seems a "clean" design. Yes, clean... and unintuitive.

    It's been weeks since I've used the file upload 'cloud' function of Creative Cloud, but I do recall I had to seek out numerous youtube videos, as well as some from Adobe's site, to try and figure out how it worked. Dragging and dropping seemed like a very obvious function, but you have to select: Actions: Download, etc. etc. It's a clunky, dispiriting interface.
    So... I just started using google drive instead. I can quickly drag and drop. I work on a PC and a Mac and don't have a shared drive between them (due the usual platform issues) so I like uploading to a cloud server and transferring between the two machines that way. Very nice to compare how the two different systems are displaying an html doc or a photoshop file.
    While the wind is at my back, I really like CC as to the software options, but it is a very daunting experience to consider learning new programs. It's taken me fifteen years of work to be  as proficient as I am with PS (as a photographer and designer). I still find Dreamweaver very difficult and obscure in so many ways. I'm sure that's why you created Muse... but I will not take the time required to learn and new program. It's just a face. Remember in the Matrix when you would learn a huge amount of technical knowledge just by plugging into something? That's what we need (ha ha).
    Now that Adobe is doing away with the distributive disc system for software programs, perhaps the next great leap is the discontinuation entirely of massive software progams themselves. Have no idea how this would happen, but I think patience is coming to an end for learning huge new software programs. Seems like such a relic of the past now.
    Wish Adobe would bring designers more into how their programs work. They all seem to be designed by software engineers, and thus the truly disheartening style of the menues, opening into dozens of submenues, basements, dark vaults, etc. etc. The Adobe interfaces are all uniform now, but it's an old look that goes back almost ten years. Hope the creatives can soon lead to a new approach.

  • Why does the download list keep emptying?

    I have set the preference to empty the download list manually. And it used to work fine until a few weeks ago. But now, every time I close Safari, the download list empties and the download button disappears, until the next time I download something
    Why is this happening, and what can I do about it? I definitely want the items to remain in the list until I remove them, and I'm sure that I have set the preference correctly.

    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Safari/Downloads.plist
    Right-click or control-click the highlighted line and select
    Services ▹ Show Info
    from the contextual menu.* An Info dialog should open.
    Does the dialog show "You can read and write" in the Sharing & Permissions section?
    In the General section, is the box labeled Locked checked?
    What is the Modified date?
    *If you don't see the contextual menu item, copy the selected text to the Clipboard (command-C). Open a TextEdit window and paste into it (command-V). Select the line you just pasted and continue as above.

  • Why does the keyboard focus keep switching to the menu bar?

    Does anyone else have the problem of Photoshop CS6 constantly setting the keyboard focus to the menu bar? This makes it difficult to use shortcuts.
    Typical examples: I want to switch to the Move tool, so I press V, but instead, the View menu drops down. Or I press T for the Type tool, but instead, the Filter menu drops down. This happens often and it's very annoying.
    This also happens in Premiere Pro CS6, and happens on both my Windows 7 and Windows 8.1 machines. Doesn't happen in other applications, and is not related to actually using a menu, i.e. if I choose something from a menu, then press V, Photoshop will often work correctly and activate the Move tool. This behavior seems to happen randomly.

    Alt doesn't really "unhide" the menu bar (speaking of Photoshop), but it's always been the introducer of keyboard operations for "keyboard accessbility" - i.e., operation of Windows applications without mouse.
    Alt causes little underlines to show up under the key characters of menu items, and prepares the system for the next character being typed to open a menu - so for example you press something like 'e' and the Edit menu pulls down.  Now you use an arrow key to move to the next item, or maybe a single character that's associated with one of the menu entries.
    Photoshop's goals for using modifier keys kind of conflict with this.  They've apparently tried to reach a balance where using the Alt key to modify some operation cancels the introduction of the next menu item. 
    But I don't think it's possible to be perfect at that, especially for example if the user presses Alt, decides not to do the operation he was thinking about doing (e.g., zooming out), then just releases the key.  Another factor might be the habits people get into for choosing tools.
    As a contrast, one person might not press the Alt key until they're sure they're going to do something with it (e.g., zoom out), and that same person might only choose tools from the Tools panel by clicking on them.  Another person might press the Alt key sometimes, but then stop before doing the operation it modifies.  That same person might be in the habit of choosing tools by their letter (e.g., E for eraser).  It's clear to see how the first person might never get into a condition where the menu introducer key (Alt) leaves them in a state where a menu opens inadvertently, while the latter might see it regularly.
    As far as why Photoshop might get into a mode where the menu introduction occurs when you HAVEN'T pressed the Alt key, I don't know; I certainly haven't seen that reported much if at all here on the forum.
    -Noel

  • Why does the iCal app on my MacBook Pro only have a 2-year archive? Where did everything before that go? And can I get it back?

    I use my iCal as a daybook and every now and again need to reference events or occurences from several years ago. I tried to look something up from back in 2010 and the iCal on my MacBook Pro only has iCal data from Jan 1, 2011 onwards. Everything I've put in prior to that seems to have disappeared! I can't find anything under preferences that mentions archiving/storage. Can I change the setting so that this info is kept forever? And can I get my previous info back?

    You can only sync with one computer. When you synced to the new computer it would have erased it and synced what was on the new computer.
    You always need to have a backup, an iPhone is not a storage device.
    When you get a new computer you need to transfer your library before syncing
    If you don't have a backup you may be out of luck
    The only thing would be if you're in the US and have access to the iCloud beta to reload purchases
    http://support.apple.com/kb/ht2519

  • Why does the CD icon not appear on my desktop?

    I just got my new iMac with lion on it - When I insert a CD or my external hard drive in the USB the icons do not appear on the desktop like they did on snow leapord. Any idea how to get the CD and drive Icon's to appear on my desktop?

    Lauren,
    Go to Finder>Preferences...>General...and make the appropriate choices:

  • Why does the Invisible Man keep playing my music?

    I have an iPod Touch & the only thing that bugs me with it is that when I finish with it, I pause the music and then turn it off with the switch at the top left
    However when I come back later, the music has restarted and been consistently playing whilst I was not aware - and so I am 20 songs further down my playlist & end up with less battery power than expected
    The only thing that I can think of for this is that the remote control on the headphones has been triggered, e.g. if the ipod is in my pocket or in a bag & it touches something.
    Has anyone else had this problem or am I missing something when turning it off?
    I have started disconnecting the headphones when not using it, I will see if this makes a difference
    Many thanks!

    ok what I have come up with ... if there is an update available from another store then the iPhone will keep trying to take you to that store but as you are logged in to other store it will not let you connect ... solution which worked for me was to go to the store requiring app update, update the app, change back to "now" store !!!!
    in my case
    1. change store to Canada
    2. update app i.e Google earth
    3. revert to UAE store ...
    Voila !!!!

  • PLEASE READ AND HELP. WHY does the tiger disc keep ejecting and wont start?

    i just got tiger and everytime i put it in the disc tray it ejects itself after 30 seconds or so... It wont show up on desktop or the startup disc.... tried holding C to boot up using it but it didnt work and tried all trouble shooting but nothing worked. Call apple but they said they dont support my computer anymore (its 6 years old). After i told them it was a G4 they said they couldnt offer me tech support. Please i have version 10.3.9. If you need anymore info please tell me. Why is it doing this. if there are multiple reasons plz tell me. I really want to install tiger. Yes i have full version of the DVD install disc. it is version 10.4 tiger. PLEASE help. Thank you

    Hi ddkillswitch, and a warm welcome to the forums!
    When you say you have the full version, what does it say on the Disks for numbers & such? Is it the Black Retail version?
    What happens if you have Disk Utility open when you insert the DVD, or is it CDs?
    What does System Profiler>Hardware>Disc Burning, (10.3.x may be a bit different), report for the Optical drive, like...
    PIONEER DVD-RW DVR-109:
    Firmware Revision: 1.58
    Interconnect: ATAPI
    Burn Support: Yes (Apple Shipped/Supported)
    Cache: 2000 KB
    Reads DVD: Yes
    CD-Write: -R, -RW
    DVD-Write: -R, -RW, +R, +RW, +R DL
    Burn Underrun Protection CD: Yes
    Burn Underrun Protection DVD: Yes
    Write Strategies: CD-TAO, CD-SAO, CD-Raw, DVD-DAO
    Media:
    Media Type: DVD+R DL
    Blank: No
    Erasable: No
    Overwritable: No
    Appendable: Yes

Maybe you are looking for

  • Apple TV to access photos and music from drive attached to airport extreme

    I have photos and music stored on external drive attached to Airport extreme. I would like to access them from my Apple TV. I know that I can store them on a computer using iTunes but I do not want to keep the computer on. Any help will be appreciate

  • Pivot in oracle 10g

    Hi Master , Q1> I have two column in a table on oracle 10g. data like : NAME     DATE a     10-JAN-13 a     11-JAN-13 a     12-JAN-13 I want the output like : NAME     DATE      a     10-JAN-13,11-JAN-13,12-JAN-13. Q2> How can i use pivot in oracle 1

  • Easy Transfer problems

    new Computer                       C:drive with win 7 is 40gb,  E:drive is 1tb old computer                         C:drive with win 7 is 500gb, D:drive is 80gb I want to transfer the contents of my old computer (400gb) to the E:drive on the new comp

  • Bank Details iView

    When selecting a new Bank Key in the Bank Details iView and confirming the new entry, the City and Postcode on the Bank Details iView is not changing with the new Address of the new Bank, i.e. the City and Postcode. Any ideas why it does not update t

  • What is the situation with the Ruby bindings for QT and KDE?

    The 'kdebindings' package in extra contains only Python bindings. The 'ruby-qt' package in community conflicts with 'kdebindings' and is out of date. The 'ruby-qt4' package on the AUR conflicts with 'kdebindings', is out of date, and fails to build.