ICal no longer listening for event notifications in 10.5.4

Up until 10.5.4, iCal would automatically add todo's and calendar events to its display when an event was created from an external app using the CalendarStore framework...
Not anymore... The events are created, but you need to click on a different view to get iCal to realize something has been added to the calendar
What's the normal way to submit a bug report to Apple on this?

Hi,
the normal way is to submit feedback over here: http://www.apple.com/feedback/ical.html
Björn

Similar Messages

  • Sevice Contract - Listener for Events Queue Issue

    Hi,
    The Listener for Events Queue in our Production environment ran very long, It took about 3+ hrs to complete the program. Is there any thing specific that we can check as part of RCA.
    Further there were 'library cache lock' found ... how this can impact the performance and how library cache lock works.
    Regards
    Tauseef E Ahmad

    Hi Team,
    i used the following code for recognizing the key events.
    String javaScriptKeyListener =
    " function keyListener() "
    +" { "
    +" alert(window.event.keyCode) ; } ";
    OAWebBean body = pageContext.getRootWebBean();
    if (body instanceof OABodyBean)
    ((OABodyBean)body).setOnLoad("onKeyPress = javascript:keyListener()");
    but it is not working as expected..
    Any suggestions ??
    Regards
    Sridhar

  • Listen for Events from anywhere

    Hello!
    I have an application with a rather complicated component hierarchy.
    How can I have it so that I can listen for events from any component in any component, regardless of who is who's child?
    Thank you!

    You need a broadcasting mechanism.
    Many architecture framework offers this facility, but as a quick hack you can try something like
    public class Broadcaster extends EventDispatcher  ( singleton anti pattern   )
    instance
    then just do Broadcaster.instance.addEventListener or removeEventListener. it's a crappy singleton, but at least it does not hold any global state.
    I've also seen people use Application.application to dispatch/listen globally but really don't like it.
    Note : Use weak references or your views will never be eligible for garbage collections.

  • Listen for events from an embedded Swf

    Hi there,
    I have spend so long searching for an answer on the web but can not find any that works, please help!
    I'm not even sure if this is possible but if anyone can guide me in the right direction I would most appreciate it!
    Basically what I would like to do is to load a swf in to my flex application - contrary to my post title it doesnt even have to be embedded - when the loaded swf finishes playing it's animation I want for it to dispatch an event and for flex to listen for that event and trigger a function when the event is captured.
    The animation is made in Flash CS3. I have not used any classes, rather on the last frame I set up an action to dispatch an event like this:
    dispatchEvent(new Event("finishedPlaying"));
    In my Flex Application I load my swf using swfLoader and I add an event listener to it like so:
    mySwfLoader.addEventListener("finishedPlaying", test);
    and my function is like this:
    private function test():void
         trace("it worked!");
    This is not working at all and I'm sure I am missing something but I cant seem to find any straightforward answer on the internet!
    Is it at all possible for a swf made in flash to communicate with flex??
    Since they are both written in AS3, I figured it would be easy but alas!
    If anyone can help me I would most appreciate it, thank you in advance!!
    By the way I have also tried:
    mySwfLoader.content.addEventListener("finishedPlaying", test);
    but no luck....

    You have to wait for the swf to complete loading before adding the event listener.
    When are you adding the event listener?
    mySwfLoader.addEventListener("finishedPlaying", test);
    Have a look at the SWFLoader complete event:
    http://livedocs.adobe.com/flex/3/langref/mx/controls/SWFLoader.html#event:complete

  • How to create an update listener using event notification in MDM Java2 API.

    Hi folks,
    I need some help on how to create an update listener for Customer updates in MDM using notification API. Could some one point me to where I should start. We are still using SP5.
    Thanks
    -Sai

    Hi All,
    I need to create update listener with notifications and it is giving this error.
    Nov 14, 2008 12:26:21 PM com.sap.mdm.internal.net.ConnectionImpl finalize
    INFO: Disconnect was not called. Cleaning up connection in finalize.
    Nov 14, 2008 12:26:21 PM com.sap.mdm.internal.net.ConnectionImpl finalize
    INFO: Disconnect was not called. Cleaning up connection in finalize.
    Nov 14, 2008 12:26:21 PM com.sap.mdm.internal.net.ConnectionImpl finalize
    INFO: Disconnect was not called. Cleaning up connection in finalize.
    I am still using SP05 and noticed that some mentioned that MDM4J.jar has to be used. Can someone throw some pointers how to do this with MDM4J.jar. Can I  include MDM4J.jar in the same project along with mdm-admin.jar, mdm-core.jar, mdm-common.jar, mdm-protocol.jar or I shoudl have only MDM4j.jar to create this listener. Any help is appreciated.
    Thanks
    -sai

  • Multiple recipients for event notifications/alarms

    Is it possible to send event notifications to mutiple email address.
    We use Convergence with latest patch level and Calendar Server 6.3
    Thanks for any hints or howtos
    Edited by: toni1988 on 30.04.2013 08:52

    I believe Calendar Server 6 supports only one notification address. CS7 supports multiple.

  • Mxml file listening for event.

    Hi All,
       I'm having following code in my project, here Report.mxml file displays to enter user details like (firstname,lastname,city,state,zip etc). After entering user information there is submit button. When user selects this button it needs to submit this data into database and return REPORT_ID back to confirmation state.
       My problem is that submitting data into database and getting REPORT_ID is taking some time because of that it is not displaying REPORT_ID in Confirmation viewStack. Rather than getting REPORT_ID from RemoteObject, hardcoding(given in red color) this value in my controller then it is displaying REPORT_ID.
      How to wait for event result for displaying confirmation viewStack. Can anyone please suggest me what changes I need to make so that confirmation page will be displayed only after getting REPORT_ID.
    ------------------------------- Report.mxml (begin) ----------------
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" width="100%" height="100%">
    <mx:Script>
        <![CDATA[
        import mx.controls.Alert;
        import com.westernstates.classes.controller.WesternStatesController;
        import com.westernstates.classes.model.WesternStatesModel;
        import com.westernstates.classes.events.*;
        private var _inquiryIdTxt:String;
        private var _inquiryIdTxtChanged:Boolean;
        public function set inquiryIdTxt(value:String):void
           _inquiryIdTxt = value;
           _inquiryIdTxtChanged = true;
           invalidateProperties();
           invalidateSize();
        override protected function commitProperties():void
          super.commitProperties();
          if (_inquiryIdTxtChanged)
              Alert.show("Inside commitProperties 1",_inquiryIdTxt);
             inquiryIdVal.text = _inquiryIdTxt;
             //inquiryIdVal.text = "1234"
             _inquiryIdTxtChanged = false;
        public function init():void{
            Alert.show("Inside newreport init mxml");
            myViewStack.selectedChild = newReport;
            Confirmation.visible=false;
            // Reset the value too.
            first_name.text = "";
            last_name.text = "";
            street_address.text = "";
            street_address2.text = "";
            city.text = "";
            state.text = "";
            zip.text = "";
            public function submitInquiry(evt:Event):void{
            var chk_speed_up:String = "";
            WesternStatesModel.inquiryConsumer.first_name = first_name.text;
              WesternStatesModel.inquiryConsumer.last_name = last_name.text;
              WesternStatesModel.inquiryConsumer.street_address = street_address.text;
              WesternStatesModel.inquiryConsumer.street_address2 = street_address2.text;
              WesternStatesModel.inquiryConsumer.city = city.text;
              WesternStatesModel.inquiryConsumer.state = state.text;
              WesternStatesModel.inquiryConsumer.zip = zip.text;
              myViewStack.selectedChild = Confirmation;
              newReport.visible=false;   
             this.dispatchEvent(new NewReportEvent());        
              //inquiryIdVal.text = _inquiryIdTxt;
              inquiryIdVal.text = WesternStatesModel.inquiryConsumer.inquiry_id;
        ]]>
    </mx:Script>
        <mx:ViewStack id="myViewStack" width="100%" height="100%" creationPolicy="all" >
        <mx:Canvas id="newReport" height="100%" width="100%" visible="true">
        <mx:Label x="10" y="10" text="NEW REPORT"  fontSize="18" fontWeight="bold" color="#F07012"/>
        <mx:TitleWindow width="100%" height="100%" layout="absolute" title="Create A New Report" fontWeight="normal" fontSize="13" y="38" x="0">
         <mx:Canvas height="100%" width="100%">
         <mx:VBox width="100%" height="100%">
             <mx:HBox>
                 <mx:Label text="Consumer Information: " fontSize="12" fontWeight="bold" color="#34B05D"/>
             </mx:HBox>
             <mx:HBox>
                 <mx:Label text="Report Type: " fontWeight="normal"/>
                 <mx:Label text="Phone" fontWeight="bold"/>
             </mx:HBox>
             <mx:HBox width="100%">
                 <mx:Label width="25%"  text="First Name:" fontWeight="normal"/>
                 <mx:TextInput width="25%" id="first_name"/>
                 <mx:Label  width="25%" text="Last Name:" fontWeight="normal"/>
                 <mx:TextInput width="25%" id="last_name"/>
             </mx:HBox>
             <mx:HBox width="100%">
                 <mx:Label  width="25%" text="Address1: " fontWeight="normal"/>
                 <mx:TextInput width="25%" id="street_address"/>
                 <mx:Label  width="25%" text="Address2:" fontWeight="normal"/>
                 <mx:TextInput width="25%" id="street_address2"/>
             </mx:HBox>
             <mx:HBox width="100%">
                 <mx:Label  width="25%" text="City: " fontWeight="normal"/>
                 <mx:TextInput width="25%" id="city"/>
                 <mx:Label  width="25%" text="State:" fontWeight="normal"/>
                 <mx:TextInput width="25%" id="state"/>
             </mx:HBox>
             <mx:HBox width="100%">
                 <mx:Label  width="25%" text="Zipcode: " fontWeight="normal"/>
                 <mx:TextInput width="25%" id="zip"/>
                 <mx:Label  width="25%" text="Phone"/>
                 <mx:TextInput width="25%" id="phone"/>
             </mx:HBox>
             <mx:HBox width="100%" horizontalAlign="center">
                 <mx:Button label="SUBMIT REPORT" id="submit_search" click="submitInquiry(event)" fillColors="#34B05D"/>
             </mx:HBox>        
            </mx:VBox>
        </mx:Canvas>
        </mx:TitleWindow>
        </mx:Canvas>
            <mx:Canvas id="Confirmation" width="100%" height="100%">
            <mx:Label x="10" y="10" text="NEW REPORT"  fontSize="18" fontWeight="bold" color="#F07012"/>
            <mx:TitleWindow width="100%" height="132" layout="absolute" title="Create A New Report" fontWeight="normal" fontSize="13" y="38" x="0">
            <mx:VBox width="100%" height="81">
                 <mx:HBox>
                     <mx:Label text="Submission Confirmation:" fontSize="12" fontWeight="bold" color="#34B05D"/>
                 </mx:HBox>
                 <mx:HBox>
                     <mx:Label text="Report has been created successfully with Report ID:"/>
                     <mx:Label id="inquiryIdVal" fontSize="12" fontWeight="bold" color="#34B05D"/>
                 </mx:HBox>
             </mx:VBox>
            </mx:TitleWindow>
            </mx:Canvas>
        </mx:ViewStack>
    </mx:Canvas>
    ------------------------------- Report.mxml (end)   -----------------
    ------------------------------- NewReportEvent.as( begin) ---------------
    package com.westernstates.classes.events
      import flash.events.Event;
      // This custom event should be dispatched if the user
      // successfully logs into the application.
      public class NewReportEvent extends Event{   
        public static const REPORT:String = "report"; 
        public function NewReportEvent(){
          super(NewReportEvent.REPORT);
    ------------------------------- NewReportEvent.as( end)   ----------------
    ------------------------------- WesternStatesController.as (begin) ------------
       public class WesternStatesController extends UIComponent{
        public function WesternStatesController(){
          addEventListener( FlexEvent.CREATION_COMPLETE, init);
        // Add event listeners to the system manager so it can handle events
        // of interest bubbling up from anywhere in the application.
        private function init( event:Event ):void{    
         systemManager.addEventListener(NewReportEvent.REPORT, newInquiry, true);
          login(new LoginEvent(LoginEvent.LOGIN));
            public function newInquiry(evt:NewReportEvent):void{
                 Alert.show("Inside newInquiry", evt.type);
                 addNewInquiry();
                 //getNewInquiryResult();
             }//End of newInquiry
             public function addNewInquiry():void
                 ro = new RemoteObject();
                 setUpAmfChannel();
                 ro.destination = "manageInquiryService";
                 ro.addEventListener("fault", faultHandler);      
                 ro.createInquiry.addEventListener("result", getNewInquiryResultHandler);
                 Alert.show("Before addNewInquiry");      
                 ro.createInquiry(WesternStatesModel.inquiry,WesternStatesModel.inquiryConsumer);
             }//End of addNewInquiry
             public function getNewInquiryResultHandler(event:ResultEvent):void
                     WesternStatesModel.inquiryConsumer.inquiry_id = event.result as String;
                    //WesternStatesModel.inquiryConsumer.inquiry_id = "09S-1234";  UNCOMMENT     
             }//End of getNewInquiryResultHandler
    ------------------------------- WesternStatesController.as (end) ---------------
    Thanks in advance.
    Regards,
    Sharath.

    Can someone please tell me how to add event handler to show REPORT_ID before displaying confirmation page. Confirmation page should be displayed once data saved successfully and getting REPORT_ID back from server.
    How to set variables for .mxml from action script(.as) file.
    Thanks,
    Sharath.

  • Listen for event in own class?

    Hi
    I dispatch events from models to classes listening. How do you set up an event and listener in the same class?
    Eg for the former - a model "MyModel" to class - it's:
    public static const MY_VAR:String = "myVar";
    triggered by...
    dispatchEvent(new Event(MY_VAR));
    picked up in another class by...
    modelVar.addEventListener(MyModel.MY_VAR, doSomething);
    but what if the class that's dispatching also has the listener?
    So if MyClass is dispatching the event, along the lines of...
    addEventListener(MyClass.MY_VAR, doSomething);
    Cheers for taking a look

    Very often I'm waiting for a few key items before I can finally do something else. Setting simple flags or checking nulls can help with this.
    Often I download multiple data structures (JSON/XML/etc) and I need all of them before I can parse them because the co-depend on each other. URLLoaders finish at different times so I just set a flag for what I need but check if all are complete before I continue each time one finishes.
    e.g.
    package
         public class IHateWaiting extends EventDispatcher
              public static const MY_VAR:String = "myVar";
              private var _xmlA:XML;
              private var _xmlB:XML;
              public function IHateWaiting()
                   // load A
                   var ulA:URLLoader = new URLLoader();
                   ulA.addEventListener(Event.COMPLETE, _handleFinishedF);
                   ulA.load(new URLRequest("http://www.example.com/a.xml"));
                   // load B
                   var ulB:URLLoader = new URLLoader();
                   ulB.addEventListener(Event.COMPLETE, _handleFinishedF);
                   ulB.load(new URLRequest("http://www.example.com/b.xml"));
                   // listen to self
                   addEventListener(IHateWaiting.MY_VAR, _handleAppEventF);
              private function _handleFinishedF(e:Event):void
                   if (e.type == Event.COMPLETE)
                        var data:XML = XML(e.target.data);
                        // A or B? any way you can tell
                        if (data.A.length() > 0) _xmlA = data;
                        else if (data.B.length() > 0) _xmlB = data;
                        // event method (requires extra handler or a fake event)
                        if (_xmlA && _xmlB) dispatchEvent(new Event(IHateWaiting.MY_VAR));
                        // preferred direct reference, no handler needed
                        // if (_xmlA && _xmlB) _parseXML();
              private function _handleAppEventF(e:Event):void
                   if (e.type == IHateWaiting.MY_VAR) _parseXML();
              private function _parseXML():void
                    // parse XML
    I recommend the reference version from post #2. It's cleaner because you don't need to double up on functions (handler->reference) like you see above with dispatching. The only purpose for _handleAppEventF() in this case is just to run _parseXML(), which is a useless duplicate function.
    I've always kept my handlers free of model-esque logic, so you see me calling a different function from that handler, _parseXML(). This is just because I want my handlers to only handle events and then hand off the work elsewhere.
    Instead of dispatching the event, I agree with moccamaximum, run the method directly. Even if it's 2 lines of code to do 1 thing, I think the clarity of it is much cleaner coding. So I would recommend nuking the self-listener in the constructor above. When I have all the data I'm looking for, I'd run the methods in the class directly and If the parent needs to know, I'd dispatch when they complete.
    e.g.
              private function _handleFinishedF(e:Event):void
                   if (e.type == Event.COMPLETE)
                        var data:XML = XML(e.target.data);
                        // A or B? any way you can tell
                        if (data.A.length() > 0) _xmlA = data;
                        else if (data.B.length() > 0) _xmlB = data;
                        if (_xmlA && _xmlB)
                             // parse first (synchronous)
                             _parseXML();
                             // xml ready, dispatch to parent
                             dispatchEvent(new Event(IHateWaiting.MY_VAR));

  • Ical leaves no room for events

    I have a macbook air, iPhone and iPad and have them all synced on the cloud.
    When I enter events, sometimes it will just format them normally.
    If I enter 10am meeting with Jane it will show up on the calendar as: meeting with Jane  and there will be a small grey 10a off to the right. 
    But if the time I have to enter is not on the hour exactly, for instance, if it is 10;15am, what will happen is that it will say: Meeting with Jane  and in grey on the left it will say fri, june 8, 10;15am.  Which means that I will only see Meeting with…. because there is no room for Jane!
    Help, why does it do that and how do I stop it? it didn't used to do that.
    And sometimes it will say gmt, or pdt or pst  and sometimes it won't. I do not have the time zone support on, as I prefer to just adjust timing when I am traveling on my own. but there is no logic to why it will label it sometimes and why not.
    Then a week ago it ate a section of my calendar. most of the events for a three week span just disappeared, but not all of them.
    so is this a corrupted ical and do I need to somehow remove it and re install? or is this a common issue with ical that the dates are wonky and badly designed, and the events disappearing is a separate issue?
    Help!
    Katarina

    nobody has an answer?? has it happened for anyone else.

  • ICal not accepting times for events

    Not sure I'm on the right forum. Posted about this on the MacBook forum but haven't gotten a response there.
    iCal recently stopped accepting times for me. When I go to enter an event there is space for only two digits in the time field. I assumed the numbers entered would be for the hour. When the event is entered, however, it turns out that the hour is always 07 and the number entered in the two-digit field is used as the minutes value.
    The calendar is not much use to me this way. Help would be greatly appreciated.
    Thanks,

    Very cool! Thanks for the detailed reply and glad you found the solution. BTW the plist files are property lists files, in short like a preference. Sometimes they can get corrupted however the good news is the solution is very simple. Just do what you did (locate the offending plist and drag it to the desktop) and it will recreate itself.
    If you ever want to get really geeky about them here is a more detailed article:
    http://reviews.cnet.com/8301-13727_7-10332226-263.html?tag=mfiredir
    Thanks for the star and happy computing.
    Roger

  • Show long text for Quality Notification when double click field in alv

    I have an ALV grid called using a FM and I am using the user command routine to do somthing when a particular cell is  clicked.  I want to  call up the root cause text from the action box of the QN via QM03 .  I am building a BDC table to call with a CALL transaction but when I write my BDC up to that point, the program is running the BDC but not going to the point where the long text is displayed is i am in mode 'N'.
    FORM user_command USING r_ucomm LIKE sy-ucomm
                             rs_selfield TYPE slis_selfield.
      READ TABLE itab INDEX rs_selfield-tabindex.
      CASE r_ucomm.
        WHEN '&IC1'.
          CASE rs_selfield-fieldname.
    * When double click on root cause, display root cause long text
            WHEN 'ZZ_URCOD'.
              PERFORM display_root_cause_text.
              CALL TRANSACTION 'QM03' USING gt_bdc MODE 'N'.
      ENDCASE.
    ENDFORM.                    "user_command
    FORM display_root_cause_text .
      FREE gt_bdc.
      PERFORM fill_bdc USING 'SAPLIQS0'     '0200'      'X'.
      PERFORM fill_bdc USING 'RIWO00-QMNUM'  itab-qmnum  space.
      PERFORM fill_bdc USING 'SAPLIQS0'     '7200'      'X'.
      PERFORM fill_bdc USING 'BDC_OKCODE'  '=10\TAB03'  space.
      PERFORM fill_bdc USING 'SAPLIQS0'     '7200'      'X'.
      PERFORM fill_bdc USING 'BDC_CURSOR'
                             'QMICON-LTURSACHE(01)'     space.
      PERFORM fill_bdc USING 'BDC_OKCODE'  '=UX01'  space.
    ENDFORM.                    " DISPLAY_ROOT_CAUSE_TEXT
    Any one have any suggestions of know of a BAPI that I can achieve the same thing?
    Thanks
    Larissa Maryniuk

    Hello,
    also try to use the messages clause (of type BDCMSGCOLL).
    This will return the system messages.
    call transaction 'XXXX' using BDCTAB
                                            mode 'P'
                                            messages into MSG_TAB.
    Try to change the mode from 'N' to 'P' and try to place a breakpoint and check what happens.
    Alternatively, you can read the Quality Notification text using FM READ_TEXT, and then show this data to the user in pop-up, rather than calling the tx.
    Hope this helps.

  • Listen for events in another Gui class

    Most of the GUIs I have written to date have consisted of either a single class or multiple self-contained classes - mainly extensions of JPanel with JButtons etc to perform certain tasks.
    Now I want to be able to click a JButton in one class which will invoke a method in another.
    The code is too lengthy to post here but this is the general layout:
    JFrame Simulation_GUI contains a JPanel (panelMain) which is set as the content pane
    panelMain contains two GUI classes which extend JPanel;
    buttonPane > contains a number of JButtons, including the one I want to click
    loadingPane > contains the method (which takes a Hastable as an argument) I want to run
    All three panels are declared in the main class which extends JFrame, so I know that from there I can simply call;
    loadingPanel.runLoads(htData); but how do I do this from the JButton on the buttonPane.
    Any assistance greatly appreciated as I have little enough hair at the moment and can't afford to tear much more out.
    Thanks in advance

    Class GUI1 {
    //Display all the buttons.
    public void init() {
    Button.addActionListener(new
    ener(new SomeClass(this));
    Class SomeClass implements ActionListener {
    GUI1 gui = null;
    SomeClass(GUI1 gui) {
    this.gui = gui;
    public void actionPerformed(ActionEvent e) {
    //Do all your process here
    gui.setTable(table);    //table would be ur
    ould be ur hashtable
    }Cheers
    -PThis didn't fully answer my question but did two things:
    1. Told me that it is at least possible and it is just me having a senior moment,
    2. Sent me on the right road to finding a solution
    With additional help from the following post I have sorted my problem. Basically I had to centrallise the event handling into a different class. This was instantiated by the main GUI class and passed to the other GUI components as an argument.
    http://forum.java.sun.com/thread.jspa?threadID=576012&messageID=2881969
    Simple when you know how...!
    prashanth_kuppur - have some Duke Dollars on me and thanks for the poke in the right direction.

  • Listening for an event in main from a component

    Hi
    Ok so i have a Flash Builder project 4.5 that i created in Flash Catalyst thats draws all its data from MySql and four months into the build, as this is my first web project im noticing that when the page loads up in the browser it loads everything at once! and as im hoping to reuse some of the same components for diffrent tasks i assume that if i put the data retrivail under events that happen within the web page this will hopeful control the data flow as well as showing the correct data depending on CurrentState!
    The problem that im having is that my buttons are in my Main Application and the data retrival process is in my components! so i was trying to create addEventListener(MouseEvent.CLICK events in a component that was listening for events in my Main application. i have search the internet but every one is talking about the process in the main or component but not both!
    Does anyone know what im talking about and could you please share some light please

    Do you ever get to a point in programming where you think that perhaps i have choosen the wrong hobby to get infatuated about
    That code worked really well targetplanet but it had a side effect that just makes me nutts lol
      as it triggered a mouse event function in the component that was initialized in Main and just made my web site go nuts . the component that we initialized was a skin but its itemRenderer component that followed had the mouse event! perhaps i better start again with me learning perhaps i missed something
    or perhaps i should just have one component to one job instead of trying to be clever and mutitask with less components!

  • Listening to Events from inside loaded swf

    In Flash Builder 4 I have a swfLoader with which I load swf files. The swf files that get loaded get created in Flash Pro, and I would like to be able to listen for events from the level that they get loaded from. What would I have to specify in the Flash file for the path? Can't seem to be able to specify the right path.
    Thanks a lot for any help!

    I wouldnt say this is elegant but we have been having issues gaining direct access to the SWF's loaded in via OSMF. However I have done setups where I dispatch an event from a SWF and have it bubble up and catch it on the MediaContainer level. Not elegant but works- otherwise may need to make a custom MediaElement and bypass the SWFElement to gain tighter control - seems like there should be a better way, but I havnt found it.

  • Getting event notifications for calendar I'm no longer subscribed to

    Since updating to iOS 6, my iPhone has been giving me reminder notifications (with sound) for a calendar that I'm no longer subscribed to (a Meetup calendar). The events don't show up in iCal or my iPhone Calendar app, just when the notification happens... and when I swipe to look at the notification, it says it's from "untitled calendar". I can delete the event at that time, after the notification alert, but that's not helpful.
    I've looked in iCloud and on my phone's settings, but I can't find this "untitled calendar" anywhere and so can't delete it or the ghost events.

    I found why I don't receive the notifications into my calendar.
    I don't know how this is possible, but the notifications are sended to another apple user ID that belongs to me.
    I cleaned the contact information on the cloud and on the local contacts app. in my mac, my wife mac and all my ios devices.
    Still I don't receive the notifications.
    I managed to receive the an email for every notification since I changed the options on the icloud calendar preferences advanced tab.
    But now, I put it back to in app notification, now I still get an email, but now I get two instead of one, one that informing that I refused the invitation and one for the invitation.
    Any suggestions?

Maybe you are looking for