Dumb question:  How do I assign a ringtone?

I've chosen one main ringtone, and before I updated and restored my phone I had another ringtone assigned to my boyfriend, but I don't remember how I did that. How's it done?

Got it. I was choosing his name from favorites, when I needed to choose it from "contacts." Nevermind.

Similar Messages

  • How can I assign a ringtone to a specific contact with the iphone4 ios7

    How can I assign a ringtone to a specific contact with the iphone4 ios7?

    From the home screen, tap on Contacts, tap on the contact you'd like to edit.
    In the top right, tap the , scroll down, for Ringtone, tap on Default, select the desired ringtone.

  • Dumb question: how to protect my info before taking my MB in for service??

    Ok, so I know this is probably a really basic question but I just don't know how to do this. I need to take my MB in for repair because the microphone is wonky but before I do that I want to make sure that certain folders or files (ex. bank statements etc.) are protected from prying eyes. I've never had to take in any of my Macs for repair so I've never had to deal with this issue before. I tried looking under help but I couldn't really find what I was looking for.
    I don't have any separate users set up as I'm the only one to use the MB. The only password I have set up is the admin password. I tried locking the folder(s)in question but as I am the only user on the MB, it's no problem to unlock the folder once you know the admin password and I assume when I take it in for service that I need to provide the admin password, right?
    Can someone please walk me through the steps to best protect my personal information?
    Thanks!

    Backup your sensitive data to an external drive then delete it from the computer's hard drive. After you get the computer repaired you can restore your data from the backup.
    Or, create an encrypted disc image using a different password. Store your sensitive data in the disc image and delete the copies on the hard drive. Put the encrypted disc image on an external hard drive or if it isn't too large burn it to a DVD.
    Or, get third-party encrypting software that will let you encrypt a file or folder on your hard drive or store the data in a protected datafile - VersionTracker or MacUpdate.

  • Dumb question- how do I get to the command line without X running?

    Hi,
    As per the title please... I need to rerun Xorg -configure, but cannot for the life of me figure out how to shut down X and get to a command line
    Thanks

    Bes wrote:
    Ctl alt and backspace just takes me out to the login screen.. from there I can't get to the terminal without X running.
    Ctrl Alt F5 gets me to the command line, but I can't kill the X server
    Thanks though
    so with ctrl+alt+f5 you're at the console
    log in if you need to, then
    ps ax | grep gdm
    4441 ? Ss 0:00 /usr/sbin/gdm-binary
    4442 ? S 0:00 /usr/sbin/gdm-binary
    4444 tty7 SLs+ 3:38 /usr/bin/Xorg :0 -audit 0 -auth /var/lib/gdm/:0.Xauth
    6633 pts/0 S+ 0:00 grep gdm
    kill 4444
    the above example assumes gdm is your login manager so substitute whatever you're using, and you can kill the other instances of gdm (in my example processes 4441 and 4442 but don't waste your time on the grep process 6633
    now redo your X config
    (actually you could run this from a terminal from within X and it should have the same effect of dropping you back to console
    Last edited by tj (2008-04-20 09:36:15)

  • Dumb question-how do I re-install TX HotSynch after a repaired viral infection erased it? Thanks

    null
    Post relates to: Palm TX

    Do you have the original CD that you got with the TX?
    If you need to reinstall Palm desktop, which includes hotsync manager, use the CD and install on the PC.
    Click on the following link for the support page for your device on the kb.palm.com webpage.
    http://www.palm.com/us/support/tx/
    There are links on the page to the user guide, troubleshooting, how to's, downloads, etc.
    Post relates to: Palm i705

  • Dumb question- how to install program?

    i've had this computer for awhile and never really had to do it. I think I've done it wrong a few time actually. It's a .dmg file, and when I click on it it opens a folder with a link to the program, some read me files, plug ins, accessories folder. I seem to recall when I first got the computer them telling me that I had to drag something into the applications folder and then delete the rest?

    There are two standard procedures for installing software on the Mac:
    1. drag the application icon from wherever it is (say, in the virtual disk that appears when you clikc ona .dmg file) to /Applications
    or
    2. If the file is a package/installer (looks like a box with stuff in it), double-click on the file and follow the prompts.

  • How do I assign images to grid cells based on their random number value?

    Hello everyone!
         I need a good point (or shove) in the correct direction.
    Background
         I've created (with previous help from this forum) a 12 x 9 random number grid which cycles through the numbers 1 to 9 a total of twelve times each. I've then created a button which shuffles the current grid's cells each time it is clicked. I now want to use 9 images that I have imported as individual symbols into the library (I have given them each their own class titled "skin1," "skin2," ... "skin9") as cell labels or the equivalent. I have also set the images up as individual movie clips (using the .Sprite class as the extended base class but keeping the actual image class names in line with their object name, i.e. the "skin1" image is the "skin1.as" class).
    Question
         How do I assign these images to the grid cells based on their respective values (ranging from 1 to 9) and have them populate the grid each time I click the "shuffle" button? So for example, in my grid the numbers 1 through 9 randomly appear 12 times each. Every time the number 4 appears in a cell, I want it to be assigned to the image "skin4" (which is just a graphic that looks like a button and has a fancy number "4" printed on it). Below is a chunk of the code I am using to draw the grid cells with:
    // Creates a grid cell when called by generateGrid().
    private funciton drawCell(_numeral:int):Sprite
              This is the code I am currently implementing to populate the grids with (although I
              don't want to use text labels as I want to fill each grid with an image according
              to its numerical value (1 to 9).
         var _label:TextField = new TextField();
         _label.multiline = _label.wordWrap = false;
         _label.autoSize = "center";
         _label.text = String(_numeral);
         // Add numerical label to cell array.
         cellLabels.push(_label);
         var _s:Sprite = new Sprite();
         _s.graphics.lineStyle(2, 0x019000);
         _s.graphics.drawRect(30, 0, cellW, CellH);
         _s.addChild(_label);
         return _s;
         While the following isn't working code, it will hopefully demonstrate what I want to achieve inside this function so I don't have to use the above snippet for text labels:
         //This will "hopefully" create an array of all 9 images by calling their classes.      var _imageArray:Array = [skin1, skin2, skin3, skin4, skin5 , skin6, skin7, skin8, skin9];      // This is what I want to happen for each cell using the above image array:      for (i = 0; i < cells; i++)      {           if (_numeral == 1)           {                // Insert skin1 image for each instance of #1 in the grid.           }           if (_numeral == 2)           {                // Insert skin2 image for each instance of #2 in the grid.           }           ...           if (_numeral == 9)           {                // Insert skin9 image for each instance of #9 in the grid.           }      } 
         Again, I don't want to use text labels. I have a custom skin graphic that I want to go over each number on the grid based on its numerical value (1 to 9). Any help with this is much appreciated!

    kglad,
         Thank you for your help with this one. Using the code below, I have successfully populated my grid cells with the desired corresponding graphics. I noticed one thing though regarding my use of the shuffle button with this particular implementation: even though the numerical values residing in each cell get shuffled, the original images remain in the grid rather than being replaced by new ones. The first code snippet below is the revised cell drawing function including your help; the second snippet shows you my simple shuffle button function (where the problem lies, I think).
    Snippet #1:
         // Creates a grid cell when called by generateGrid().
         private function drawCell(_numeral:int):Sprite
              var _label:TextField = new TextField();
              _label.multiline = _label.wordWrap = false;
              _label.autoSize = "center";
              // Creates a label that represents the numerical value of the cell.
              cellLabels.push(_label);
              var _s:Sprite = new Sprite();
              _s.graphics.lineStyle(2, 0x019000);
              _s.graphics.drawRect(30, 0, cellW, cellH);
              // Physically adds the labels to the grid.
              _s.addChild(_label);
              // Assigns a graphic class to a cell based on its numerical value.
              var _classRef:Class = Class(getDefinitionByName("skin" + _numeral));
              // Undefined variable for holding graphic classes.
              var _image:* = new _classRef();
              // Lines the images up with the grid cells.
              _image.x = 30;
              // Physically adds a graphic on top of a cell label.
              _s.addChild(_image);
              return _s;
         So far so good (although I question needing text labels at all if they are just going to remain invisible underneath the images, but enough about that for now). This next part is the reason that the images won't shuffle with the cell values, I think.
    Snippet #2:
         // When shuffleButton is clicked, this event shuffles
         // the number array and fills the cellLabels with the new values.
         private function onButtonShuffleClick(e:MouseEvent):void
              // Shuffles the number array.
              shuffle(numbers);
              // Verifies the array has been shuffled.
              trace("After shuffle:", numbers);
              // Loop replaces old cellLabels with new number array values.
              for (var i:int = 0; i < cells; i++)
                   cellLabels[i].text = String(numbers[i]);
         As you can see, it never replaces the original images that populate the grid. I tried using the _s.removeChild(image) function but that didn't work, nor would copying/pasting some of the code from snippet #1 directly into this function as it would cause another instance of the images to be placed over top of the existing ones rather than actually swapping them out. Any continued help here is greatly appreciated!
         PS Is there a quicker method for posting code into these forums without having to type it all out by hand again (i.e. copy/paste or drag/drop from my .fla or Notepad file directly into this thread)?

  • How the jvm assign thread to garbage collection

    hi,please answer this question
    How the jvm assign thread to garbage collection

    So let me get this straight, OP. You dump a load of homework questions on a bunch of total strangers, get a lot of replies, but the only time you bother to respond to that help is to insult someone? Did "thanks" ever occur to you?

  • Quick ? - How do I Assign IRQ For VGA (865PE)

    Quick Question - How do I Assign IRQ For VGA (865PE)
    Kim :D
    IANG

    You can't as all taken care by WinXP ACPI.

  • Two questions 1. how can I send multiple photos to the same number 2. how do I assign a silent ringtone to a number?

    I want to send three photos to the same phone number. How can I do this without sending three seperate texts? Also how do I assign a silent ringtone to a number to block that number?

    you should be able to copy/paste more than one photo into an imessage by holding down on the entry field. When it comes to MMS, the number of pictures you can send is dictated by your carrier
    You could try using this service to create a special ringtone that has no actual sound content
    http://technologyguy.hubpages.com/hub/Convert-iTunes-music-into-ringtone-for-iPh one
    Just make the section of the song that you convert a silent part of a song (like the very beginning or end)

  • My ipad mail is synced to my iMac mail account. On iPad, I can only see my inbox and sent messages. I can't see any of the folders I have created on my iMac. How do I do that? Probably a dumb question, but I know there's a lot of smart people out there!

    My iPad mail is synced to my private email account, which I organise on my iMac. On iPad, I can only see inbox and sent messages folders, not any of the other folders in my email account I have created on my iMac. How do I get iPad to show my other folders? Probably a dumb question, but I know there's a lot of smart people out there.

    If you select a mailbox, you should get an Edit button (easier to see in landscape mode). Clicking the button will provide you with check circles for the messages. You also get Delete and Move buttons at the bottom. Check the messages you want to move and then navigate to the mailbox you want to drop them into. I think as long as you can navigate to a mailbox you can move the messages to it.
    In the Mac Mail application and probably Outlook on the Windows side, you also setup rules to move messages to specific mailboxes. If the mailboxes are stored on the server, then you can have the sorting done on the server and they should appear that way on the iPad. If your later messages do not show up, you may need to have the iPad app pulled down more messages until they are all showing.

  • How do I assign a song as ringtone?

    I don't have an iphone yet, but am finding out things about it before I buy.  Such as, how do set a song as a ringtone.
    I have a TV Theme on my other phone at the moment.  I go into Music, Click menu, and Assign as Ringtone.
    Or go into profiles, and do the same for whichever profile I wish to do this for.
    I assume it's as simple on the iphone, to go into the profile for which you want to use the tone, and select the MP3 from your music folder, and job done?
    Or do go into your music folder, find the song, select as a ringtone and job done?
    Or is it not like that??
    Simon

    IPhone doesn't allow you to use an MP3 as a ringtone. You can use one of the ringtones that comes preinstalled or buy one from iTunes for 99c.
    There is a way around apples limitations. Using ITunes you can create a ringtone by selecting a 30 second portion of a song you want then saving it in the right format. You can google it or here's a link to one such walkthrough:
    http://www.simonblog.com/2010/09/06/how-to-create-ringtone-for-iphone-on-itunes- 10/

  • This is probably a dumb question, but I can't find an answer. How do I make the text on my calendar larger so I can actually read it when I print it out?

    This is probably a dumb question, but I can't find an answer. How do I make the text on my calendar larger so I can actually read it when I print it out? I am using a MacBook.

    Press "Command P" and when the Print dialogue box comes up, towards the bottom there is an option allowing you to choose the text size, i.e: small, med, large.
    Hope this helps,
    NEIL

  • Dumb question but How do you know what generation iPad you have?

    Dumb question but how do you know what generation iPad you have?  I got mine as a gift on Xmas day 2012 but don't know how to find out what version/generation it is.  Can someone help me find that info?  I have looked within settings &amp; elsewhere and I cannot find it.  Thanks in advance!

    Append the last three characters of its serial number to http://www.everymac.com/ultimate-mac-lookup/?search_keywords= and load the page.
    (83797)

  • Question: How to assign number ranges to the Official Excise Document Numbe

    Question: How to assign number ranges to the Official Excise Document Number
    Field name is: EXNUM, table name: J_1IEXCHDR
    SAP CIN
    Dear expert,
    I will briefly explain the scenario:
    I have created return po.
    Process MIGO w.r.t. return PO- Material document generated.
    Process: J1IS - excise invoice other movement create.
    --> Now I want to print the document --> I m trying with T-code J1IP --> entered all the required data --. Used out put type - J1I0
    But I am not getting the list of document for printing and even print is not coming.
    There is no print document getting for a printing.
    When I checked in an above said table (mentioned in question), I found that for transaction type OTHR, there is no number ranges defined for official document no.
    And because of this reason I m not getting any document in the print.
    Can you Pl extend Ur help and Pl suggest me where (path or transaction) the number ranges can be maintained for the official excise document No.
    Thanking you all n advance and expecting your earliest response.
    Regards
    om

    Dear Friend,
    J_1IEXCHDR this table stores the all the excise documents created while excise transactions are done ,
    for that Goto j1i9 or SNRO  in these transaction you maintiane the number ranges  for the
    J_1IPLA2     PLA part II number range object
    J_1IRG1     RG1 Number range object
    J_1IRG1_T     No. Range for RG1 - Excise group / Material
    J_1IRG23A1     RG23A part 1 no. range object
    J_1IRG23A2     RG23A part II number range object
    J_1IRG23C1     RG23C part I number range object
    J_1IRG23C2     RG23C part II number range object
    J_1IRG23D     Folio Numbers for RG 23D
    like these  lot of objects are there  for them u maintiane the no. ranges
    Regards
    Pramod

Maybe you are looking for