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)!

Similar Messages

  • 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);
    }

  • 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)

  • 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.

  • Making a clock with hand pointers

    Hello macromedia flashers.
    im thinking of making a simple clock design and adding hand pointers that tell the time.but im no action script fan and i have a few questions to ask.
    a)how hard is it to add action script to the hand pointers?
    b)can i use the clock on my desktop to show time?
    Thank you.

    The difficulty of the task is dependent your ability and knowledge of using Flash.  In general it is not that difficult, but you need to become familiar with a variety of code to get it working such as the Date class and movieclip rotation property controls.  You should search Google using terms like "Flash analog clock tutorial"
    You can open/play an swf file on your monitor.

  • 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.

  • 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..

  • Sample with an external clock with a SCXI 1140 (8 channel sample/hold amplifier)

    I have a SCXI 1140 (8 channel sample/hold amplifier) and a SCXI 1305 card (BNC).
    I want to sample an analog signal with external frequency (SMB connector).
    I plug an analog signal on the channel 0 and a TTL signal on SMB connector "hold/clock" (the jumper corresponding to the SMB connector is on Hold postion).
    I use the "ACQUIRE N SCANS - EXT SCANSCLK.VI" LabView example with :
    DEVICE=1
    CHANNELS [0]=SC1!MD1!0
    CLOCK SOURCE=I/O CONNECTOR
    CLOCK SOURCE STRING=SC1!MD1!
    When I execute the example, I have the error -10 001 (problem with clock source string).
    If I used CLOCK SOURCE=INTERNAL there is no error, but I do not sample with hold signal !
    What is the probl
    em with the string ?
    Is there another solution for sampling whith an external signal ?

    The error that you're seeing is being generated because the clock source string should be "sc1!md1" not "sc1!md1!". It's the "!" at the end of the string that is causing the error.
    Regards,
    Erin

  • 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.

  • IPod 4,1 will not update to iOS 7. I updated my iMac to 10.9.1 (maverick). Latest Numbers version on iMac is not compatible with Numbers on iPod. Ideas? Can I go back a version with Numbers?

    iPod 4,1 will not update to iOS 7. I updated my iMac to 10.9.1 (maverick). Latest Numbers version on iMac is not compatible with Numbers on iPod. Ideas? Can I go back a version with Numbers? I downloaded old version of Numbers 2.0.1 from DVD but with both versions the 2.0.1 will not open.  So both versions are present but only the new version functions. I tried to drag the new version to the trash but the old version still runs error message and will not open. I did not try to restart with the new version in the trash.

    Maybe. See:
    Reverting to previous version of Numbers

  • Excel file with numbers on ipad.

    I sent an excel file with numbers to my ipad.  When I open it with Numbers there is no data in the cells.  HELP!!

    How did you send it? Email? iTunes?

  • Automatically open excel spreadsheets with numbers

    can anyone tell me is it possible to set numbers as the default application to ALWAYS open excel spreadsheets? each time i try to open an excel spreadsheet the computer starts up the trial office software. I then have to cancel and choose "open with" and then set "always open with" numbers.
    Having just converted from Windows, I was able to set certain programs to always handle specific file formats, e.g. .jpg, mpeg, avi so I did not have to choose the program every single time i wanted to open a file.
    thx., same goes for pages ,in lieu of word?

    Select an Excel file and option-select (Right Mouse Button) and select Get "Info". See attachment below to set "Open With."
    Regards,

  • How can I set up a database program for inputing baseball team statistics that is compatible with numbers?

    I have been asked to be a statistician bar and athletic team. We are playing Dartball, a game of darts that is based on baseball.  The previous status station used Apple works which included a database manager that was compatible with numbers. I have checked with the Apple geniuses online for my MacBook Pro and they did not have an answer to my problem. Is there a program that can be used on my MacBook Pro that will keep up with statistics for eight baseball team?

    Im all for the dumb questions, because its probably a dumb mistake I did.
    I have checked that both sus ped and exp. ped are fully plugged in.
    Neither pedals show up in the Midi meter in the transport.
    I dont know how to set a patch for the keyboard, but if both pedals work in other programs (i.e. Reason), wouldn't it not be an issue with a Logic configuration and not in the keyboard's setting? (Unless I have a separate Logic setting that loads automatically when it detects Logic is booted. I dont know how that would work though.)
    Thank you for your prompt help, though. Any other ideas?

  • How to set up an address book and make labels with numbers or pages?

    How do you set up an address book and make labels with numbers or pages?

    Create an Apple ID - My Apple ID

Maybe you are looking for

  • Payment Proposal Layout?

    Hi Guru's, When we run the proposal we are using the standard display variant. We want to edit this to add the invoice #, doc #, invoice date and total? Is there any way I can do this ? Also if I change this for one company code will i be changing th

  • Cant "save as stationery" using Mail in Snow Leopard.

    I would like to create a custom version of one of the existing stationary templates in Mail. After making the modifications I find that "Save as Stationery" is grayed. I was able to accomplish this once, but have no idea what I did to make it work. A

  • BT Sport Bill

    Background I took out BT Sport in August last year, I then took out BT's telephone and broadband service which went live in mid-December 2013.  I then rang BT on or around the 23rd December after receiving a bill from them to give them my direct debi

  • Cannot activate upgrade to Elements 13. Message: "not connected to internet, connect & try again" ?

    I cannot activate upgrade to Elements 13. Message received: "not connected to internet, connect & try again". I was connected to the internet. I tried with Internet explorer, Mozilla Firefox and Google Chrome but failed each time.

  • Esata Port and USB Ports Not working

    My USB ports have not been working for a long time. They will charge my phone, but windows doesnt pick them up nor any other device I connect via any of the USB ports. I recently took my computer into a shop to have them fix a wire that had come undo