active questions tagged alerts - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T10:24:45Z http://stackoverflow.com/feeds/tag/alerts http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1840301/sharepoint-alert-email-indicates-fields-have-changed-that-havent 0 SharePoint alert email indicates fields have changed that haven't Chloraphil 2009-12-03T14:43:28Z 2009-12-03T14:56:24Z <p>In particular, the "Person or Group" fields behave this way. When I edit an item (without modifying the value in the person column) in the alert I get the following:</p> <blockquote> <p>&nbsp;&nbsp;<strike>chloraphil; chloraphil</strike> chloraphil</p> </blockquote> <p>Obviously, typical SharePoint behavior is for changed fields to have the previous value in strikethrough and the new value next to it.</p> <p>Note that expected behavior is for it to not display as edited - it should just show "chloraphil."</p> <p>EDIT: This only seems to be a problem with my custom list definition with Event Receivers and all. I could not replicate on a normal list.</p> <p>EDIT2: This happens even if I disable the ItemUpdating and ItemUpdated event receivers. What could be causing this?</p> http://stackoverflow.com/questions/703483/what-does-ialertnotifyhandlers-onnotification-return-value-do 1 What does IAlertNotifyHandler's OnNotification() return value do? Stingray 2009-03-31T23:29:52Z 2009-11-28T10:00:02Z <p>BY now I've created a number of custom alert handlers for SharePoint 2007 using the <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.ialertnotifyhandler.aspx" rel="nofollow">IAlertNotifyHandler</a> interface. Using this interface you have to implement a method called <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.ialertnotifyhandler.onnotification.aspx" rel="nofollow">OnNotification()</a>, which has the following signature:</p> <pre><code>bool OnNotification (SPAlertHandlerParams ahp); </code></pre> <p>As you can see this method should return a boolean value. The official MSDN docs list the following explanation of this return value:</p> <blockquote> <p><strong>true</strong> if Windows SharePoint Services marks the notification as processed; otherwise <strong>false</strong></p> </blockquote> <p>At first I thought this meant that if you return <em>true</em> you signal SharePoint that your handler has done all alert processing and SharePoint shouldn't execute its default behaviour. However, in practice there doesn't seem to be any difference in the way the alerts are handled. You can return <em>true</em> or <em>false</em>, it doesn't make any difference.</p> <p>I then used Reflector to dissassemble the source code, but unfortunately the code that processes OnNotification's return value isn't managed, but native.</p> <p>So who knows what that return value means?</p> http://stackoverflow.com/questions/1782109/msn-messenger-growl-style-alerts-in-windows-c 0 MSN Messenger/Growl Style Alerts in Windows C++ Adam Dempsey 2009-11-23T09:46:33Z 2009-11-24T00:56:53Z <p>Does anyone know of any C++ Libraries which I can easily integrate in a project to allow me to show MSN Messenger/Outlook/Growl style toast popups?</p> <p>Tried having a look and found lots of Visual Basic controls etc but nothing for C++ so far.</p> http://stackoverflow.com/questions/1701772/jconfirm-with-this-existing-code-solved 1 jConfirm with this existing code [Solved] lena 2009-11-09T15:32:52Z 2009-11-23T14:27:07Z <p>Hi,</p> <p>I need help to use jConfirm with this existing code (php &amp; Jquery &amp; jAlert).</p> <pre><code>function logout() { if (confirm("Do you really want to logout?")) window.location.href = "logout.php"; } </code></pre> <p>If I just change confirm to jConfirm this not enough to make it work...</p> <p>Thanks for your help</p> <p>Lena</p> http://stackoverflow.com/questions/1764852/where-best-to-place-alert-notifications-on-a-website 0 Where best to place alert/notifications on a website? Rew 2009-11-19T16:59:51Z 2009-11-19T17:23:17Z <p><strong>What do I mean by alert/notification?</strong></p> <p>Example is an instant-messaging application, on the event when a user/friend comes online, you receive an alert that they are online - this alert is what I'm talking about.</p> <p><strong>How is this done on the desktop?</strong></p> <p>On desktop applications pop-up alerts/notifications appear bottom-right corner on Windows and top-right on MacOS X (for me anyway).</p> <p><strong>What makes sense for websites?</strong></p> <p>Say you're designing an IM tool that is website-based (used within a browser). Would you replicate the alert behaviour found in operating systems like Windows, or would you do something different.</p> <p>My thoughts are that users are most focused on the area top-left* when browsing websites, so does it make sense to display an alert bottom-right? But at the same time users are used to alert behaviour based on how their OS works, does this really matter though?</p> <p><strong><em>Where would you place alerts on a webpage?</em></strong></p> <blockquote> <p>*For the majority of web users (ignoring right-to-left languages for now).</p> <p>Note: This isn't strictly a programming question, and if I could afford it, I would hire a professional UI designer to figure this stuff out :-)</p> </blockquote> http://stackoverflow.com/questions/1760397/tfs-project-alerts 0 tfs project alerts sinie 2009-11-19T01:45:26Z 2009-11-19T02:07:53Z <p>the 4 project alerts in TFS are good but I need some more of mine in them. The important one i want is when i create a new bug in TFS i want an email to be sent out. Is there a way i can create a new alert in the project alerts? If so how?</p> http://stackoverflow.com/questions/1746061/tfs-email-notification 0 tfs email notification ijuyee 2009-11-17T01:38:11Z 2009-11-18T08:32:35Z <p>I wanted to know when i add a bug (Work Items) in TFS, and assign it to some user, I want an email sent to that user. Also if an existing bug has the assigned to changed, I want that user to get it. Is it possible to send Alerts to users when they're assigned those bugs in TFS 2008?</p> http://stackoverflow.com/questions/921509/how-to-create-a-daily-summary-alert-for-any-change-in-a-sharepoint-site 3 How to create a daily summary alert for any change in a SharePoint site Kit Menke 2009-05-28T15:31:40Z 2009-11-15T23:32:10Z <p>I recently got the requirement for a person to receive a daily summary alert for any change within a SharePoint site; each site has an owner who is in charge of the content on their site.</p> <p>The current way we have something working is to automatically set up alerts for every list/library within the site.</p> <pre><code>// Get the Lists on this Site SPListCollection siteLists = currentSite.Lists; foreach (SPList list in siteLists) { if (!list.ToString().Equals("Master Page Gallery")) { if (list.ReadSecurity == 1) // user has read access to all items { // Create an Alert for this List Guid alertID = currentUser.Alerts.Add(list, SPEventType.All, SPAlertFrequency.Daily); // Set any additional properties SPAlert newAlert = currentUser.Alerts[alertID]; } } } </code></pre> <p>This creates two problems:</p> <ol> <li>The user has a lot of different alerts created. Ideal: Only ONE email with the daily summary.</li> <li>Some sort of monitor would have to be set up to check for new lists or libraries in the site and automatically set up alerts for the user.</li> </ol> <p><strong>Q: How can I create a daily summary alert for all changes in a site?</strong></p> http://stackoverflow.com/questions/1709958/how-can-i-use-autoit-to-close-all-javascript-alerts-and-confirmations-that-may-ap 1 How can I use Autoit to close all javascript alerts and confirmations that may appear? Parris 2009-11-10T18:02:52Z 2009-11-11T20:39:18Z <p>I am testing in selenium and I have a bunch of stuff that happens on page load. I found out about autoit, and I was thinking that it could handle all javascript dialog issues. I was searching around the web for some autoit script that could handle this... </p> <p>Other options would be helpful as well!</p> <p>I don't necessarily need all the code, but some point in the right direction would be helpful.</p> http://stackoverflow.com/questions/1626711/get-status-of-immediate-alert-job-using-sharepoint-api 0 Get Status of Immediate Alert job using SharePoint API Flips 2009-10-26T19:03:34Z 2009-10-26T19:03:34Z <p>I want to get the status of all Immediate Alerts jobs in the farm. Just like they are showed in Central Admin - Timer Job Status page. I found a way to do it querying TimerRunningJobs table but I would like to use the API instead. From the API I can get <strong>job-immediate-alerts</strong> thru class: <strong>Microsoft.SharePoint.Administration.SPWebApplication</strong> but it doesn't give me the status. It just tells if it's enabled or not and frequency. Is it possible to get this info using the API instead of querying SQL server? Thanks in advance, Flips</p> http://stackoverflow.com/questions/1378671/push-notifications-in-android-platform 4 Push Notifications in Android Platform Vinod 2009-09-04T11:25:06Z 2009-10-20T20:48:30Z <p>I am looking to write an app which received pushed alerts from a server. I found a couple of methods to do this. 1) SMS - Intercept the incoming SMS and initiate a pull from the server 2) Poll the server periodically</p> <p>Each has its own limitations. SMS- no guarantee on arrival time. Poll may drain the battery.</p> <p>Do you have a better suggestion please?. Thanks much.</p> http://stackoverflow.com/questions/1578935/cant-get-nsalert-to-continually-bounce-dock-icon 0 Can't get NSAlert to continually bounce dock icon John Gallagher 2009-10-16T15:56:42Z 2009-10-17T10:36:49Z <p>I seem to have the exact opposite problem than <a href="http://stackoverflow.com/questions/295333/nsalert-without-bouncing-dock-icon">this question on stopping dock bounce.</a> </p> <p>I can't get my app to continually bounce the dock icon!</p> <p>I too hate continually bouncing dock icons, but in this case if the user doesn't realise my app can't launch, they could potentially lose hours of time tracking data.</p> <p>Here's my code that I've put in the app delegates applicationWillFinishLaunching: method.</p> <pre><code>if (!AXAPIEnabled()) { // I'm checking that Accessibility is turned on NSAlert *alert = [[NSAlert alloc] init]; [alert setAlertStyle:NSCriticalAlertStyle]; [alert setMessageText:@"Lapsus cannot run."]; [alert addButtonWithTitle:@"Open Accessibility Prefs..."]; [alert addButtonWithTitle:@"Quit"]; [alert setInformativeText:@"Lapsus needs \"Enable access for assistive devices\" in the Accessibility pane of System Preferences to be turned on."]; [NSApp activateIgnoringOtherApps:YES]; int attentionrequest = [NSApp requestUserAttention:NSCriticalRequest]; NSInteger returnValue = [alert runModal]; .... [NSApp cancelUserAttentionRequest:attentionrequest]; } </code></pre> <p>I've tried removing the requestUserAttention line. </p> <p>I've tried putting the requestUserAttention line in lots of different places: directly before the runModal call, first thing etc.</p> <p>I've tried removing the activateIgnoringOtherApps line.</p> <p>No matter what I do, the dock icon bounces once then stops. </p> <p>The user will probably see that my app as I'm bringing it to the front, but there is a possibility that if they click at the right time, their active application will hide the critical error message.</p> <p>So I want something so that even when their dock is hidden, they know something's not right. </p> <p>I'm building this on Mac OS X 10.5 Leopard. Any ideas on what I'm doing wrong? Or does Leopard not support continually bouncing dock icons any more?</p> <p><strong>UPDATE:</strong></p> <p>I was putting the method call in applicationWillFinishLaunching: </p> <p>As soon as I put it into applicationDidFinishLaunching:, and removed the activateIgnoringOtherApps: call, it worked as required.</p> <p>However, my question still is "Can I bring my app to the front as well as bouncing the dock icon? From the first answer, it would seem not, although I'm not sure I understand why.</p> <p><strong>UPDATE:</strong></p> <p>I didn't understand why because I wasn't thinking it through. Now that it's been pointed out to me that stealing focus means the dock got what it wanted, it makes perfect sense.</p> <p><strong>Conclusion</strong></p> <p>If you want the users attention, don't use [NSApp activateIgnoringOtherApps:YES]; </p> http://stackoverflow.com/questions/1570556/iphone-phone-call-and-other-system-popup 0 Iphone phone call and other system popup smaryus 2009-10-15T06:07:55Z 2009-10-15T06:07:55Z <p>Is there a way to detect if the application lose focus because a phone call or because an other system message is on top of it.</p> <p>When receive phone the system call applicationWillResignActive, and when other message box from the system is displayed the same function applicationWillResignActive is called.</p> <p>Thans</p> http://stackoverflow.com/questions/1505471/web-usability-alert-notification-how-to-attract-attention 1 Web usability: alert/notification - how to attract attention? bkritzer 2009-10-01T17:56:25Z 2009-10-01T18:35:34Z <p>I'm building a web application where one of the features causes users to be notified in real-time when an alert pertaining to them occurs, similar to the big orange bar in Stack Overflow. </p> <p>I have a few options, and I was wondering if there was a usability guideline on the best way to go about this. One option is to have a small notifications box on the screen that flashes colors when an alert appears, but I'm worried that a simple, repeated change in color won't be sufficient to attract the user's attention.</p> <p>Another option is to have a window come floating across the screen, demanding the user's attention, but I've always found those to be obtrusive. Maybe another form of animation could be less annoying yet equally likely to attract the user's attention?</p> <p>I'm not really looking for an opinion as much as I'm looking for a usability discussion/resource that might cover this kind of decision.</p> http://stackoverflow.com/questions/756752/non-modal-notification-box-from-batch-script 0 Non-Modal Notification Box from batch script pc1oad1etter 2009-04-16T15:47:09Z 2009-09-28T17:00:02Z <p>I would like to have a non-modal alert box called form a batch file. Currently I am using vbscript to create a modal alert box:</p> <pre><code>&gt;usermessage.vbs ECHO WScript.Echo^( "Generating report - this may take a moment." ^) WSCRIPT.EXE usermessage.vbs </code></pre> <p>But I would like to proceed with the script (generating the report) without waiting for user interaction. How can I accomplish this? I don't care if it's vbscript or not - I just want it to work from my batch script (in Windows XP).</p> http://stackoverflow.com/questions/1467313/iphone-app-generate-alert-popups-when-app-is-closed 0 iPhone App - Generate Alert Popups when App is Closed Ryan 2009-09-23T16:56:43Z 2009-09-23T17:01:03Z <p>In creating an iPhone app, is it possible to generate a popup alert on the iphone (similar to a Push notification) when the app has been closed. A simple example would be to have an app that can set a reminder at 5:00PM January 5th, 2010. The app can be closed and the reminder will popup at that time. I don't think this is possible but would like to know if anyone has any ideas? Again, i do not want a Push solution but rather a solution that does not require internet access (i.e. "local" push from iPhone). Thanks. </p> http://stackoverflow.com/questions/1371204/invoke-an-alert-on-an-href-then-continue-to-a-new-page 1 Invoke an alert on an href, then continue to a new page Jen 2009-09-03T02:49:26Z 2009-09-03T04:26:36Z <p>I have a link to a page which invokes the 'Sexy Alert Box' script to pop a message asking if users agree to Terms and Conditions with options "I Agree" and "Cancel". </p> <p>I've got that much going but now <strong>I need for the "I Agree" option to send them to a new page</strong>. ("Cancel" returns the user the current page.) </p> <p>Something to do with <code>document.location.href</code>?</p> <p>I am using the mootools framework.</p> <p><a href="http://www.coders.me/web-html-js-css/javascript/sexy-alert-box-12-mootools-jquery" rel="nofollow">Sexy Alert Box 1.2 mootools &amp; jQuery</a></p> <p>Here's the code:</p> <pre><code>&lt;a href="#" onclick="Sexy.confirm('Do you agree to the terms and conditions?', { textBoxBtnOk: 'I Agree', // goes to www.newpage.com textBoxBtnCancel: 'Cancel' // return to current page });"&gt;Link&lt;/a&gt; </code></pre> http://stackoverflow.com/questions/1289234/alerts-when-navigating-away-from-a-web-page 3 Alerts when navigating away from a web page Vijay Dev 2009-08-17T17:13:02Z 2009-08-21T17:37:34Z <p>When I try to close my Google docs tab with unsaved changes, this is what I get in my browser (FF 3.5). </p> <blockquote> <p>Are you sure you want to navigate away from this page?</p> <p>You have unsaved changes in this document. Click Cancel now, then 'Save' to save them. Click OK now to discard them.</p> <p>Press OK to continue, or Cancel to stay on the current page.</p> </blockquote> <p>My question is whether such alerts are part of the web app (gdocs for eg.) or are they given out by the browser? If latter, how is this done? </p> http://stackoverflow.com/questions/1218362/changing-the-task-overdue-email-format-in-moss-2007-document-approval-workflow 1 Changing the Task Overdue email format in MOSS 2007 document approval workflow Emad 2009-08-02T07:48:57Z 2009-08-03T10:52:59Z <p>How can I change the Email sent when a document in the out of the box document approval workflow is overdue.</p> <p>The email I get is something like <hr /></p> <p>Task assigned to Name here on 7/13/2009 is overdue. Due by 7/3/2009 Please approve document1 From: Someone Sent: Monday, July 13, 2009 9:50 AM<br /> To complete this task: 1. Review Document. 2. Perform the specific activities required for this task. 3. Use the Edit this task button to mark the task as completed. <hr /></p> <p>how can I change that? for example the "due by" be highlighted in red.</p> http://stackoverflow.com/questions/1193379/when-to-use-a-uialertview-vs-uiactionsheet 1 When to use a UIAlertView vs. UIActionSheet nevan 2009-07-28T11:03:38Z 2009-07-28T12:38:07Z <p>Are there situations where a UIAlertView is better to use than a UIActionSheet? What are the typical scenarios where you would use one over the other?</p> <p>I'm programming a navigation bar button to open a UIWebView in an external application, and at first I started programming a UIAlertView, then I thought that an action sheet might be better for this situation. </p> <p>Are there any formal guidelines for which to use in different situations? Thanks.</p> http://stackoverflow.com/questions/1186822/can-i-send-alert-message-to-msn-messenger-or-yahoo-messenger-from-servers 1 Can I send alert message to MSN messenger or Yahoo! messenger from servers? ffffff 2009-07-27T07:05:34Z 2009-07-27T07:25:40Z <p>There is a server changing a batch to add up data on the date and time, but I want to send the end states (normal end or abnormal termination) of this batch to Yahoo! Messenger or one's ID of the MSN messenger as a message, but a page and the document which I am useful for are not found.</p> <p>Can I send alert message to MSN messenger or Yahoo! messenger from servers?</p> http://stackoverflow.com/questions/1183602/how-might-i-display-a-legal-drinking-age-alert-for-a-website 3 How might I display a "legal drinking age" alert for a website? Debi 2009-07-26T02:42:50Z 2009-07-26T03:05:00Z <p>I have a website where you're supposed to be 21 or older to buy the wine from this site. How do I put an "alert" up stating that by clicking through to the buy pages you certify that you are 21 years or older?</p> http://stackoverflow.com/questions/721386/implementing-an-emergency-alert-with-skype 1 Implementing an emergency alert with Skype? Robert Gould 2009-04-06T13:15:46Z 2009-07-20T18:15:34Z <p>For a system I'm working on I need to call a list of Phone numbers programatically when something breaks. Basically a simple phone based alert system, and am guessing it could be done with Skype, but I'm wondering if anyone has experience doing this, Skype or not.</p> <p>Anyways links and or tutorials would be great help.</p> <p>Thanks</p> http://stackoverflow.com/questions/1120427/hide-field-in-sharepoint-alert-email 1 Hide field in SharePoint alert email Chloraphil 2009-07-13T16:09:39Z 2009-07-14T10:30:27Z <p>How can I hide a field in a SharePoint alert?</p> <p>I have a custom event list (Calendar). I have a field (of type Note - aka Multi-line text) whose XML contents I generate manually in an event receiver. All my calendar views use this field as the Title for the Month, Week, and Day views.</p> <p>I have a web part I include on the page that runs a jquery script that converts the XML title into a background color and mouseover text.</p> <p>The problem is that this field and its ugly xml show up in sharepoint alerts. If I set the field to Hidden=true then it does not show up in the email, but it is no longer available to select as the Title for the Month, Week, and Day views when creating a new View. This is not acceptable as users need to be able to create views and be able to select this field as the title.</p> <p>Is there another way to prevent this field from showing up in emails, along the lines of ShowInDisplayForm, ShowInEditForm, etc?</p> http://stackoverflow.com/questions/1049743/sharepoint-email-alerts 0 SharePoint Email Alerts Kash 2009-06-26T15:25:06Z 2009-06-26T20:43:08Z <p>I'm having problem sending email alerts from a Discussion Board.</p> <p>I've added all the work email to the Shared Service User profiles n SharePoint Central Administration area.</p> <p>However, when I click on Alert Me I get the following error:</p> <p>The following users do not have e-mail addresses specified: User Name. Alerts have been created successfully but these users will not receive e-mail notifications until valid e-mail addresses have been provided</p> <p>Set my e-mail address... </p> <p>Thanks to anyone who can help me...</p> <p>Kash</p> http://stackoverflow.com/questions/1028191/list-all-alerts-within-a-sharepoint-site-without-using-the-sharepoint-api 2 List all Alerts within a SharePoint site without using the SharePoint API? Kit Menke 2009-06-22T16:30:42Z 2009-06-23T06:18:38Z <p>Is it possible to get a list of alerts for ALL users within a given site? After messing with the GetAlerts method in /_vti_bin/Lists.asmx, it seems it always executes in the context of the user who provided it with credentials, and will only return the Alerts for THAT user. I was hoping to get a list of EVERY alert within the site.</p> <p>I know I can probably do this via the SharePoint API in a console app but was hoping to use web services or another method that didn't require direct access to the SharePoint box.</p> <p>I guess the other method would be to write a custom web service... but I was hoping for something quick and easy.</p> http://stackoverflow.com/questions/950371/using-jabber-to-send-network-messages 1 Using Jabber to send network messages fourstar 2009-06-04T12:52:08Z 2009-06-04T19:56:19Z <p><em>(Also asked over on <a href="http://serverfault.com/questions/19586/using-jabber-to-send-network-messages">ServerFault</a>, where I was advised to post it here too)</em></p> <p>We have a requirement to send desktop alerts to various users (compliance, production) across a network when other users have submitted content online for a report.</p> <p>At present we are using NET SEND but this has no guarantee of delivery and has proved unreliable from both client and server perspective (and I gather will be unsupported in later versions of Windows; we are currently running XP).</p> <p>We are considering a Jabber-based solution but has anyone used a Jabber client to pop up alert messages on the screen like NET SEND does, as opposed to just bringing a chat window to the front or displaying a temporary 'toast' message near the system tray.</p> <p>We need the alert message to be persistent and only dismissed by the user, indicating they have seen it. Toast-style pop-ups would be fine as long as it was not only for a limited time and again had to be dismissed by the user.</p> <p>Any solutions?</p> http://stackoverflow.com/questions/817065/monitoring-alerts-for-a-j2se-application 0 monitoring & alerts for a j2se application Daphna Shezaf 2009-05-03T13:32:24Z 2009-05-04T22:41:00Z <p>I am designing a J2SE application, and looking for a solution for monitoring and alerts. The requirements are:</p> <ol> <li>Objects can report their status and issue alerts when they have problems.</li> <li>Calling some pre-defined methods on specific objects (e.g. to dump their state).</li> <li>Monitoring JVM health, especially memory usage.</li> <li>Preferably access all of the above from a remote computer.</li> </ol> <p>What would be the best solution for that? Anything involving JMX?</p> http://stackoverflow.com/questions/778127/how-to-receive-instant-e-mail-alert-when-a-new-reply-is-posted-on-stackoverflow 1 How to receive instant E-mail alert when a new reply is posted on stackoverflow? Josh 2009-04-22T16:34:42Z 2009-04-28T19:47:24Z <p>Hello,</p> <p>Is there anyway to code a program in C# that can check for replies for my questions at stackoverflow and send me an instant alert when a new reply is posted? </p> <p>It'll be great if all activity here on your accounts comes directly to your e-mail. :-)</p> <p>Thanks</p> http://stackoverflow.com/questions/303613/can-we-use-jmx-for-alerts-notification 2 Can we use JMX for Alerts/Notification Anurag 2008-11-19T22:25:08Z 2009-04-26T12:54:33Z <p>Here are the specs that I'm trying to implement in a nutshell:</p> <p>1) Some Alerts have to be sent on certain events in the application.</p> <p>2) These Alerts have Users subscribe to them.</p> <p>3) And the Users have set their own Notification preferences (e.g. Email and/or SMS).</p> <p>I have not been able to find an open source solution in Java so far.</p> <p>Is JMX Notifications an option? The more I read about JMX, the more I feel that it is trying to achieve something different that my problem.</p> <p>Any help would be useful.</p>