How to make it completely silent (IM still vibrates)

I need to make my phone go completely silent when I push the switch over. I've changed the messaging and the calls, those work, but I'm still having a problem with Instant Messenger. I've gone into global settings and unchecked the Enable Sound box, but when I'm outside of IM and I get a new one, it vibrates which is really a problem. Do you guys know how I turn this off? I don't want to have to be signed out of IM if possible.  Thank you!
Post relates to: Centro (AT&T)

Hello!
The IM program controls its own volume/vibrate settings which are not found in the Preferences app on your centro.  Unfortunately this application does not have GUI setting to toggle this feature, its a static setting.  I belive that Butler can help you with this though.  Butler lets you control your device in a very detailed way and uses its own preference library which is independent to the os prefs. 
Post relates to: Treo 650 (Unlocked GSM)

Similar Messages

  • How to make a completely transparent button in Flash Builder

    I am making a mobile application, and I am wondering how to make a completely transparent button. I've tried using
    <s:Button x="-5" y="0" width="410" height="1504"
                                    skinClass="spark.skins.mobile.TransparentNavigationButtonSkin" click="navigator.pushView(Sun)"/>
    But it still has one line on the side. I need a way to make it completely transparent.
    Thanks,
         8th grade student

    Try this alpha="0.001"
    Also add useHandCursor="true" and buttonMode="true" if you wish to have the hand cursor appear on hover.
    example  x="10" y="10" width="169" height="54" label="Button" alpha="0.001" useHandCursor="true" buttonMode="true" 
    HTH

  • How do I set phone to be COMPLETELY silent with NO vibrate?

    I used the volume button on the upper left side of the phone and turn it all the way to silent.  I also went to settings/sound and set it on vibrate OFF.  I also tried setting the Ringer and Alerts section - Change with Buttons both On and Off.  However, my phone will still make text sounds when I receive texts and notifications from Facebook.  I can not figure out why it won't go completely silent with no vibrate. Can anyone help me out here, please?

    Email alerts are actually different with the one that you have set.

  • Is there a way to make the ip3g completely silent w/o vibration?

    im wondering if there is a way to make the ip3g silent so that it doesnt vibrate when the ringer is off. is that possible? thanks in advance.

    THANKS! NOW I CAN SLEEP I OWE YOU,,,,:)

  • "Silent" Contact Still Vibrates During Calls in Vibrate Only Mode

    We all have them.  Contacts you just don't want to hear from.  Ever!  Thankfully BlackBerry updated 10.1 allowed me to set each contact up with contact-specific phone, message & BBM ring tones, vibration, and LED settings.  So I immediately set several up as OFF, OFF, OFF.
    Unfortunately, when you set the Z10 on "Vibrate Only" the phone still vibrates when these nuisances call.  This is true despite the warning that notifications set to deliver as sound or vibration are delivered as a vibration.  Since mine are set to OFF, then it should stay off.
    If I'm doing something wrong, let me know.  If this is a bug, then please fix it.

    Yep.. that is a bug..
    Same issue with me also..
    Hit Like if you appreciate this

  • How to make a complete delete of Webdynpro?

    Hello:
    I deployed some WD project but now I need to make some transport tests on the same server, so I need to delete that deployed content to have a clean environment as non of the app were deploy once. With the <b>usr/sap/<system ID>/jc00/sdm/program/Remotegui.bat</b>  I UNDEPLOY the WD app. I saw their state at http://host:50000 -> Web Dynpro -> Content Administrator -> Deployed Content ->local  and NON deployed content appears but the app still work at SAP Portal.Why the app keeps working? It seems that the delete action is not complete? What did I miss?
    Thanks a lot.
    RLS

    Undeploy the WD project using SDM. Run the sdm_remotegui.bat available under "usr\sap\<SID>\JC<Inst.Number>\Shortcuts". You may follow <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/43/239adcca642185e10000000a114cbd/frameset.htm">Undeploying Components</a> to get the steps to be followed to undeploy a DC/Project.
    Bala

  • How to make a div clickable and still be w3c compliant

    Can someone help me to make a div clickable so it is still w3c compliant?This is my current div and it seems to work, but when I check for compliance I get "unexpected end tag (a not expected). ???
    <div id="pic-wrapper">
    <a href="../index.htm"><div id="pic"></div></a></div>
    Appreciate any help. Thank you.

    This is something I've never needed to do mysefl, but it ought to work ok.  And do not remove your standard a tag with its link currenlty inside the div so Search Engines will be able to spider the link and users without javascript will be able to reach it as well.  I've added the code in orange:
    <div id="pic-wrapper" onclick="location.href='http://www.yourwebsite.com/index.htm';" style="cursor: pointer;">
    <a href="../index.htm"><div id="pic"></div></a></div>
    I just guessed your link was to the homepage, so that is what I replicated in orange, but of course you would be sure to change the link to the correct absolute address.
    Let us know how this works for you.
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • How to make a complete app?

    Hi, I am a newcomer to Java and I have been using Powerbuilder for the last 7 years. I hope I can get some help here.
    In PB, I can basically create a whole application (the GUI, the installable etc..the kind of files you download from www.download.com for instance). I have bought a book on Java called "Complete Guide to Java" and have learnt a few good code snippets.
    But, I am getting impatient and would like to see some book or tutorial that takes me from the scratch and helps me make a whole application (it could be something simple, like a text editor application)....starting from writing the code, to packaging it in such a way that users of UNIX, Windows and Mac can install it in the same way!
    Can someone point me to the right resource on the net, or in a book where I can get such information?
    Thank you!

    anything you create can be made into a java executable
    using the jar tool.
    this is not really like linking object files in C++.
    But really just a packaging thing.
    when you create those .class files that's it.
    the trick to making the .jar file executable lies in the manifest.mf file inside.
    it needs a reference to the class with main.
    so say you write your editor
    then make a manifest.mf file for your .jar that goes
    Manifest-Version: 1.0
    Created-By: 1.3.0 (Sun Microsystems Inc.)
    Main-Class: SimpleEditor
    you put that in the same directory with all your class files.
    cd to that directory
    type
    jar cmf manifest.mf SimpleEditor.jar *.class
    there you will have your portable cross platform executable that in Windows is double click and go
    on unix you have to type java -jar SimpleEditor.jar
    sorry I can't help with a book example
    email me and I can send you a simple editor if you like
    [email protected]
    I was going to paste it in but that leads to the reality of this stupid netscape browser can't seem to see my linux clipboard
    Anybody got a cure for that one ??????????????

  • How to make a podcast with one still image with iMovie 09

    I'm using trying to transfer my podcasts to Vimeo. I've been using iWeb to create a person web site with video and podcasts. I have embedded Vimeo with "html snippet widge." I want to do the same thing with audio, however Vimeo only accept "video" files.
    In my attempt to work around Vimeo's video issues, I had the idea to use iMovie 09 to create a "video file" using a single still image with my audio podcast play in the background. The single image would be consistent for the entire length of the audio. It seems simple...one still image file and one audio file.
    All of my audio files are less than 45 minutes in length. The problem is that when I insert an image in iMovie I can't get it to last for more than 10:00 minutes of my podcast. I've had to drag the same image over several times, extend each image's length to 10:00 minutes until I have enough images to last the full length of the audio file.
    I'm sure there's a simple way to do this with one image, used one time, and have the audio added.
    Anyone understand my situation and have a good idea?

    The most efficient method would be for you to do this in iMovie 6. You can download a version if you don't already have it on your computer. http://supportdownload.apple.com/download.info.apple.com/AppleSupport_Area/Apple_Software_Updates/Mac_OSX/downloads/061-3532.20070807.nq3ER/iMovieHD6.dmg
    Put all your clips into a new iMovie project, in the order you wish them to play. Use the chapters tab and add chapter markers for each clip (except the first one; iDVD will add that one for you). Close iMovie.
    Open an new iDVD project. Use the Media tab, then Movies, to locate your new iMovie. Drag and drop it onto the main iDVD window, taking care not to drop it into a drop zone. You should then see the title of your movie and the two options: Play Movie (which will play all the clips sequentiallly) and Scene Selection (which will take you to submenu(s) where you can select which clip to view).

  • How to make a complete backup file for Itunes?

    Hi I have a set of "FILES" that make up an old phone back-up that isn't currently working as far as Itunes not recognizing it as a back up at all. What are my options as far as making them compatible?

    If iTunes doesn't recognize a set of iOS device backup folders as valid then the chances of rescuing any data from them are slim. There are various iOS device backup extraction tools that may or may not do something useful, I've not had reason to test them.
    If you want to backup your iTunes library (and you should) see this user tip.
    tt2

  • MPD-How to make it complete

    MPD is really nice and light. But I could not find a client that would give all the functionalities of music manager cum player, like amarok, rhythmbox, and other heavy-weight music player. Madman is great, reads all the id3 tags, but it opens another app xmms which is what I dont like. gmpc seems better than sonata (the 2 that i have tried).
    Please suggest something.

    ravisghosh wrote:
    MPD is really nice and light. But I could not find a client that would give all the functionalities of music manager cum player, like amarok, rhythmbox, and other heavy-weight music player. Madman is great, reads all the id3 tags, but it opens another app xmms which is what I dont like. gmpc seems better than sonata (the 2 that i have tried).
    Please suggest something.
    then I guess you havn't really looked around, there's other frontends.
    a lot of the features that are in amarok, can or are available as plugins for existing mpd frontends. By no means are all of them, but some are. gmpc has a range of plugins, and im sure there was another python based mpd front that had plugins too.
    James

  • How to make the Creative Cloud Uninstaller run silently ?

    Hi all,
    We created a deployment using Adobe Application Manager (AAMEE) in order to deploy Adobe Creative Cloud silently.  That works fine.  Now, when we uninstall the software, by running msiexec /x {productcode_of_the_msi_that_was_generated_using_AAMEE}, there's a log entry in the Event Viewer saying Removal success or error status: 0, which is good.  However, there's one remaining entry in the "Programs and Features"-list in Windows 7 control panel: "Adobe Creative Cloud"
    So I took a look in the registry and I found the uninstall string for that program: "C:\Program Files (x86)\Adobe\Adobe Creative Cloud\Utils\Creative Cloud Uninstaller.exe".  Problem: this uninstaller won't run silently!  Or at least I didn't find any switches / command line parameters to make it run silently.  Does anyone know how to make it run silently?
    Question for Adobe in case there are no silent options for this uninstaller : can you explain me why you create tools (AAMEE) to generate silent installers but still leave traces on the computer that can't be uninstalled silently???
    As an application packager I would also like to address this general message to all the big software making companies out there (SAP, Oracle, Microsoft, Adobe etc.) : other big companies that buy your software, mostly want to install and uninstall it without user intervention.  So please package it so that we don't need to spend extra time and money deciphering your fancy, exotic installers / uninstallers.  MSI is quite a good standard you know...
    Thanks all of you!

    Hi,
    If I understood correctly, you have created an installation package including creative cloud desktop app through creative cloud packager not AAMEE.
    Adobe creative cloud doesn’t get uninstalled even if all the products and updates are removed from machine. But this will not cause any issues (or extra space) on installation of new package.
    Its recommended that if the package is modified (adding more products or updates to existing package) and installed then it should be uninstalled via msi of modified package.
    Thanks,
    Ashish

  • How to make a procedure invalidate

    Hi every one
    we are having packages containing procedure.The procedures/packages are wrapped and depolyed to sites.often I need to make invalidate(inoerative) some procedures of a package without disturbing other procedures. I dont want to recompile the procedure/package and distribute it again.
    For example
    package A contains procedure x and procedure y.
    some how i make a.x invalid and still make a.y valid without recompiling package a and redistributing.
    Is there any soultion where i need to update some system table and a.x becomes invalid at client side.
    Pl help
    Prashant

    prashant13 wrote:
    Actualy I had to do it at around 50 remote sites.The connectivity is thrugh dial up connection and many a times it breaks . I am using form 6i deployed on app server 9i with back end 8i db on each loaction.
    As there is connectivity problem , I do not intend to sent a recomplied form or recompiled package , instead a simple update like
    update (some system table ) set packa.proc y as invlaid/no use/inoperative
    commitOk, one more time, repeat after me... ;)
    You cannot invalidate a procedure within a package. You can only invalidate the whole package.
    The data dictionary stores database objects which are marked as valid or invalid. The package itself is considered an object, whereas the procedures within a package are not objects in their own right, they are just a part of the object which is the package. Hence why you cannot invalid a part of a package.

  • How do I silence my Moto X 2nd Gen? I want it totally silent and not vibrate either...

    I just got this phone a couple days ago and I cannot figure out how to make it totally silent. I didn't see it in the manual or online anywhere. Some said to press and hold the power button and it will come up as an option, but not for me. When i pres the power button, "Power Off" is the only thing that pops up. Please help. My phone is keeping me awake at night because of this.

    Verizon can't help you with it.  Google made this change with Lollipop.  A lot of people have put enhancement requests through Google groups.
    Currently the best you can do is to set up priority and that's it. You can have it setup where calls go through and all else can be "silent".  which is done at the home screen tap the volume button and you will have 3 options under the volume. None will make no sounds happen.  I believe the vibration is also silent, but I don't remember.
    Adam72 wrote:
    Again, read the replies above. Thank you for you response, but since the upgrade to Lollipop 5.0, that is not an option. when I hold the volume down button, it will silence the ringtone, but puts it in vibrate mode not silent.

  • Q: How to make complete backup of internal HD?

    I want to upgrade to a bigger HD and want to make a backup of the full 80GB internal drive.
    When using Disk Utility I can make images of folders but not of the internal HD.
    I even can not make that image if I have booted from DVD or from external Firewire disk! Why?
    I also cannot unmount the internal HD when booted from external HD or DVD.
    why?
    How should I make a complete update (including all invisible files and folders)?

    ####### SUCCESS ###########
    Thank you to all who provided valuable knowledge here.
    From the many methods suggested above, I chose to try the CCC (Carbon Copy Cloner). I let CCC make an image of my internal HD onto my external HD. (Oddly enough this only works if you boot from the internal HD, or, better said, in order to use CCC you have to boot from the source HD, not destination HD, which IMHO would be saver, but then.)
    Despite I logged in as admin I had to give the admin password for every top level folder, about 20 in my case, a bit tedious, because you can not go away but have to stay near the computer all the time while it is copying. It lastet 3 hours...
    Then I booted from the Tiger DVD and verified that the image was mountable, and error free. Also the repair section of the disk utility allowed to specify the new image as source, and the internal HD as destination. So I was well prepared.
    Today I got my new HD (yippie!!!! 120 GB in my PowerBook!!!!) and when back home I booted from DVD, started disk utility again, repair section, and set the CCC-image as source, the new internal disk as destination, and go!
    After exactly one hour the block transfer was complete.
    I rebooted with external disk and DVD removed.
    But shock! The Mac did not find a system disk! Why this?
    I rebooted from DVD, and set the internal disk explicitely as start volume.
    Okay that was what was necessary, the next reboot from the internal new disk was successfull.
    Thanks again for all the help.
    (Just to be save I bought an external HD case for the old HD so if it had not worked this way I would have had still other options, like booting from the external HD and using CCC for directly moving the HD content to the new internal disk, but I am glad that the straightforward way just worked.)

Maybe you are looking for