Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
Status
Not open for further replies.
The alarm icon was one that Lexs used to include with a lot of her widgets, I'm not sure where she originally found it, but since it's been pretty widely distributed at this point and I never knew her to pass along paid theme items, I'm thinking it's safe to post.

Edit--download removed until creator is established on this one, I've been told it's from a paid theme.

Download and unzip; put all four files into the UIImages folder of your theme, and respring.

Morning edits to "Caution":

Hi All just read your post correct I would never pass anything on that was
from a paid Theme
I think you are discussing the small alarm clock on the status bar.(white/red)
I have had that sometime I got it from dbarThemes it was a small clock on a Theme which I modified and used for the status bar

I think I even used the clock and used it as part of a widget here or at igroup

Sorry for any confusion

I have a lot of catching up to do :)

OMG!!!!!!! You're back!!!!!!!! So good to see you around again, hope you are doing ok!:D
 
Thank Everyone for the kind words:eek: Good to be back.
and all is Good:)

Have gone back a few pages and I see some great Lock and Springboard Themes Great Work guys I have a lot of catching up to do.


I have just upgraded my Phone and JB on 4.3.3 so it's your turn guys to help me out with some of the changes:)

I have also got an iPad2 and posted a view shots in the ipad section
More to learn:confused:

Is my good friend Jason (Fantasigraphic) still around I hope you got through the storms ok

Must stop chatting and start learning :)

Thanks again
 
fsUxG.jpg



UEPMu.jpg
 
JLKeo: Thanks for all your help, got it all squared away! One last question (promise its the last one!) I installed the add on packs, because I really want to use the Redline keyboard, so I have the add ons selected in Winterboard, but like nothing is showing up? Any ideas. Thanks a TON for everything.

Which add-on packs? The UI's or the keyboard? I've only had the theme for a few days, so i'm still toying around with it.

I have the UI's placed in this order:

Redline SE Z UI
Redline SE Z UI Buttons
Redline SE UI

all above the master theme (Redline)

As for the keyboard, I believe 88hurst and another person posted up a couple custom keyboards for Redline. Just search for them in the Redline thread at MMi.
 
Thank Everyone for the kind words:eek: Good to be back.
and all is Good:)

Have gone back a few pages and I see some great Lock and Springboard Themes Great Work guys I have a lot of catching up to do.


I have just upgraded my Phone and JB on 4.3.3 so it's your turn guys to help me out with some of the changes:)

I have also got an iPad2 and posted a view shots in the ipad section
More to learn:confused:

Is my good friend Jason (Fantasigraphic) still around I hope you got through the storms ok

Must stop chatting and start learning :)

Thanks again

Hi Mrs. you are missed in this Thread i see alot of good stuff from You but i missed this modded widget from you where the widget is in the bottom section hope you can helped me out:)
 

Attachments

  • 301htmb-1.png
    301htmb-1.png
    984.7 KB · Views: 68
@IrishVixen

How do you enable the font "Capture.ttf" thats included in your lockscreen theme ? Thanks, it looks amazing :)
 
@IrishVixen

How do you enable the font "Capture.ttf" thats included in your lockscreen theme ? Thanks, it looks amazing :)

No need to enable, it's a web font and the widgets have the code needed to use it. Just leave it in the folder and it'll work. I'm not sure it's compatible with Bytafont for full system use anyway; you typically need multiple versions named certain ways.


LEXS--Jason's still here, I'm sure he'll be around soon.
 
Thanks LEXS
 

Attachments

  • ImageUploadedByTapatalk1310315167.563015.jpg
    ImageUploadedByTapatalk1310315167.563015.jpg
    114.2 KB · Views: 68
Alrighty, I need a little code help here. I've been using LS Blink for the last few days and this problem hasn't presented itself until today.

As you can see from the screen shot, it says 12:21 AM...but it's 12:21 PM. For some reason, the AM didn't change to PM at noon. Any ideas?

f210046d.png


I believe this is the part of the code that controls it...anyone see something that I might change to affect this?

function updateClock() {
var currentTime = new Date();
var currentHours = currentTime.getHours();
var currentMinutes = currentTime.getMinutes();
currentHours = (currentHours < 10 ? "0" : "") + currentHours;
currentMinutes = (currentMinutes < 10 ? "0" : "") + currentMinutes;
document.getElementById("hours").innerText = currentHours;
document.getElementById("minutes").innerText = currentMinutes;
if (currentHours == 00 && currentMinutes == 00) {
calendarDate();
};
if (twelvehour) {
document.getElementById("minutes").innerText = currentMinutes + " AM";
if (currentHours > 12) {
var currentHours = currentHours - 12;
document.getElementById("hours").innerText = currentHours;
document.getElementById("minutes").innerText = currentMinutes + "PM";
};
if (currentHours == 0) {
var currentHours = 12;
document.getElementById("hours").innerText = currentHours;
 
Not a good idea. LOL

Look for a file in your theme's UIImages folder that's labeled "Translucent_Base.png" That's your status bar. Replace it with a transparent file. There's one attached here (there really is, I promise! Just try clicking on the left side of the "attachment" area, it's small, but it's there, and it's the one I use.)

Be sure to back up your original elsewhere, or do what I do and rename it. I add BCK- to the front of any file I'm replacing. That way it's always near the top of the folder, and it's easy to find.

Thanks so much for attaching that! It worked...sort of. haha. So as you can see from my image in my previous post, I'm using the Redline Frameless Icon, just as you are in your image. So in SSH I open up the Redline Framless Icon.theme and in it there's no UIImages folder, just Bundles, Folders, psd, and an Info.plist. So instead I opened up the Redline.theme folder (you know, the main one) and went to UIImages there and repaced the Translucent_Base.png and the Translucent_Base@2x.png with your attached image. So basically here's what's up: In WinterBoard, if I have just Redline Frameless Icon checked, the dock is great but the status bar isn't translucent. But if I have both Redline and Redline Frameless Icon checked, the StatusBar is great, but my dock is black (image attached). So I guess my final question is how do I get rid of the black dock? When just Redline Frameless Icon is checked, the dock is transparent, and I want to keep that. Is this something with the "overlay.png" or something? Thanks again for your help!
 

Attachments

  • photo.PNG
    photo.PNG
    425.3 KB · Views: 58
Alrighty, I need a little code help here. I've been using LS Blink for the last few days and this problem hasn't presented itself until today.

As you can see from the screen shot, it says 12:21 AM...but it's 12:21 PM. For some reason, the AM didn't change to PM at noon. Any ideas?

Image

I believe this is the part of the code that controls it...anyone see something that I might change to affect this?

function updateClock() {
var currentTime = new Date();
var currentHours = currentTime.getHours();
var currentMinutes = currentTime.getMinutes();
currentHours = (currentHours < 10 ? "0" : "") + currentHours;
currentMinutes = (currentMinutes < 10 ? "0" : "") + currentMinutes;
document.getElementById("hours").innerText = currentHours;
document.getElementById("minutes").innerText = currentMinutes;
if (currentHours == 00 && currentMinutes == 00) {
calendarDate();
};
if (twelvehour) {
document.getElementById("minutes").innerText = currentMinutes + " AM";
if (currentHours > 12) {
var currentHours = currentHours - 12;
document.getElementById("hours").innerText = currentHours;
document.getElementById("minutes").innerText = currentMinutes + "PM";
};
if (currentHours == 0) {
var currentHours = 12;
document.getElementById("hours").innerText = currentHours;


Does it only do this for the 12 hour, its fixed at 1?

I don't know how to test this, except wait until 12:00 tomorrow, but to me, this here:

if (currentHours > 12) {

Means greater than 12, if you changed this to 11, the would the PM show up at 12 instead of 13(1:00)?




The version of Blink I just downloaded says PM at 1, but the minutes are really screwy:

4ed00459.jpg
 
Last edited:
@ maverick86 :

Those indicators were SBSearchPageIndicator@2x.png and SBSearchPageIndicatorCurrent@2x.png (FYI : i'm on iph4) They have the same size as UIPageIndicator

Those image files should be put in Bundles/com.apple.springboard

Or you can just search for any "no page dots" theme in cydia...

Thanks, I tried installing 4 packages from Cydia but none of them worked (3 didn't download because there was some error with the package) and one just did nothing once installed. I went into the com.apple.springboard folder as well as the UIImages folder and renamed all PNG's related to the indicators, hoping that would make it disappear and it worked to some degree. However in place of the white dot I now see a transparent version of the magnifying glass...

I also thought maybe it's just the noki hd theme so I switched to the prestige hd theme and same thing, that little indicator dot is still there (obviously in the prestige theme but it's there nonetheless).
 
Thanks, I tried installing 4 packages from Cydia but none of them worked (3 didn't download because there was some error with the package) and one just did nothing once installed. I went into the com.apple.springboard folder as well as the UIImages folder and renamed all PNG's related to the indicators, hoping that would make it disappear and it worked to some degree. However in place of the white dot I now see a transparent version of the magnifying glass...

I also thought maybe it's just the noki hd theme so I switched to the prestige hd theme and same thing, that little indicator dot is still there (obviously in the prestige theme but it's there nonetheless).

Sorry, I haven't seen everything you have tried, but I saw a couple of your posts about this. Have you tried Springtomize or anything and selected hide page dots and see if that gets rid of it?
 
Sorry, I haven't seen everything you have tried, but I saw a couple of your posts about this. Have you tried Springtomize or anything and selected hide page dots and see if that gets rid of it?

Well that was probably the most obvious and simple solution from the start lol. Springtomize got rid of that stupid dot so thank you for the suggestion
 
Does it only do this for the 12 hour, its fixed at 1?

I don't know how to test this, except wait until 12:00 tomorrow, but to me, this here:

if (currentHours > 12) {

Means greater than 12, if you changed this to 11, the would the PM show up at 12 instead of 13(1:00)?




The version of Blink I just downloaded says PM at 1, but the minutes are really screwy:

Image

Yep, jjk454ss, it fixed itself at 1. Weird. And you're right, I guess I can't check it until noon tomorrow, but I'll give what you posted a shot and see if it fixes it. Thanks!
 
Status
Not open for further replies.
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.