HELP! Nokia 5000, how to put it on vibrate?

Hi,
Just got the Nokia 5000 for Christmas and I really like it, the only problem is, I can't get it to vibrate when I have an incoming call or new message. It will only be completely silent or have a ring tone or message alert, when I just want it to vibrate.
Please can someone help me?
Much appreciated :-)
Alice
Solved!
Go to Solution.

It should be in your settings, then tone settings and look for 'vibrate alert ' settings
Nokia Lumia 520
 iphone 6 Plus.
Be happy !!

Similar Messages

  • Nokia 5000 How get a dictaphone record from it?

    I got Nokia 5000. When i was celecting a phone i looked for a phone with a dictaphone. But now i cant get a record of my talk from it! Phone tells me "the file is copyright protected" and i can't nor copy to my computer, nor send it to anyone. That dissapoints me. Help me please.

    At the least, you need some kind of exception handler. Even the following, which is an absolute minimum, would work:
    when others then
      dbms_output.put_line('Error with ' || f1 || ',' || f2 || ',' || f3 || ', ' || SQLERRM);Make sure at the SQL prompt, you say "set serveroutput on" in order to see the output of dbms_output.put_line.
    Alternatively, you could perform an insert into an error table that uses the sysdate as it's primary key, and then query your error table after your procedure runs.
    Keep in mind that using "when others" to handle all errors is bad practice; if you know you're going to see a constraint violation frequently, you should actually code up a handler for that error. And technically, if the error is very frequent, you might want to check to see if the row exists BEFORE you try an insert.

  • Nokia 5000 - How much time keep your battery

    Hi, please can you let me know how much time (days of hours) you baterry is workin on. On my Nokia 5000 the baterry work fine for 3 or 4 days, including the stand by tine and talking time. The talking time is not more then 30minutes - 1 hour per day.
    Thank you very much.

    Read the manual about battery life.  There are many factors that can cause excessive battery drain.  Thing such as:
    Push for mail.  You might want to turn push off and check for manually
    You mention you have a WiFi unit.  If you leave WiFi on and you're not near a WiFi signal, your unit will constantly check for a WiFi signal
    Location Services uses battery power.  Check your settings and turn off location for Apps that don't need your location
    These are just a few suggestions.

  • Help!! How to put more than one JComponent on one JFrame

    Hi!
    I'm having a big problem. I'm trying to create an animation that is composed of various images. In one JComponent I have an animation of a sprite moving left and right on the screen(Which works right now). On another JComponent I have a still image that I want to put somewhere on the screen. For some reason I can only see what I add last to the JFrame. Can somebody help me? Thanks
    P.S I don't want to have all the images on the same JComponent. I want to have different classes for different images or animations. You can get the sprites I use from here http://www.flickr.com/photos/59719950@N00/
    import java.awt.Color;
    import javax.swing.JFrame;
    public class ScreenSaverViewer
         public static void main(String[] args)
         Character characterGame = new Character();
         basketballHoop hoopz = new basketballHoop();
         //Clock clock = new Clock();
         JFrame app = new JFrame("Screensaver");
            app.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
            app.getContentPane().add(hoopz);
            //app.getContentPane().add(clock);
            app.getContentPane().add(characterGame);
            app.setSize (450,450);
            app.setBackground (Color.black);
            app.setLocation (300,200);
            app.setVisible (true);
            characterGame.run();
    import java.awt.*;
    import java.awt.image.BufferedImage;
    import javax.swing.*;
    import java.util.ArrayList;
    public class Character extends JComponent
        BufferedImage backbuffer;
        int sliderSpeed = 1;
        int sliderX = 1;
        int sliderY = 1;
        int direction = 1;
        Image myImg = Toolkit.getDefaultToolkit().getImage ("/home/climatewarrior/Sprites_gabriel/muneco_0.png");
        private Image fetchImage(int x)
             ArrayList<Image> images = new ArrayList<Image>();
             for (int i = 0; i < 4; i++)
                  images.add(i, Toolkit.getDefaultToolkit().getImage ("/home/climatewarrior/Sprites_gabriel/muneco_" + i + ".png"));
             return images.get(x);
        private void displayGUI()
            int appWidth = getWidth();
            int appHeight = getHeight();
            backbuffer = (BufferedImage) createImage (appWidth, appHeight);
            Graphics2D g2 = backbuffer.createGraphics();
            g2.setRenderingHint (RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
            g2.drawImage (myImg, sliderX, sliderY, getWidth() / 2 * direction, getHeight() / 2, this);
            g2.dispose();
            repaint();
        public void paintComponent (Graphics g)
            super.paintComponent(g);
            if (backbuffer == null)
                 displayGUI();
            g.drawImage(backbuffer, 0, 0, this);
       public void run ()
            while(true)
                   sliderX = -(getWidth() - getWidth()/2);
                   sliderY = getHeight()/3;
                   int x = 0;
                   int increment = 1;
                   do
                   sliderX += increment;
                   if (sliderX % 30 == 0)
                             myImg = fetchImage(x);
                             direction = -1;
                             x++;
                             if (x == 4)
                             x = 0;
                   displayGUI();
                   } while (sliderX <= getWidth() + (getWidth() - getWidth()/2));
                   do
                   sliderX -= increment;
                   if (sliderX % 30 == 0)
                        myImg = fetchImage(x);
                        direction = 1;
                        x++;
                        if (x == 4)
                             x = 0;
                   displayGUI();
                   } while (sliderX >= -(getWidth() - getWidth()/2));
    import java.awt.*;
    import java.awt.image.BufferedImage;
    import javax.swing.*;
    public class Clock extends JComponent
        BufferedImage backbuffer;
        Image myImg = Toolkit.getDefaultToolkit().getImage("/home/climatewarrior/Sprites_gabriel/score_board.png");
        public void paintComponent (Graphics g)
             g.drawImage(myImg, 250, 100, getWidth()/2, getHeight()/3, null);
             super.paintComponent (g);
             repaint();
    }

    Here's a file I had hanging around. It's about as simple as they come, hopefully not too simple!
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.Point;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.image.BufferedImage;
    import java.io.IOException;
    import java.net.MalformedURLException;
    import java.net.URL;
    import javax.imageio.ImageIO;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.Timer;
    class SimpleAnimationPanel extends JPanel
        private static final int DELAY = 20;
        public static final int X_TRANSLATION = 2;
        public static final int Y_TRANSLATION = 2;
        private static final String DUKE_FILE = "http://java.sun.com/" +
                  "products/plugin/images/duke.wave.med.gif";
        private Point point = new Point(5, 32);
        private BufferedImage duke = null;
        private Timer timer = new Timer(DELAY, new TimerAction());
        public SimpleAnimationPanel()
            try
                // borrow an image from sun.com
                duke = ImageIO.read(new URL(DUKE_FILE));
            catch (MalformedURLException e)
                e.printStackTrace();
            catch (IOException e)
                e.printStackTrace();
            setPreferredSize(new Dimension(600, 400));
            timer.start();
        // do our drawing here in the paintComponent override
        @Override
        protected void paintComponent(Graphics g)
            super.paintComponent(g);
            if (duke != null)
                g.drawImage(duke, point.x, point.y, this);
        private class TimerAction implements ActionListener
            public void actionPerformed(ActionEvent e)
                int x = point.x;
                int y = point.y;
                Dimension size = SimpleAnimationPanel.this.getSize();
                if (x > size.width)
                    x = 0;
                else
                    x += X_TRANSLATION;
                if (y > size.height)
                    y = 0;
                else
                    y += Y_TRANSLATION;
                point.setLocation(new Point(x, y)); // update the point
                SimpleAnimationPanel.this.repaint();
        private static void createAndShowUI()
            JFrame frame = new JFrame("SimpleAnimationPanel");
            frame.getContentPane().add(new SimpleAnimationPanel());
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.pack();
            frame.setLocationRelativeTo(null);
            frame.setVisible(true);
        public static void main(String[] args)
            java.awt.EventQueue.invokeLater(new Runnable()
                public void run()
                    createAndShowUI();
    }

  • I need help figuring out how to put pics over video

    How do I put pictures over video while keeping the audio from the video? I am using Premiere Elements 9.

    Do you want the pictures to fill your video frame or do you want them smaller than the video frame so that the video shows behind them?
    Have a look at my sample "Add Motion Behind Your Slideshow" sample and see if that's what you're trying to do.
    http://muvipix.com/cooltricks.php
    In any event, you put the video on one video track and the photos on a track above it, basically.
    There's much more to explain, but before we get too deeply into that, we need to know exactly what you're trying to do. Can you link us to a YouTube video example?

  • My friend just gave me his old ipod touch and I need help figuring out how the put it on my itunes account so that I can add songs and apps to it. Does anybody know how?

    Just in case that wasn't specific enough....It's an older ipod touch.  He gave it to me as a Christmas gift and I want to keep the songs and Apps he already has on it but I want to be able to add more to it which means I would need it on my own itunes account because I can't add anything to it without a password.

    I'd suggest restoring it to make sure you start completely clean:
    http://support.apple.com/kb/HT1414
    Then you can sync whatever content you wish:
    http://www.apple.com/support/ipodtouch/
    Regards.

  • How to put Video/DVD/games/eBook to Nokia

    Nokia phone still the NO.1 of all the phones, As a fan to Nokia phone, I want to share with you some tips to play Nokia. Only some experience of play Nokia phone, just enjoy it.
    This guide will show you how to put videos to Nokia, DVD to Nokia, games to Nokia and eBook to Nokia.
    1 How to convert DVD/Video to Nokia
    2 How to free download games to Nokia
    3 How to put eBook to Nokia
    1 How to convert Video/DVD to Nokia
    After you download [url=http://www.daniusoft.com/dvd-to-nokia-suite.html]Daniusoft DVD to Nokia Suite[/url], you may find there are two options for you to choose for DVD to Nokia or Video to Nokia.
    1 Run “DVD to Nokia Converter” to load Daniusoft DVD to Nokia Converter.
    Insert your DVD disc into your DVD-Rom. Click “Load DVD” button to add the DVD file. You can also click “Load File” to add DVD/IFO from your hard disk.
    [img]http://www.daniusoft.com/article-image/nokia/dvd-nokia.jpg[/img]
    A regular DVD movie has several titles, by default, this software will merge all the DVD chapters into one video clips, you can check the click box before the title list to select any DVD clips you want to rip. Then just check the box “Merge into one file” to join file.
    2 Open the drop download list to choose the Audio and Subtitle you like, you can also change the output files location.
    3 Click on “Start” button to start the conversion.
    Video to Nokia
    Click “Video to Nokia Converter” to load the Daniusoft Video to Nokia Converter.
    The convert video to Nokia is similar with the operation of convert DVD to Nokia
    “Add” button to load video -> Choose output “format” -> “Start” Convert
    This software supports batch conversion, so you can add several video clips at one time.
    Tips:
    Cut off the black edge of DVD- Click on “Effect” button. Move your mouse cursor to a box on the frame around the video to cut off black edge.
    Control file size- You also click on the “Settings” button to customize the resolution, such as: video bit rate, encoder, frame rate, audio bit rate, channel, etc. This program also lets you create a profile and save it, then you can use different settings for each video clips.
    With the “trim” function, you can trim any segment of videos to convert as you want:
    Edit video effect – Click on “Effect” button. You can Adjust Brightness, Contract, Saturation of the video and the adjust the volume of music.
    2 How to download games to Nokia (Free Nokia Java Games Installation guide)
    Step 1 Download one of the Free Nokia Java Game files to your computer, and unzip the contents to a folder called 'Games' on your desktop.
    Step 2. Download and install Nokia PC Suite
    Step 3. Connect your Nokia to your computer with a cable or Bluetooth Dongle or infra-red cable
    Step 4. Launch the Application Installer and continue. (Tutorial is based on the Nokia 7210)
    Click the Install Application Icon Pictured
    Here is a webpage which contains the games and themes list for Nokia, you may find many useful information here:
    http://www.daniusoft.com//nokia-resource-list.html
    How to transfer between Nokia and computer
    Bluetooth - To send a game to your mobile via Bluetooth. You simply right click the desired theme on your desktop, select Send To/Bluetooth/Nokia 6600
    A new message will arrive on your phone, open it and you will be able to install the new game. Once installed, delete the message and press the menu button and your game will have been added.
    infra red connection cable - Firstly you will need an infra red connection cable. Download the SIS file to your computer. Enable infrared port in your phone. Select your sis file on PC, press right mouse button and select "Send to -> Infrared". The file will arrive as new message. Open Messaging application, then open the message. Installer will be started automatically.
    [img]http://www.daniusoft.com/article-image/nokia/game-nokia.jpg[/img]
    Then go to the folder where your files have been downloaded and unzipped into, and select a game folder. For this tutorial we are going to install Blackjack, because we have a gambling problem Double click the Blackjack folder.
    Now you will see the all important Blackjack.jad file double click it to download it to your Nokia 7210
    Wait until the installation process has finished (indicated below). Blackjack is now installed and you can gamble to your hearts content
    3 How to read eBook on Nokia
    1 Download and install the Ebook for Nokia to use as your eBook reader.
    2 Download the Doc or TCR version of an eBook (perhaps Frankenstein).
    3 Transfer the downloaded file to your phone in the standard way.
    Recommended eBooks:
    1 eReader http://www.ereader.com/product/detail/18841?refid=45377
    Formats: eReader, Doc.
    2 MicroReader http://home.c2i.net/thvoslef/midlets/mrinfo.html
    For java-enabled Siemens mobile phones.
    Formats: Doc, TCR, text. Freeware.
    3 ReadM http://my-symbian.com/7650/applications/applications.php?faq=18&fldAuto=347
    Formats: Doc, TCR, and gzipped text files. Freeware.
    4 eBook for Nokia http://www.geocities.com/ebooknokia/
    Formats: Doc, TCR, text, and HTML. Freeware.
    5 iSilo http://www.isilo.com/
    iSilo reads Doc eBooks in addition to its own iSilo format, and it's very easy to convert text, HTML, or DOC files into an iSilo document using free desktop tools.
    Formats: Doc and iSilo.

    Re: Ebooks
    Your explanation for adding ebooks to the phone:
    "3 How to read eBook on Nokia
    1 Download and install the Ebook for Nokia to use as your eBook reader.
    2 Download the Doc or TCR version of an eBook (perhaps Frankenstein).
    3 Transfer the downloaded file to your phone in the standard way."
    Well the only way I know how to put ANYTHING on there is ZOON and ZOON DOES NOT HAVE AN OPTION IN IT FOR EBOOKS THAT I CAN SEE.  
    How is "IN THE STANDARD WAY" supposed to be of any use or help to me whatsoever when STANDARD WAY FOR EBOOKS IS NOT EVIDENT TO ME???

  • How to install sound and vibration toolkit 8.5

    Hello all, I have just started using labview and would like to run the "SVXMPL_Third Octave Analysis for Multiprocesor" example as an example for multithread programming, but I run into the issue that the "Sound and Vibration" toolkit is required before running the example.  I have installed the labview 8.5. I have gone through the posed link and gone through  the list of products installed in my machine (ControlPanel>Add and Remove Programs> National Instruments Software), but I couldn't find the "sound and vibration toolkit". I have tried to run the installation setup in order to add the toolkit. it looks like I have already installed all the available software. I don't know how I should install the toolkit.  I appreciate on any comments on how to install the toolkit.   I appreciate if you can help me on how to install "sound and vibration toolkit" in my machine.  

    Never mind.  I got it.

  • How to put opera mini in nokia n70 on orange?do yo...

    how to put opera mini in nokia n70 on orange,and do you have a site for opera mini in nokia n70

    @fierce
    Have you tried going to m.opera.com in N70 browser or downloading Opera Mini 6.5 (S60 2nd Edition) from here?http://www.opera.com/mobile/download/versions/
    Happy to have helped forum with a Support Ratio = 42.5

  • I have an ipod touch and i put cds on itunes on my pc , but i cant figure out how to put the music from the cds on my ipod .. can u help me ?

    i have an ipod touch and i put cds on itunes onmy computer , but i cant figure out how to put the music from the cds on my ipod touch can anyone help me?

    ok i select th e music from my music libary and go to file and click sync to my ipod and when it gets to step 3.. it says waiting for changes to be made.. yes the songs play on the itunes ..  and no it wasnt the same computer i used last time

  • Its sad! I dont no how to put songs from my library to my ipod! plz help.

    It says songs on the ipod cannot be updated because all because all of the playlists selected for updating no longer exist. I have lots of music in my library but i dont no how to put it into my ipod. If helped ill be sure to comment back. thanks again.

    See this...
    hudgie: iPod cannot be updated because one or more playlist...
    Basically connect the iPod to the computer. When it appears in iTunes go to edit-->preferences. Click the iPod tab. Select automatically update all songs or playlists or automatically update selected playlists and select playlist(s).
    btabz

  • I need help! I don't know how to put songs from my library to my library.

    It says songs on the ipod cannot be updated because all because all of the playlists selected for updating no longer exist. I have lots of music in my library but i dont no how to put it into my ipod. If helped ill be sure to comment back. thanks again.

    Connect the iPod and open iTUnes.
    Select iTunes prefs -> iPod.
    Select Automatically update all songs and playlists.

  • Help , i have cds on my laptop and i cant figure out how to put them on my iphone

    help i have cds on my laptop and i cant figure out how to put them on my iphone

    Sync them as described in the User's Guide.

  • I tried to sinc my photos and i ended up deleting off my phone all the pictures.  i only ended up with one folder, and i cant figure out how to put rest of folders from my computer back on my phone.....help

    i tried to sinc my photos and i ended up deleting off my phone all the pictures.  i only ended up with one folder, and i cant figure out how to put rest of folders from my computer back on my phone.....help
    and on a second problem.  I need to know for sure that my contacts are backed up on my computer

    Create a parent folder on your computer to store the named folders of photos that you want transferred to your iPhone. Under the Photos tab for your iPhone sync preferences with iTunes, select the parent folder. All named folders of photos within will be transferred to your iPhone as separate folders or albums.
    Regarding your 2nd question, this should be easy. Your contacts should be available on your computer with or without an iPhone or any cell phone, which can be lost or stolen.
    Although contacts are included with your iPhone's backup which is updated by iTunes as the first step during the iTunes sync process, not a good idea to depend on this either since the iPhone backup includes a significant amount of other data. Contacts are designed to be synced with a supported address book app on your computer. With Windoze, this can be with Outlook 2003, 2007, or 2010 along with syncing calendar events and notes, or with the address book app used by Outlook Express with XP and by Windows Mail with Vista and Windows 7 called Windows Contacts for syncing contacts only.

  • I updated my itunes to ios 6.1.3 and now i do not know how to put music on my ipod...someone help!!!

    i updated my itunes to ios 6.1.3 and now i do not know how to put music on my ipod...someone help!!!

    If you  have iTunes 11 turn on the Sidebar. Go to iTunes>View and click on Show Sidebar. You can also do a Crtl+S to show the sidebar. The sidebar is where Devices appears. and Control+B to show the Menu bar
    To import music into your iTunes library on the computer go to iTunes>Help>iTunes Help>Add items to iTunes and follow the instructions
    To sync to your iPod go to iTunes>Help>iTunes Help>Sync your iPod.... and follow the instructions.

Maybe you are looking for

  • Waiting for FiOS Availabili​ty is Becoming Ridiculous

         My name is Nick.  Ever since you started advertising FiOS, I have been awaiting its arrival in my area (my zip code is in VA, 23434).  I live in a residential area, but it is not rural.  We currently only have Charter cable here and DirecTV.  Bo

  • How do i install windows on mavericks using MDT?

    I have no problems installing 7 thru dvd or usb, but cannot get it to install using MDT

  • How do I create a mask in Premiere Pro?

    I am using Adobe Premiere Pro CS 5.5, on a late 2013 iMac.  I would like to create a mask around a character in my video so I can put her on top of other videos (making the background for the video she's in transparent/invisible).  I have seen tons o

  • LDB doubt

    REPORT  yjsample4                               . tables : bsik, t001. START-OF-SELECTION. GET BSIK.   IF bsik IS NOT INITIAL.     APPEND bsik TO g_t_bsik.   ENDIF. END-OF-SELECTION.   SELECT * FROM bsik INTO TABLE g_t_bsik1 WHERE lifnr IN kd_lifnr.

  • SP & JAVA

    Hi there I think Im going nuts! Trying despretly to get a Stored Procedure to work with a Java application with let4s say various results. I4m trying to invoke a stored procedure that takes IN parameters & one OUT argument typed as REF CURSOR (in the