How to stop Forum watches?

I put one question into the forum which I have an answer to. I clicked "watch this thread" then "unclicked" it to stop emails from the forum. However I am now inundated with all thread emails.
How do I stop this forum from sending me buckets of emails I don't want?

Hi daiboy352,
The same question you can find here:
http://forums.computers.toshiba-europe.com/forums/thread.jspa?threadID=53269&tstart=0
I hope it helps! :)

Similar Messages

  • How to stop Forum emailing notification?

    please advise how i can unregister to forum website and stop receiving emails
    PLEASE

    Hello
    I assume you mean the Forum watches. Right?
    You can disable this notification mails in control panel of your user name. In forum you can see a box with your user name, e. g. Welcome, leanneg. Click on Your Control Panel > Your Watches.
    There you can disable it! :)

  • How do I stop forum emails?

    I posted a question back in early December on this forum, for which I had to register.  Now I get every single post that is made by anyone emailed to me.  For my computer email, I've directed the messages go to spam, but I still get them on my Raz Maxx.  Since December, I have received over 300 emails and counting on my phone.  It's not that I don't like you guys, but I would much rather just check the forum instead of being inundated with emails concerning Droid Razr Maxx when I'm at work, etc.
    I've talked to Support - several times - and have received emails from Support saying they know how to stop them, to no avail. 
    Here's what they've suggested:
    1.     Set Preferences to OFF.  I've done all that.  Everything is set to not receive any messages.
    2.     Go to Profile and Privacy Change your listed email address to [email protected], then click Save .  There's no way to change my email address or UserName, etc., because it's grayed out and not an option.
    3.     Go to Bookmarks and click "Unfollow".  The problem is I have nothing bookmarked.
    Does anyone have any other suggestions?
    Thanks!

    Had same problem and solved it by going into my profile on this forum and selecting "Edit Preferences".  Then I clicked all the radio buttons to "Off".  This included 4 or 5 communication notification titles (Can't recall them all...but they will be obvious).
    Saved settings and I no longer get those pesky email alerts every time someone responds to a post on this forum.

  • What is ChangeWatcher? How do you stop Change Watcher from listening to a propertyChangeEvent?

    What is ChangeWatcher? How do you stop Change Watcher from listening to a propertyChangeEvent?

    ChangeWatcher is a class used to handle the change of a specific property. To stop watching that property, simply call unwatch function as follow:
    var cw:ChangeWatcher = ChangeWatcher.watch( this, "propertyName", changeHandler );
    cw.unwatch();

  • How to stop while loop

    I can't figure out how to stop a while loop in my labview program. 
    When the user presses the Run arrow in the toolbar I want my program to begin reading the serial port for GPS messages.  These messages should be displayed on the front panel.  Currently I have this read/display in a while loop.  The program is also waiting for an extrenal trigger.  When that trigger arrives, I want to grab the current string from the serial port and save it and continue reading and displaying the serial/gps string.  This trigger starts the other parts of the program- signal generation, recording, and saving data which need to run concurrently with the serial/gps reading/displaying.  Once the AO and AI have finished and the data have been written to disk, I want the program to stop.  The serial/gps messages should be updating this whole time.  Only when the data are written to disk should the whole program end.  This whole sequence of events should only be done once when the user preses the Run arrow. 
    So far I'm unable to pluck the serial string when the trigger comes in if I'm watching the serial port all the time.  The program also doesn't stop when it finishes writing to disk because the read serial while loop is still running.  I don't want to use a front panel stop button.  The program should stop itself when the data havebeen written. 
    I'm really stumped on this one but I'm new to LabVIEW so I'm sure there's an easy solution to this. 
    Thanks for any and all help. 
    Attachments:
    SPoleLakeChirp.vi ‏199 KB

    Dennis and altenbach-  Thank you both for your patience. 
    I was trying to do just what Dennis suggested-"As I said, setting a local variable is one way." even before posting to this forum, but I couldn't get my local variables to reflect changes made elsewhere in the program and I wasn't able to wire from them because they were writes.  The critical part I was missing was how to change a local variable from a write to a read.  It was staring me in the face the whole time- just right click.  When I finally found it, my problems were solved. 
    altenbach- thank's for putting the figures together.  I do understand the logic and wiring there, but I was really trying to avoid stop buttons.  The program should be smart enough to figure out when to stop.  And using local variables turns out to be one way of solving this.  I still have some clean up to do, but I've included my current working version just so you can see how I implimented your suggestions.  There's still a lot of clean up to be done, but I'm delighted to be able to watch the serial/gps messages until I'm done reading in data.  At first I had this stop variable set in the final sequence frame.  That didn't work because I wasn't getting to the final frame because the loop wasn't finishing.  Once I placed the stop variable in the same frame as the while loop it began stopping when it should. 
    If you have other comments/critiques about the wiring diagram I'm earger to hear them.  I'm considering the structure finished, however.  It still needs cleaning up and commenting, but I'm satisfied with the functionality. 
    Thanks,
    Peter
    Attachments:
    SPoleLakeChirp.vi ‏210 KB

  • How to stop the Flex application when user clicks on Cancel button from JS-confirm message?

    Hi All,
    I use the next code when a user clicks on a link:
    private function clickHandler():void
          ExternalInterface.call('confirm', 'Of course you want to go to the Adobe forums!');
          navigateToURL(new URLRequest('http://forums.adobe.com'), '_self');
    This will show up the javascript confimation box. But when the cancel-button is clicked, the user goes straightly to http://forums.adobe.com...
    How to stop Flex performing the next code when a user clicks on the Cancel button?
    Or, how to catch which button is clicked by a user in Flex?
    Thanks!

    I agree with Mr. Hall that using mx.controls.Alert in Flex may be a better route.
    Show the Alert like this:
    // show an alert with a question and yes and no choices
    Alert.show( "Would you like to go to the Adobe Forums?", "Question",
         Alert.YES | Alert.NO, this, closeHandler, null, Alert.YES );
    Then handle the response in the closeHandler() function:
    protected function closeHandler( closeEvent:CloseEvent ):void
    if( event.detail == Alert.YES )
         navigateToURL( new URLRequest('http://forums.adobe.com'), '_self' );
    else if( event.detail == Alert.NO )
         // they chose no
    The following documentation on Alerts may be helpful:
    http://www.flexafterdark.com/docs/ActionScript-Alert
    Let me know if that helps...
    Ben Edwards

  • How to stop while loop when a specified function is terminated?

    I want to make a program which has 2 thread, one of which is to control some devices, and the other is to measure outputs of the devices.
    To do that, I should make a 2 independent loops, but there comes a problem here.
    I want to terminate 2 loops at the same time, but it's difficult for me to do that, because when I try to notify upper sequence's termination to lower loop by some value change, they have some dependency.
    That's why I need your help. I want to know how to stop lower loop when the upper sequence's termination keeping their independency.
    Please let me know. Thank you.
    Attachments:
    help.JPG ‏200 KB

    Is the upper loop commanding the lower loop at all?  I would think you would have some type of communication between the loops.  Just use that communication to send a stop command.  Or the next best way is to just simply use a notifier.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How to stop Time Machine from backing up Temp Files?

    Hi folks!
    I am trying to find out how to stop Time Machine from constantly backing up 'useless' temporary files accumulated from web browsing? Although I don't change or add large files to my HD, Time Machine backs up hundreds of MBs every hour. Those file amounts make sense when I consider that I browse a lot to YouTube, SoundCloud, etc to watch videos or listen to music - I just don't want them to be backed up.
    Under Time Machine Options I already excluded the following items from backups:
    ~/Library/Caches
    /Library/Caches
    ~/Downloads
    But even though I did this weeks ago, Time Machine stills finds large files to be backed up every hour and my only guess is that I am still missing a location where either Safari or Firefox - the two web browsers I use - store temporary files.
    Can you help?
    Thanks a lot in advance!

    oas2103 wrote:
    they come from my anti-virus software
    Are you sure you need that? There are no viruses that run on OSX. None. Zip. Zero.
    If you're running Windoze on your Mac, that's the same as running it on a PC, so it needs all the same anti-everything stuff you'd use on a PC.
    There is some "malware," such as Trojans, for Macs, though. But (unlike viruses that can get onto your system without your knowledge), you must approve their installation (via your Admin password) and/or operation (via the "This application was downloaded from the internet ..." prompt).
    Appropriately enough, some of these Trojans are included in pirated versions of Apple software, such as iWork!
    For the gory details, see Thomas Reed's [Mac Virus Guide|http://www.reedcorner.net/thomas/guides/macvirus].
    Thanks a lot again!
    You're quite welcome, and thanks for posting back.

  • How to stop irritating auto-reloading of the tabs (pages) [i don't have any extensions or apps]

    Seems like this problem appeared quite often, nevertheless i spent an hour in search of an answer surfing the net, alas, nothing..
    Problem: since today Safari started to reload almost every single page whenever i switch between tabs or sometimes even while im stil on the page. Fot example - i'm watching a movie, stoped it - switched to facebook tab to reply to my friend, then back to the tab with the video & no sooner i get back as the page with video auto-refreshes itself & i have to load movie again & look for the place i stoped watching the video to continue!
    Device & program version: Macbook Pro, bought in july, Safari Version 5.1 (6534.50), No extensions or apps installed, & pls dont' say that it happens on particular pages, i visited the same ones yesterday & everything was ok, since today it's working all weird, and happens within all pages. But in the same time no system - once it reloads the page, other time im switching between the same very tabs it doesn't.
    This is unacceptable & completely useless. Why there are no comments from Apple or Safari team, as if the problem doesnt exist? Not speaking of the problem solving process or tips.
    Please, if someone knows how to stop this nightmare - tell me!!
    Apple-team, I would love to hear your comments & in fact receive some help and get this problem fixed.. :\
    (P.S. - person with the same problem posted a message year before, no effective reply.. - https://discussions.apple.com/thread/2356901?start=0&tstart=0 )
    Sincerily yours,
    Tatevik
    <Email Edited by Host>

    Macbook Pro, bought in july
    If your Mac is runing Lion v10.7 try disabling Resume.
    How To Disable Lion's 'Resume' Feature - MacRumors.com

  • How to stop HP Annoying Status Message Windows?

    Before posting this message now (July/2014) I've searched for related posts here. I found one from 2009, whose author got a solution through an answer only in 2012 (pasted bellow).  I have the same problem: I'd like to stop the invasive alert messages from HP Solution Center without uninstalling the software, which is very good, but for these annoying stupid messages.  I say stupid messages, because everytime I seat in front of my desktop it insists telling me, for example, that I have a problem: the language in my HP printer doesn't match the language in my computer.  But this is not a problem, it is my personal option! Anyway, HP Solution Center keeps poping up everytime I awake my screen and this is really annoying, even it its messages were accurate.  HOW TO STOP THEM? As I said, the solution found here in the forum after 3 years (2009-2012) doesn't work for me, because there is no "status messages" in my "device settings" (Windows 7), so I could turn them off.  I'd appreciate any help!
    SOLUTION: To stop HP Annoying Status Message Windows.[ Edited ]
    ‎05-26-2012 01:05 AM - last edited on ‎05-26-2012 10:13 AM
    Hi, Friend I have solution how to stop HP Annoying Status Alert .
    WIndows 7
    First Click START>CONTROL PANEL>PRINTERFAX>
    Select Your Printer And Go to Properties
    Click Device Setting > Select Status Message OFF Option
    Press APPLY And Ok
    Reset Your Computer

    Hello Fernando_int, and welcome to the HP Forums.
    I see you are recieving false errors.  I would like to assist.
    I would suggest Uninstalling the Printer Software.
    Once it is uninstalled, I would suggest putting your system into clean boot mode within the Microsoft configuration.  You can do so by following this document: How to perform a clean boot in Windows.
    Once the computer is in clean boot mode, I would suggest reinstalling the HP Printer Install Wizard for Windows.
    Good luck and please let me know the results of your troubleshooting steps. Thank you for posting on the HP Forums!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • How to stop the new health application from Count the steps/ woking background?

    how to stop the new health application from Count the steps/ woking background?
    I really need your help

    I agree with Mr. Hall that using mx.controls.Alert in Flex may be a better route.
    Show the Alert like this:
    // show an alert with a question and yes and no choices
    Alert.show( "Would you like to go to the Adobe Forums?", "Question",
         Alert.YES | Alert.NO, this, closeHandler, null, Alert.YES );
    Then handle the response in the closeHandler() function:
    protected function closeHandler( closeEvent:CloseEvent ):void
    if( event.detail == Alert.YES )
         navigateToURL( new URLRequest('http://forums.adobe.com'), '_self' );
    else if( event.detail == Alert.NO )
         // they chose no
    The following documentation on Alerts may be helpful:
    http://www.flexafterdark.com/docs/ActionScript-Alert
    Let me know if that helps...
    Ben Edwards

  • How to stop the call summary display on home screen?

    How to stop the call summary display on home screen?

    Here are the solutions I can think of (if no one here responds with something better):
    1. Open Settings and then Phone within the Settings screen and see if you can find a setting there for the call summary. The Phone submenu under Settings would be the most likely place.
    2. Open Settings on your iPhone and go through each item including all of the items within each main item. Within about 10 minutes you should be able to get through all of the settings and find the setting if it exists on your phone. There is no such setting on my phone but it is possible that Airtel has a custom menu with that.
    3. If you still haven't found it, you could check a) Airtel's support site and/or b) an Airtel specific forum.
    4. If still no luck, I would call Airtel and ask again and if you get the same response ask for the location of the setting (or to speak to someone who can tell you).
    Good luck.

  • How to stop the spinning wheel?

    How to stop the spinning wheel?

    Back up your documents and everything else important to you, not that there is any reason to believe your hard disk may be failing, but the symptoms you describe may presage an impending disk failure, and you should have backups anyway.
    Boot OS X Recovery by holding ⌘ and r (two fingers) while you start your Mac. At the Mac OS X Utilities screen, select Disk Utility. Select your startup volume (usually named "Macintosh HD") and click the Repair Disk button. Describe any errors it reports in red.
    When it finishes restart your Mac and test again for operation. If it's still not behaving as you expect it should, please post the results of EtreCheck in accordance with the following instructions:
    Apple Support Communities contributor etresoft wrote a very useful app to quickly gather certain system information that may help point to a cause of this problem. Go to his website, download and run EtreCheck:
    http://www.etresoft.com/etrecheck
    Etrecheck will be in your Downloads folder. Open it from there. You may see the following dialog box:
    Click Open - etresoft contributes to this forum frequently and can be considered a trustworthy developer.
    It will take a moment to run as it collects its data.
    Copy and paste its output in a reply.
    Do not be concerned about anything that says "Problem" or "failed".
    EtreCheck was designed to remove any personal information (such as your computer's name and serial numbers) but if you see anything that looks like an email address or any other personal information that should not be divulged to others, please delete or obscure that information when you post the reply.
    When you are finished with EtreCheck, quit the program. It occupies very little space, and you can keep it or drag it to the Trash as you wish.

  • How to stop a while loop after certain time using Elapsed time vi

    how to stop a while loop after certain time using Elapsed time vi.

    Hi Frankie,
    Just place the Elapsed Time VI inside the WHILE loop, and wire the 'Time Has Elapsed' output to the conditional terminal in the lower right corner (which should be set to 'stop if true' by default).
    In the future, please post your LabVIEW questions to the LabVIEW Forum.  You have a much better chance of getting your questions answered sooner, and those answers can then help others who are searching the LabVIEW forums.  Thanks!
    Justin M
    National Instruments

  • How to stop screen expansion when I awake in new os update

    When I awake my Z10 the screen expands or magnifies itself so I have to squeeze it to fit all the screen in. Very annoying any ideas how to stop it?
    Solved!
    Go to Solution.

    Hi pgaffney,
    Please see the following forum post for a resolution to this issue.
    Please go into Settings > Accessibility, and ensure the "Magnify Mode" is disabled.
    Did someone help you? Click Like! Did a post solve your issue? Click Accept as Solution!

Maybe you are looking for

  • What adapter do I need to connect my 2009 Macbook Pro to my 2007 iMac?

    What adapter do I need to connect my 2009 Macbook Pro to my 2007 iMac? I get really confused with all of the different cables out there an I want to make sure I get the correct one. Macbook Pro Model is: Late 2009, 2.26 GHz Intel Core 2 Duo, 8 GB 106

  • I need a few networking APIs! any help appreciated

    Hi people! I need a few APIs for a networking project, namely an API that does some kind of port scanning similar to the one found in NMAP, and another one that does packet sniffing, similar to that found in CPAC. Anyone knows where can I find any li

  • JasperReportIntegration tool - Report coming back as HTML instead of PDF

    Using: * Apex 4.1.1 (using EPG) * 11G SE * Apache FOP as print Server * Dietmar Aust's free tool on integrating JasperReports I've recently created a second APEX instance locally (from externally hosted instance) and copied the application (via appli

  • Script to show latest updated content

    Do you know of a program, service, or scipt that will do this... I want to have a "what's new" page that is automatically updated..every time someone puts up something new on the site, the page will list it...it will list like the last ten (or howeve

  • Is it possible to lock the bookmarks bar?

    Its nice to be able to move everything around so easily, but I just as easily seem to delete items off the bookmark bar. Is there a way to lock it? Thanks.