Analog clock

how can i get that analog clock that the new BB's have

Eddieclassic wrote:
how can i get that analog clock that the new BB's have
Get a new BlackBerry 
Seriously, it is part of the OS on the newer devices, the Storm and Tour.
1. If any post helps you please click the below the post(s) that helped you.
2. Please resolve your thread by marking the post "Solution?" which solved it for you!
3. Install free BlackBerry Protect today for backups of contacts and data.
4. Guide to Unlocking your BlackBerry & Unlock Codes
Join our BBM Channels (Beta)
BlackBerry Support Forums Channel
PIN: C0001B7B4   Display/Scan Bar Code
Knowledge Base Updates
PIN: C0005A9AA   Display/Scan Bar Code

Similar Messages

  • How can I change my Analog clock displayed back to a Digital one? (Treo 700wx)

    Apparently on its own my phone has changed the format of its clock on the upper right hand corner of the treo screen. The clock used to read digital time but now it reads a clock with an hour hand and a minute hand. No one (Sprint) knows how to change it back to digital time. Help!
    Post relates to: Treo 700wx (Sprint)
    Message Edited by WyreNut on 04-16-2008 06:16 PM

    Take your stylus and tap and hold on the analog clock and you will get a drop down list with two choices analog or digital. Choose digital.
    Post relates to: Centro (Sprint)

  • Is there a way to adjust the size of the analog clock shown on screen?

    Ok. this is a minor annoyance but it would be great if someone could tell me how to make the system analog clock (when viewed on screen) can be made smaller? It seems my only other option is to show it as a digital clock or a teeny tiny analg clock on the menu bar.
    Thanks in advance.
      Mac OS X (10.4.9)  
      Mac OS X (10.4.9)  

    .02,
    See two views below.  Are we talking about the same thing:

  • Analog Clock Chime Challenge - not on the hour

    I have a custom analog clock job. The following page will help you understand it:
    eleven-hour-clock(dot)com
    Here is the author's mathematical description:
    >>
    60 seconds per minute X 60 minutes per hour = 3600 seconds per hour
    3600 seconds per hour X 12 hours on a clock = 43,200 seconds from ‘noon’ to ‘midnight’ on an analog clock
    ~
    43,200 seconds /11 waves = 3,927.2727 seconds per wave
    3,927.2727 seconds per wave / 60 seconds per minute = ~ 65.454 minutes per wave
    ~
    1 wave = the distance from one union of the hour, minute & second hands of an analog clock to another one of the ELEVEN unions of the three hands, around the clock.
    >>
    So, from the first "union" at noon, the chime should ring every 65.454 minutes, in which the minute hand and hour hand are directly on top of each other.
    Sound like fun? Would love some help. I have fair experience with actionscript, but this is a little over my head, and, yes, I'v got this in AS2 and would like to keep it there. Complete scripts would be great.
    Thanks!

    Here is a shareware for that.
    http://www.macupdate.com/info.php/id/10419
    -Bmer
    Mac Owners Support Group
    Join Us @ MacOSG.com
     An Apple User Group 
        MacOSG Podcast >>
    Note: I receive no compensation for product endorsements.

  • Analog clock -- with numbers?

    I like the analog clock on the external screen of my Style, but it can be difficult to read at a quick glance, since it has no numbers, and the 5-minute marks are all the same size.
    Is there any way of having a clock that looks just like the current analog one, but has numbers at least in the 12-3-6-9 positions?

    Hi jturecek
    The Clock application on the BlackBerry® smartphone does not have the option to show numbers.
    Thanks
    -CptS
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Plz help me in my Analog Clock  !!!

    Hi everyone,this is super007remo.I am in a way of developing an Analog Clock n finished with clock structure and seconds hand.Can anyone help in adding minutes and hours hands ,plzzzzz.Any kinds os suggestions r invited.
    /*<applet
    code=time.class
    width=800
    height=800>
    </applet>
    import java.awt.*;
    import java.applet.*;
    public class time extends Applet implements Runnable
    int a=0,i=375,j=150,m=0,h=0;
    Thread t;
    Font f;
         public void init()
    setBackground(Color.black);
    f=new Font("TimesNewRoman",Font.ITALIC,15);
              public void start()
              t=new Thread(this);
              t.start();
              public void run()
                   while(i>=375 && i<450 && j>=150 && j<225)
                        a=1;
                        try
                        Thread.sleep(1000);
                        catch(Exception e)
                        System.out.println(e);
                        repaint();
                        i+=5;
                        j+=5;
    while( i<=450 && i>375 && j>=225 && j<300)
                        a=2;
                        try
                        Thread.sleep(1000);
                        catch(Exception e)
                        System.out.println(e);
                        repaint();
                        i-=5;
                        j+=5;
    while( i>300 && i<=375 && j>225 && j<=300)
                        a=3;
                        try
                        Thread.sleep(1000);
                        catch(Exception e)
                        System.out.println(e);
                        repaint();
                        i-=5;
                        j-=5;
    while( i>=300 && i<375 && j<=225 && j>150)
                        a=4;
                        try
                        Thread.sleep(1000);
                        catch(Exception e)
                        System.out.println(e);
                        repaint();
                        i+=5;
                        j-=5;
                        if(i==375 && j==150)
                             //m=1;
                             run();
         public void paint(Graphics g)
    g.setColor(Color.red);
    g.fillOval(290,140,170,170);
    g.drawOval(290,140,170,170);
    g.setColor(Color.yellow);
    g.fillOval(300,150,150,150);
    g.drawOval(300,150,150,150);
    g.setColor(Color.black);
    g.setFont(f);
    g.drawString(""+1,410,175);
    g.drawString(""+10,315,200);
    g.drawString(""+2,435,200);
    g.drawString(""+8,315,250);
    g.drawString(""+4,435,250);
    g.drawString(""+7,340,275);
    g.drawString(""+5,410,275);
    g.drawString(""+3,440,225);
    g.drawString(""+9,310,225);
    g.drawString(""+6,375,290);
    g.drawString(""+12,375,160);
    g.drawString(""+11,340,175);
    g.fillOval(375,225,5,5);
    if(a==1){
    g.drawLine(375,225,i,j);
              if(a==2){
              g.drawLine(375,225,i,j);
                                  if(a==3){
                                  g.drawLine(375,225,i,j);
                                  if(a==4){
                                  g.drawLine(375,225,i,j);
              }

    /*  <applet code=TimeApplet width=400 height=400></applet>
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import java.awt.font.*;
    public class TimeApplet extends Applet implements Runnable
        int seconds;
        Thread t;
        boolean keepRunning;
        Font f;
        public void init()
    //        setBackground(Color.black);
            // start at 5 hours and 20 minutes
            seconds = 5*3600 + 20*60;
            f=new Font("TimesNewRoman",Font.ITALIC,15);
        public void start()
            t=new Thread(this);
            keepRunning = true;
            t.start();
        public void stop()
            keepRunning = false;
            t = null;
        public void run()
            while(keepRunning)
                try
                    Thread.sleep(1000);
                catch(InterruptedException ie)
                    keepRunning = false;
                    System.err.println("interrupt: " + ie.getMessage());
                seconds++;
                repaint();
        public void paint(Graphics g)
            super.paint(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            int w = getWidth();
            int h = getHeight();
            int radius = Math.min(w,h)/3;
            int cx = w/2;
            int cy = h/2;
            // center of clock
            g2.setPaint(Color.red);
            g.fillOval(cx-2, cy-2, 4, 4);
            // bezel
            int x = (w - 2*radius)/2;
            int y = (h - 2*radius)/2;
            g2.setPaint(Color.black);
            g2.drawOval(x, y, 2*radius, 2*radius);
            // numbers
            g2.setFont(f);
            FontRenderContext frc = g2.getFontRenderContext();
            // java measures angles increasing clockwise
            // starting at 3 o'clock = 0 degrees
            // 2 pi radians = 360 degrees
            // so to get started: -90 degrees = 12 o'clock
            double theta = -Math.PI/2;
            // 2 pi radians = 12 hours
            double thetaInc = 2*Math.PI/12;
            int R = radius - 10;
            for(int j = 0; j < 12; j++)
                String s = String.valueOf(j+1);
                float width = (float)f.getStringBounds(s, frc).getWidth();
                float height = f.getLineMetrics(s, frc).getAscent();  // close enough
                theta += thetaInc;
                float sx = (float)(cx + R * Math.cos(theta)) - width/2;
                float sy = (float)(cy + R * Math.sin(theta)) + height/2;
                g2.drawString(s, sx, sy);
            // second hand
            // 2 pi radians = 60 seconds
            thetaInc = 2*Math.PI/60;
            theta = -Math.PI/2 + seconds * thetaInc;
            R = radius - 15;
            x = (int)(cx + R * Math.cos(theta));
            y = (int)(cy + R * Math.sin(theta));
            g2.drawLine(cx, cy, x, y);
            // minute hand
            // int minutes = seconds/60;
            double minutes = seconds/60.0;
            theta = -Math.PI/2 + minutes * thetaInc;
            R = radius*4/5;
            x = (int)(cx + R * Math.cos(theta));
            y = (int)(cy + R * Math.sin(theta));
            g2.drawLine(cx, cy, x, y);
            // hour hand
            // int hours = seconds/3600;
            double hours = seconds/3600.0;
            // 2 pi radians = 12 hours
            thetaInc = 2*Math.PI/12;
            theta = -Math.PI/2 + hours * thetaInc;
            R = radius*5/8;
            x = (int)(cx + R * Math.cos(theta));
            y = (int)(cy + R * Math.sin(theta));
            g2.drawLine(cx, cy, x, y);
        public static void main(String[] args)
            Applet applet = new TimeApplet();
            Frame f = new Frame();
            f.addWindowListener(new WindowAdapter()
                public void windowClosing(WindowEvent e)
                    System.exit(0);
            f.add(applet);
            f.setSize(400,400);
            f.setLocation(200,200);
            applet.init();
            applet.start();
            f.setVisible(true);
    }

  • Analog Clock in Power Saver mode?

    When the E71 is in a power saver mode (black blank screen) with the D-pad button glowing in a slow periodic pattern, you can press the D-pad button and a large digital clock showing the time appears. How can I change that to an analog clock instead?

    No, it is not possible to change that on the 3110c.

  • Getting Rid of Desktop Analog Clock after Tiger Migration Assistant

    I used the analog clock that floats on the desktop under OS10.2.8 and although it migrated fine - I no longer want it. I think it used to reside in user/library/login items but there isn't any such thing anymore and nothing happens when I try to drag it into the trash - suggestions? Thanks.

    Carla,
    Check in System Preferences...>Date & Time for various options.
    ;~)

  • Analog clock/screensaver Nokia 6303C

    Hello,
    My company phone is a Nokia 6303C. Nice phone but something's wrong with the analog clock.
    I've set is as a wallpaper but is it not working properly. When I set the clock the time
    adjusts, that is ok, but when I have a look at the clock, let's say 45 minutes later, the
    time has not changed to the current time. 
    The only way to get the right time is to set the clock again. That, ofcourse, is not handy.
    Anyone who can help me with this one?
    Thanks and greetings 
    Henk

    I don't get hold of your phone model but basically it's all the same for all models of Nokia:
    Press menu->Settings->Date & time->Clock type->select analog
    Message Edited by android on 19-Mar-2008 01:28 PM
    Knowledge not shared is knowledge wasted!
    If you find it helpfull, it's not hard to click the STAR..

  • Analog clock MC -- how to produce accurate results?

    I'm using Flash 8.
    I am trying to program an analog clock movieClip -- if any of
    you have seen the UK game show "Countdown", it's a replica of the
    Countdown clock. It's a 30-second clock and the second hand runs
    from top ("12") to bottom ("6").
    My first crack at this has been timeline-based. I've used a
    motion tween to animate the hand moving from top to bottom. My
    movie is set to run at 12fps, but it's only running at ~11.3fps.
    Even though it's a slight deviation, it causes the clock to run
    about 32 seconds instead of 30. Note that during the animation, the
    CPU usage isn't exceeding about 4%.
    I do understand that you can't depend on the Flash Player to
    run at a particular framerate.
    So I changed the logic behind the clock to use setInterval().
    Unfortunately, even my intervals aren't firing at the exact rate
    they need to. I've set the interval to 100ms, but it appears to be
    firing at 110ms or so. Even changing the intervals to a higher
    number (200ms, 500ms) don't produce exact results.
    Any ideas or suggestions on how I can make this work?
    Thanks,
    Curt

    When you say “DAQ express” I assume you mean DAQmx, in
    LabVIEW 7.0 or later. You could go the route of trying to do precise software
    timed stuff, but using WinXP you will always run into the problems that you
    mentioned. Hardware timed, will always be more accurate, but setting up the
    control may be a bit tricky. To program a hardware timed acquisition you can either
    do it explicitly with the DAQmx functions, or you can use the DAQ assistant
    (which is an Express VI). With the DAQ assistant once you drop it down it
    should be pretty straight forward how to configure it, a window will pop and
    you will have to fill in what you want. I would also recommend taking a look at
    some of the shipping examples to get a feel for DAQmx programming without using
    the DAQ assistant. You can find these examples in LabVIEW by going to: Help
    Menu >> Find Example. Then from there: Hardware Input and Output >>
    DAQmx >> Analog Generation. If you look at the examples that are Internally
    Clocked, those will be the easiest to work with initially. Now I am not too
    sure how well this will be for stage control, generally this is done either
    with a motion board or if fine enough control is needed FPGA. But with those
    examples, it should give you a good starting point to work from.
     -GDE

  • Lock screen clock changed to analog clock

    I use either Sony clock or digital clock on lock screen.  However, it will get changed to analog clock for no reason.  Few times already.  Changed it back to digital/Sony clock, but it goes back to analog clock after awhile (days).
    Anyone see this behavior?  Any way to make the Sony/digital clock to stick?
    Thanks.
    Solved!
    Go to Solution.

    I have not experienced this behaviour and just like Thommo said, the clock should stick as long as you don't change it or have any application that affect it. Are you sure that you lock the screen when you put the phone in your pocket or similar?
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • N6085 analog clock display

    My father just bought the 6085 he was setting the analog clock icon appear on the screen saver but it seems only the digital clock appear. Is it the feature of this phone not allow to do so?

    the digital clock will only appear as screensaver
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • Sense Analog Clock

    Been using Sense Analog Clock  for months now without a problem.  Now after update, clock does not keep time if I am on the app screen or using the browser or even after it goes to sleep.  When I awaken the device back to the home screen the widget time is not the correct time as the time in the upper right hand corner.  After the minute changes from the system clock, then the widget clock updates itself.  Has anyone else run into this problem?  Any solutions for the widget keeping accurate time all the time?

    In that case, I would suggest emailing the developer and asking if they can fix/find the bug. The developer's can be found on the application's Market description page.

  • Ios7 clock app I can no longer see the time or cell signal at the top of the screen.

    I just updated to ios7  I have the iphone 5.
    I can no longer see the cell signal or time at the top of the clock app.  I actually have to leave the clock app to see what time it is or try to read the analog clocks in the time zone section.  I have a friend with a 4s, and they can still see the stuff at the top of the screen.  Help?  Is this a bug, or is there a setting I can change?

    This is what it loks like...no time or cell signal at the top

  • Alarm marker in Clock app

    Maybe it's me with too much imagination but the alarm marker on the analog clock looks like a drop of blood dripping from the clock. Any way of changing it? Thanks.
    Solved!
    Go to Solution.

    Their is currently no way of changing the color of the marker.

Maybe you are looking for