BB 8130 designated ringtone issue.

I have a blackberry Pearl 8130, I use a Macbook and I have US Cellular for a carrier.
I figured out how to get ringtones on my blackberry. And I gave the contacts I wanted to have custom ringtones, each custom ringtones. Then I wanted a custom sound for my messages that came in so I created a new profile and edited that also. Now the messages come in and the sound I chose for them comes in but when the contacts call it doesn't use their specific chosen ringtone I assigned in their individual settings. I then went in to the created profile and added an exception hoping that would make them work, tried it and it doesn't work. How can I get this to work, where the ringtones work as assigned to each person and still get the various message tones to come through as well??? 
Please Help!
Shelley

I don't have T Mobile.  I have US Cellular Thanks anyway. I did figure out the issue. I don't know how really, It was an accident. I created a new profile ( named it ) , then I changed all the settings in the new profile, but in order for the ringtones to ring upon each designated person, I needed to chose a different profile and add the name of my new profile to the list of exceptions. It seems to work right now.
Shelley
Message Edited by shelley_iverson on 09-23-2008 08:36 AM

Similar Messages

  • N97 Ringtone Issues

    Bought an N97 last Friday on release day in the UK.
    Have had a whole host of NSeries phones from the N70, N73, N95/6 etc..
    I use separate ringtones assigned to a range of about 10 contact groups and assign them from Contacts > Groups > Options > Ring Tone.  This then updates the ringtone for all the contacts in the group.
    I also set default ringtones in all the Profiles that are not silent.
    This was never a problem in previous Nseries phones but what I am finding is that at times I get the standard Nokia tune then next call will use the correct ringtone and after that it is the nokia tone again.  I am also getting a drop out in the tone about 2 secs in for about a second then starts ringing again.
    I initially put this down to the fact that my phone is connected to computer and the mass storage and memory card are locked down, so with this in mind I moved them to the phone memory, not ideal but thought give it ago and I converted them to all 3gp files as assigning through the group would not show anything but 3gp or AAC.
    However the issue still exists and is getting really annoying.  It is having no problem with ringtone selected for incoming mail, messages, calendar and alarm clock.
    Anyone else experiencing this?????
    Ex Nokia N97 Owner - now in the world of iPhone 3GS
    Solved!
    Go to Solution.

    Apologies for Hijacking your post but I don't really want to Start another "ringtone Issue" Post
    Had a problem with my N97 last night whereby whenever my girlfriend called, the phone would ring with the default Nokia tone. All other calls rang with my personalised ringtone.
    After playing around with the phone I found the reason was I had tagged her picture onto her contact details but used a full 5MP photo. After editing the picture and dropping it down to 640*480 the phone rang with the tone i'd set.
    It looks like due to the image size the phone was taking a while to display the caller image and then play the tone as well
    Thought it would be worth a mention incase anyone else comes across this problem
    Message Edited by foxmeister on 25-Jun-2009 10:15 AM
    If this Post is helpful. A click on the White Kudos star is always Appreciated
    Last Nokia: Nokia Lumia 800
    Current Phone: A Non Nokia Device
    Previous Phones:Don't Ask ;-)

  • Report Designer Locking issue

    Hi,
       We have found locking issue while accessing same report(Created in Report Designer) by multi users at a time .
       Has anyone face this issue and How to fix it. It's major concern because same report can be accessed by multiusers at  same time
    Thanks
    Siva

    Siva,
    only one person at a time has permission to open the report in the Report designer - just like with Queries in the query designer.  This should not have any effect on you actually executing the report in the portal - multiple people can do it then.
    this is a security issue that other software vendors use as well - just like you cannot open any MS Office files on the network for editing that someone has opened already.
    Thanks

  • ABAP Objects Design/Organization Issues

    Hi,
    I'm trying to design and implement reusable components using ABAP Objects. I'm familliar with OO concepts and have developed a few applications using C++ and Java.
    I'm trying to organize my classes into separate source files (include program in ABAP).
    ie.
    <b>include program a</b>
    CLASS a DEFINITION.
    ENDCLASS.
    <b>include program b</b>
    INCLUDE a.
    CLASS b DEFINITION.
    data x TYPE REF TO a.
    ENDCLASS.
    Lets say I want to write a report that uses both objects a and b. That means I have to include both programs. but since program b includes program a. including both programs a and b in my report would produce redeclarations of class a.
    <b>executable program c</b>
    REPORT c.
    INCLUDE a.
    INCLUDE b.   " error: redeclaration of class a
    DATA: x TYPE REF TO a.
          y TYPE REF TO b.
    This bothers me. Although it would be possible to <b>just include program b</b>, it would be a bit awkward since, i dont care if class a was used in the implementation of class b. Implementation should be abstracted from the user. Besides, everything should be explicit.
    Is there a way to organize things as such? Would importing these classes globally would solve the problem.
    Thanks.

    Emir,
    The way we do OO Programming in ABAP and other languages differ.
    In your case, it might be a better option to create these classes as global classes, so that you will not have this issue. You can SE24 to do the same.
    Regards,
    Ravi

  • XML and its influence over program design (2 issues)

    I have 2 open questions about XML and Java. I apologise if they are not clear-cut or specific enough, but really I am fishing for sound advice.
    I am trying to develop a J2EE application but find myself stuttering at an early stage because I cannot decide on the best design for my application. Part of my problem is a lack of experience with the different J2EE technologies/API (especially XML APIs), and the realisation that there is 101 ways to do what I want to do.
    A major issue is this: my application basically is concerned with representing conversations between the server and a user, e.g. a simple sequence of yes/no questions asked by the server to the user, which the user replies to in turn. I believe that the XML format would be a very suitable way to represent these conversations. My first question is:
    * Should the decision to use XML as a storage format influence the design of the rest of the program? I feel that in choosing XML to represent the conversation data, I am stuck thinking about the rest of my program in a XML way (i.e. doing everything using a DOM etc.). Am I right in thinking that my program should be designed in such a way that an XML-based storage system could be easily interchanged with, say, a relational flat-tabled database?
    My second question is:
    * Imagine that each conversation contains one or more questions, and there are, say, 4 different types of question (e.g. yes/no, multiple choice, etc.). Each of these needs to be handled in a different way. Is there a good pattern or recommended way of handling this sort of situation in code, ideally avoiding a big 'if' or switch statement (e.g. if the node is of "ABC" type do this, else if it is "yes/no"...). It would be great if one could easily add new types of question to the XML and then similarly one can make easy additions to the code to cope with these new cases.
    Thank you very much indeed for any advice.
    Greg

    I am trying to develop a J2EE application but find
    myself stuttering at an early stage because I cannot
    decide on the best design for my application. Part of
    my problem is a lack of experience with the different
    J2EE technologies/API (especially XML APIs), and theThat's nothing to be ashamed of. And realising that you lack experience and trying to remedy that is a good sign.
    A major issue is this: my application basically is
    concerned with representing conversations between the
    server and a user, e.g. a simple sequence of yes/no
    questions asked by the server to the user, which the
    user replies to in turn. I believe that the XML
    format would be a very suitable way to represent
    these conversations. My first question is:
    XML might be overkill if it's just a question followed by an answer and neither contains complex hierarchical data structures.
    * Should the decision to use XML as a storage format
    influence the design of the rest of the program? ICertainly not.
    XML should represent data structures that are natural to your program, thus becoming a tool rather than forcing its structure upon you.
    feel that in choosing XML to represent the
    conversation data, I am stuck thinking about the rest
    of my program in a XML way (i.e. doing everything
    using a DOM etc.). Am I right in thinking that my
    program should be designed in such a way that an
    XML-based storage system could be easily interchanged
    with, say, a relational flat-tabled database?
    Flexibility is good to keep in mind, but at the moment I'd worry about just getting something to work.
    * Imagine that each conversation contains one or more
    questions, and there are, say, 4 different types of
    question (e.g. yes/no, multiple choice, etc.). Each
    of these needs to be handled in a different way. Is
    there a good pattern or recommended way of handling
    this sort of situation in code, ideally avoiding a
    big 'if' or switch statement (e.g. if the node is of
    "ABC" type do this, else if it is "yes/no"...). It
    would be great if one could easily add new types of
    question to the XML and then similarly one can make
    easy additions to the code to cope with these new
    cases.
    Think of a factory that creates the handlers on the fly based on the actual message received.
    If the factory makes use of some mapping construct to do so there's no need for any conditionals at all in your decision tree.
    I've myself used XML structures successfully to define such mappings (and so have others) on disc, but simple ones can be easily represented using just a properties file.

  • CS 4 - In Design Transparency issues?

    When I adjust the transparency of a photo in IN DESIGN... once I create a PDF all the fonts on that page are affected. They aren't at "full strength" -- the blacks look less black than on a page when the transparency is not adjusted on any photos.
    Any ideas?
    Thanks!
    David

    Thanks. I'm kind of self taught hack. I usually manage for the basics but sometimes things like this give me fits.
    My blacks were set for "rich blacks" already.
    I'm not sure how to check this:
    "Make sure the blend space matches the color mode of the background."
    I know how to adjust the transparency blend space but don't know where to check for the color mode of the background exactly.
    I was just messing with drop shadows and it too was have an effect on my exporting to a High Quality Print PDF. All my text was either lightened and the quality was degrading.
    Is that fact that my images are .jpg an issue with adding effects?

  • N80 SMS and Ringtone issues.

    Hi Everyone,
    My phone takes too long to send SMS (2 - 3min), my gallery freezes when you revert back to it after editing a picture and the ringtones play when my phone rings, but seconds later it slows down like a broken record!
    I have perform the *-3-Green reset, I have had the software updated and the issue is unresolved.
    I dont think Nokia knows what to do now except for reloading the firmware. (Theey have reloaded it a total 9 times since I got the phone in July 2006)
    Can anyone shine some light, apart from going to another brand?
    My carrier is Vadofone AU.
    Cheers.
    Nokia N80 Pearl Black | v4.0623.0.41 | RM-92 | 68.01
    Sydney, Australia

    in the application manager section of the Nokia N80 handset, is there anything that can be removed which may be causing slowness??
    i just looked and i have the following in the application manager section, what can i safely remove?
    QUICKOFFICE
    CATALOGS
    WIRELESS KEYBOARD
    SEARCH-LOCALPLUGINS - HK
    SEARCH LOCALPLUGINS - IT
    SEARCH LOCALPLUGINS - FI
    SEARCH LOCALPLUGINS - SE
    SEARCH LOCALPLUGINS - UK
    SEARCH LOCALPLUGINS - DK
    SEARCH LOCALPLUGINS - FR
    SEARCH LOCALPLUGINS - ES
    SEARCH LOCALPLUGINS - NO
    SETTING WIZARD
    ADOBE READER LE
    SEARCH-GLOBAL PLUGINS
    SEARCH
    SEARCH

  • Design View Issue Dreamweaver CS4 - Taking forever to load design view

    I am having an issue where my site takes literally almost a full day to load in design view. Once it is loaded everything works seemlessly but once I close down Dreamweaver and reopen it, I have to wait another day to get to design view of my site. All files open just fine in code view.
    I have deleted the Dreamweaver CS4 cache folder, completely formatted my drive and reinstalled creative suite. I have also validated my code on W3c and everything checks out fine.
    The majority of my site is based off of a template, but even when I remove all the template references in the html files from Notepad I am still having the same issue. My site renders fine and quickly however on Explorer, Firefox, Chrome, and Safari.
    When loading any other site off the web into Dreamweaver I do not run into the problem so there must be something wrong with how my site is set up. Either the Template file is no good or somewhere else I am falling short. Can someone, please, please, please ( I am begging) help me figure out what is going on here.
    My index file is located at - http://www.thebluedot.net/index.html and the template file is located at - http://www.thebluedot.net/Templates/index.dwt
    I have searched high and low and even made a post on this same topic about a month ago but never came up with a resolution to my issue. I had given up on finding a solution to this problem for some time, but I really need to figure out where I am going wrong here!
    Additional Details -
    I am running - Windows Vista Ultimate on a Core 2 Processor with 12 GB of Ram & Solid State Hard Drive. Everything on my system runs super smoothly except loading my site in Dreamweaver CS4 design view.
    I really appreciate any help you can provide.

    I have used CS2 Adobe GoLive to create and manage a website (pro-prosperity.com).  Now, I have CS4 Dreamweaver.  I got a new site set up on Dreamweaver using the site management facility.  I then have the contents of website available locally on Dreamweaver.  I can edit files.  But the main home page, index.html, is not displaying on design view mode for editing, although it displays everything on live view mode.  I have struggled for days and am not getting any difference in attributes of index.html and another .html that is displaying fine on design view and is editable. 
    I am really lost and am begging for any help.  Can you, for example, copy the home page from pro-prosperity.com and display on design view and edit it?  Please tell me what is in this file that is troublesome.  Thanks.
    The first thing you should do is to make sure that this feature is turned on (it's off by default):
      View > Code View Options > Highlight Invalid Html
    It's not perfect, but it will notify you of some problems. In Code View, there are many problems highlighted. Some of them don't make sense, but are triggered because of a problem with a parent tag.
    Be sure to make a backup copy of your file before doing the next step. Close your page. Go to Preferences > Code Rewriting, and turn on "Fix invalidly nested and unclosed tags", "Remove extra closing tags", and "Warn when fixing or removing tags". Click OK, then re-open your page. The messages in the dialog to tell you what was changed. This allowed me to see your page in Design View (I am using CS5).
    Note: I suggested that you reset your preferences to turn off those 3 settings as they can cause problems with some markup.
    In the long term, I suggest that you avoid nesting tables wherever possible.
    Hope this helps,
    Randy

  • Verizon Palm Centro ringtone issues

    I have A Verizon Wireless Palm Centro and I have some songs on Ptunes I want to use as ringtones. I'm not getting a card anytime soon so can someone just please find a FREE software for me that will turn the songs either on my computer to MIDI files or whaterever will work with my phone. thnx!
    Post relates to: Centro (Verizon)

    Songs can easily "DL" right to your phone from your computer.  It's all explained clearly in the User Guide that ships with every device (on the Installation Disk in pdf format), and is also available online at Palm.com.:
    First Open Pocket Tunes on your phone, then Windows Media Player.  When both programs are up and running, plug in your HotSync cable, but do not press the button to Hotsync!
    Windows: Open Windows Media
    Player on your computer. On the Sync
    tab, select Set Up Sync. Select Finish.
    In the Sync tab, select the files and
    playlists you want to sync manually.
    Select Start Sync. The files are
    transferred to your smartphone.
    This will send the whole library to your card.  There is an option to "Not Sync Automatically" that will then just open the library window in Windows Media Player on the right pane.  You can then drag and drop any songs you want on the card into this window.  When the songs are in the window that you want, then press the "Start Sync" button below the list in Windows Media Player.
    WyreNut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • N70 freezing and ringtone issues

    Hey there hope someone can help me please. Ive rang orange customer services and spoke to them about my issues with the nokia n70. The phone brings up the nokia logo on a white screen and stays there for about a minute then goes away leaving the phone back to normal. Next i try to change my ringtone but it keeps defaulting back to the nokia tone. Orange customer services said these are known issues and i should get a software update for my phone via the nokia website. Ive tried looking for an update but cannnot find anything.
    Please can someone tell me what i can do.
    Many thanks.
    Mark

    HI Mark!
    Welcome to the Nokia Support Discussions!
    Sorry to hear you are having so many problems with your N70. Unfortunately Orange would be incorrect in advising you to visit the Nokia webpage for a software update, there is a patch available for this phone but this is only to help remedy a problem with ring tones not playing.
    Your problem seems to be a bit bigger than this, Orange may be correct in advising you that you need a software update. To get this done you will need to visit a Nokia Service Point, if you follow this link: http://www.nokia.co.uk/nokia/0,8764,76918,00.html you will be able to find the nearest to you.
    Right now it isnt possible to update your phones software from the Internet, it can only be done by one of the engineers .
    Cheers
    Karim

  • Thunderbolt Notification/ringtone issue after 2.11.605.9 Update

    I know that this latest update was supposed to fix the bug where the wrong ringtones were being played when a custom ringtone had been set; however, now I am seeing a different issue with ringtones/notification sounds.   After receiving the update on 12/21, I have noticed that my ringtones and notifications sounds no longer stay set.   I noticed it when my email notification sound started playing some mp3 that I had on my phone and as I was looking further, all of my contacts that I had given custom ring tones were now set to some other ringtone.   I reset all of custom ringtones on my contacts and notifications sounds that I had noticed had changed.   This morning....many of them were set to something else again.  Including the gmail app notification sound (again).    Is anyone else experiencing this issue.

    Same issue as many have described above.
    After update to 2.11.605.9 my custom ringtones and notifications change every time the device is power cycled.   The vast majority of the time my txt notification sound is changed to "Facebook Pop" (which I don't actually remember being an option prior to the update to Gingerbread).  That sound is nearly inaudible, not to mention it's not the custom notification sound I've selected, and contiune to select.
    About 25% of the time after reboot the device selects an mp3 file saved on my phone, one that isn't even listed within my notification ringtone selections list.   It's pretty bizarre, not to mention more than a little frustrating. 
    It makes no difference if the phone it just restarted, or shtudown completely and then started up once more - notification & ringtone selctions are not saved.

  • Dreamweaver CS4 Design View Issues

    Hi,
    I'm experiencing issues with the design view in DW CS4. It seems a little buggy to me. Sometimes I cannot seem to select any items at all, either using a single or double click. It's starting to drive me nuts. Is there an easy way to enter into this form of editing that's a little less random ?
    Many thanks in advance

    There are two things that could prevent you from editing a region of DW's design view:
    The page is the child page of a DW template and the region you are trying to edit is in a NON-EDITABLE part of that template, and cannot be edited in the child page.
    The container (i.e., the ancestor) for the region you are attempting to edit has a CSS style of "overflow:hidden" applied to it.  Double clicking (or right click > Element View > View All) would open that region for editing.
    If you are able to verify that one of those two possibilities is in play, then you have your answer.  If neither of them applies, then we would need to see the page and its code - perhaps you could post a link to it?

  • Designer Install Issue

    Hi,
    I am hoping that someone can help me with an issue I am having with installing Designer (not sure of the version# - it's compatible with BO XI 3.1).  I get the following error message:
    Error 2228.  Database: Unknown table "registry" in SQL query; SELECT 'Root', 'Key', 'Name', 'Value' FROM 'Registry', 'Component' WHERE 'Registry'=? AND 'Registry', 'Component_'= 'Component', 'Component'
    Any assistance would be greatly appreciated!
    Thanks!
    LuAnn

    Hi Dave,
    Thanks for the prompt repy to my post!  I removed the client tools package via the add/remove programs and started fresh.  I still receive the "Error 2228 Database message".  Which is why I thought some additional steps were required to successfully install Designer. 
    One item to note - I went through the client tools package initial install without issue.  Once the install was complete I lauched Designer from the Start menu.  After I clicked on Designer it kicked off another install.  I received the error message close to the end of the install.
    Does that make sense?
    Let me know.  Thanks again!

  • CS6 Web and Design Installation issues

    I'm having installation issues with cs6 web and design. Purchased two downloads of the software for mac, but after attempting to download all day, now it's saying I can't open the download because it isn't recognized by my computer. Been at this all day, so frustrated. Any help?

    Mac Unidentified Developer Issue
    Here's how to open apps that apple should not be blocking: 
    http://www.imore.com/how-open-apps-unidentified-developer-os-x-mountain-lion

  • Dashboard Design Installation issues

    Unable to install Dashboard Design on Windows 7 Office 2010. Invalid Keycode INS00140.
    Installation package name is 51041024
    Keycode is correct
    Running as Administrator.
    HELP???

    Hi,
    This is a know issue in Dashboard design 4.0. You can upgrade to SP 02 or try work around mentioned in SAP Note 1587949 - The Product Keycode is not Valid. INS00140
    Click [here|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333533383337333933343339%7D.do] for the note.
    Hope it helps you.
    Regards,
    Nikhil Joy

Maybe you are looking for

  • VoiceOver conflict with arrow keys ??

    I have just found that VoiceOver is in conflict with the Up/Down/Left/Right Arrow keys. If it is on the four keys do not work. I tried another keyboard to check whether it was a hardware problem and exactly the same happened with VoiceOver on. Why? U

  • How to set up KM folder with Anonymous access.

    Experts, I would like to setup a KM folder with anonymous access where any document on that folder can be viewed by anonymous users by clicking on a link specific to that document. For example: http://server/irj/go/km/docs/documents/TechDocs/file_nam

  • JTable column names with custom model

    I'm having problems with column names in a JTable which uses a custom model. For some reason, the colums are being shown as A, B, C etc. The data, however, displays fine. This is the code which constructs the table. MyTableModel tableModel = new MyTa

  • How to control detail records displayed after requery

    I have a master/detail form. I did not like the behavior of the screen clearing after I did a save so I added code to requery the master/detail records. There is still one behavior which I need to fix -- after I requery the master and detail records,

  • How to get Exception detail

    Hi, I have attached Catch all activity to my process. Inside process calling database procedure that throws no data found exception. I want to capture in catchAll fault. I tried ora:getFaultAsString and ora:getFultName xpath function. But first one r