Your favorite Apple, iPhone, iPad, iOS, Jailbreak, and Cydia site.
Thread: Metroon
is a discussion within theiPhone 4|4S New Skins / Themes Launches
forums, a part of theNew Skins / Themes Launches
section;I was just wondering whether there is a way I can have back the black status bar on lockscreen as in the first version? Or is there another way to
...-
06-02-2012, 08:42 AM #1041Green Apple
- Join Date
- Oct 2008
- Location
- Sydney, Australia
- Posts
- 34
- Thanks
- 13
- Thanked 1 Time in 1 Post
I was just wondering whether there is a way I can have back the black status bar on lockscreen as in the first version? Or is there another way to edit the color of the new noti bar on lockscreen. The teal doesn't go well with my current wallpaper though
-
06-02-2012, 09:35 AM #1042Metro UI Enthusiast
- Join Date
- Feb 2011
- Location
- Salzburg, Austria
- Posts
- 883
- Thanks
- 271
- Thanked 1,565 Times in 381 Posts
I will add the option to turn off the lockscreen in the future.
I haven't tested it with biteSMS, but check if the permissions for the Configuration.plist in /var/mobile/Library/Metroon/ are set correctly
No, and no, sorry
-
The Following User Says Thank You to EndFinity For This Useful Post:
j0k3r (06-02-2012)
-
06-02-2012, 09:56 AM #1043
I am basically done. Did red, blue, green, grey, and orange. Hope anybody doesn't mind that I didn't do brown, pink, or purple. I will do those later if somebody really wants them. I was just trying to fix a few things that were kind of bugging me first. Prob post up sometime today and maybe the .artworks tomorrow
-
06-02-2012, 10:41 AM #1044iPhoneaholic
- Join Date
- May 2011
- Location
- Philadelphia, PA
- Posts
- 417
- Thanks
- 111
- Thanked 53 Times in 48 Posts
-
06-02-2012, 11:42 AM #1045
Working with this to get a live clock. Thanks to bcscustom and I think, petro for this tile made for OS7. Instead days it had the word athenas, and iphone instead the months. Also it is easy to move the day, month, date and the weekday. Just find a line like this: <table style="position: absolute; top: 79px; left: -270px and edit the two numbers to set a different position. I will try to upload the tile the way I edited it.
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>BcsCustom Rotation</title>
<link rel="stylesheet" href="Config/Body.css" type="text/css">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body id="Ipod" onload="configureUI()">
<div id="Rotate"><img src="[email protected]" width="117" /> </div>*
<script type="text/javascript" src="Private/coolclock.js"></script>
<!---------------------------------------------------------------------------------------------------------------->
<!-- Style section Clock/Date-->
<style>
#Layer { width: 300px; height: 300px; position: absolute; top: -10px; right: 0px; down: 0px; left: -10px; z-index: -10;}
.stretch { width:117%; height:117%;}
body {
* * * * margin: 0;
}
@font-face {
* * * * font-family: Default;
* * * * src: url(Default.ttf);
}
* * SPAN#date
{
* * * * font: 30px "Default";
* * * * font-weight: 100;
* * * *color: yellow;
* * * * text-shadow: 0px 0px 1px black;
* * **
* * * *text-transform: lowercase;
* * * * -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(#666), to(transparent), color-stop(0.9, #666));
}
* * SPAN#month
{
* * * * font: 25px "Default";
* * * * font-weight: 100;
* * * *color: orange;
* * * * text-shadow: 0px 0px 1px black;
* * * *text-transform: lowercase;
* * * * -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(#666), to(transparent), color-stop(0.9, #666));
}
* * SPAN#weekday
{
* * * * font: 25px "Default";
* * * * font-weight: 100;
* * * *color: white;
* * * * text-shadow: 0px 0px 1px black;
* * * *text-transform: lowercase;
* * * * -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(#666), to(transparent), color-stop(0.9, #666));
}
* * SPAN#year
{
* * * * font: 19px "Default";
* * * * font-weight: 100;
* * * *color: grey;
* * * * text-shadow: 0px 0px 1px black;
* * * *text-transform: lowercase;
* * * * -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(#666), to(transparent), color-stop(0.9, #666));
}
</style>
<div id="Layer"><img src="Layer.png" class="stretch"/></div>
<div id="Layer"><img src="Overlay.png" class="stretch"/></div>
<!---------------------------------------------------------------------------------------------------------------->
<script type="text/javascript">
function calendarDate ( )
{
* * var this_date_name_array = new Array("00","01","02","03","04","05","06","07","08" ,"09","10","11","12","13","14","15","16","17","18" ,"19","20","21","22","23","24","25","26","27","28" ,"29","30","31")
* * var this_weekday_name_array = new Array("Sun","Mon","Tue","Wed","Thu","Fri","Sat")
* * var this_month_name_array = new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","A ug","Sep","Oct","Nov","Dic") *//predefine month names
* var this_date_timestamp = new Date() * *
* var this_weekday = this_date_timestamp.getDay() * *
* var this_date = this_date_timestamp.getDate() * *
* var this_month = this_date_timestamp.getMonth() *
* var this_year = this_date_timestamp.getYear() *
if (this_year < 1000)
* * this_year+= 1900;
if (this_year==101)
* * this_year=2001; * * * *
document.getElementById("date").firstChild.nodeVal ue = this_date_name_array[this_date] //concat long date string
document.getElementById("month").firstChild.nodeVa lue = this_month_name_array[this_month] //concat long date string
document.getElementById("weekday").firstChild.node Value = this_weekday_name_array[this_weekday] //concat long date string
document.getElementById("year").firstChild.nodeVal ue = this_year //concat long date string
}
// -->
</script>
</head>
<body onload="CoolClock.findAndCreateClocks()">
<canvas id="clock" style="position: absolute; top: 98px; left: -23px; -webkit-transform:scale(0.23);" class="CoolClock:swissRail:85:GMTOffset"></canvas>
<table style="position: absolute; top: -10px; left: -280px; width: 320px; height: 480px;z-index: -1;">
<tr align="right" valign="top" *border="0" cellpadding="0">
* * <td height="12" valign="top" margin-left="20" >
<span id="date">
<script language="JavaScript">calendarDate(); setInterval('calendarDate()', 1000 )</script>
* * </span>
* * </td>
</tr>
<tr></table>
<table style="position: absolute; top: 10px; left: -230px; width: 320px; height: 480px;z-index: -1;">
<tr align="right" valign="top" *border="0" cellpadding="0">
* * <td height="12" valign="top" margin-left="20" >
<span id="month">
<script language="JavaScript">calendarDate(); setInterval('calendarDate()', 1000 )</script>
* * </span>
* * </td>
</tr>
<tr></table>
<table style="position: absolute; top: 70px; left: -210px; width: 320px; height: 480px;z-index: -1;">
<tr align="right" valign="top" *border="0" cellpadding="0">
* * <td height="12" valign="top" margin-left="20" >
<span id="weekday">
<script language="JavaScript">calendarDate(); setInterval('calendarDate()', 1000 )</script>
* * </span>
* * </td>
</tr>
<tr></table>
<table style="position: absolute; top: 79px; left: -270px; width: 320px; height: 480px;z-index: -1;">
<tr align="right" valign="top" *border="0" cellpadding="0">
* * <td height="12" valign="top" margin-left="20" >
<span id="year">
<script language="JavaScript">calendarDate(); setInterval('calendarDate()', 1000 )</script>
* * </span>
* * </td>
</tr>
<tr></table>
<script>
<!--
/*
Auto Refresh Page with Time script
By JavaScript Kit (javascriptkit.com)
Over 200+ free scripts here!
*/
//enter refresh time in "minutes:seconds" Minutes should range from 0 to inifinity. Seconds should range from 0 to 59
var limit="0:30"
if (document.images){
var parselimit=limit.split(":")
parselimit=parselimit[0]*60+parselimit[1]*1
}
function beginrefresh(){
if (!document.images)
return
if (parselimit==1)
window.location.reload()
else{*
parselimit-=1
curmin=Math.floor(parselimit/60)
cursec=parselimit%60
if (curmin!=0)
curtime=curmin+" minutes and "+cursec+" seconds left until page refresh!"
else
curtime=cursec+" seconds left until page refresh!"
window.status=curtime
setTimeout("beginrefresh()",1000)
}
}
window.onload=beginrefresh
//-->
</script>
</head>
* * * * <body style="margin: -104px; margin-top: 25px;">
* * * * * * * * <div style="width: 320px; height: 480px;">
* * * * * * * * * * * * <div style="font-family: Default;
*font-size: 48px; color: 0000CC; text-align: center; opacity: 1.9;">
<script type="text/javascript">
var currentTime = new Date()
* var hours = currentTime.getHours()
* var minutes = currentTime.getMinutes()
**
* if (hours < 10)
* hours = "0" + hours
* if (minutes < 10)
* minutes = "0" + minutes
* document.write("<b>" + hours + ":" + minutes + " " + "</b>")
</script>
* * * * * * * * * * * * </div>
* * * * * * * * </div>
* * * * </body>
</body></html>
I did the same, put all inside com.apple.mobileipod in com.pandora and it works great. It is awesome what Endfinity have done and also amazing the way it can be edited to suite in everyone's mind. I am very happy with this theme.Last edited by PabloCrj23; 06-02-2012 at 12:22 PM.
-
06-02-2012, 12:39 PM #1046
-
06-02-2012, 02:34 PM #1047
I agree with anti piracy just the first place I thought to look.
@End, I was talking about one unified tile that displayed everything. Not separate tiles.
The bitesms problem, for me it says sender error use valid phone number, but if I turn off the live tile, it just has a number for the messages and the lockscreen seems to work fine. Not perfect, but better.
And for the notification problem, I got a cydia tweak that removes it altogether, and it looks sexy
I added a clock tile. Which can be found on the metroon mods page.
Just get "NoLockScreen" from cydia. It works like a charm.Last edited by JMAN712; 06-02-2012 at 02:37 PM.
-
06-02-2012, 02:45 PM #1048Livin the iPhone Life
- Join Date
- Apr 2010
- Location
- FL/NYC
- Posts
- 1,031
- Thanks
- 501
- Thanked 313 Times in 228 Posts
-
06-02-2012, 02:49 PM #1049
Sorry how would one create a live pandora tile. I can't seem to figure it out. I put the com.apple.mobileipod .plist in the pandora tile file and I got nothing.
-
06-02-2012, 02:52 PM #1050My iPhone is a Part of Me
- Join Date
- Sep 2010
- Location
- Virginia
- Posts
- 731
- Thanks
- 297
- Thanked 233 Times in 162 Posts
-
06-02-2012, 04:36 PM #1051
-
06-02-2012, 05:04 PM #1052
Here is my Winterboard UI
The base theme has the teal color included in it. I included additional Red, Blue, Orange, Green, and Grey accents. If you want a different color other than teal then just select it and drag it on top of the base like in the screenshot
Attachment 588400
I included optional chatkit mods. One has a grey sms wallpaper instead of white with a few altered images and another chatkit that has accent colored buttons. I tried to make it easy to activate which color you want.
Here are some sample screens of the colors and different chatkits. A few are from the default SMS app and a few are from bitesms. You can also see what the send button looks like with the edited string file like i had mentioned earlier. Hope you guys like them. If anybody wants me do them for the brown, pink or purple accents colors let me know
Attachment 588401Attachment 588402Attachment 588403Attachment 588404Attachment 588405
WP UI+Color Mods.zip
-
-
06-02-2012, 05:50 PM #1053
Nice, just tested
will you do a themed [email protected]?
-
06-02-2012, 06:12 PM #1054
-
06-02-2012, 06:25 PM #1055
-
06-02-2012, 07:06 PM #1056
It's Segoe WP. Should be same one EndFinity included with theme. I also used it for the dialer and a few other things. Gan-Man was going to port it for Bytafont but I don't think he has had the time. Maybe my orange mod will get his attention lol.
By the way what color did you like best? I think the blue and the grey look the best personallyLast edited by DannyZ83; 06-02-2012 at 07:09 PM.
-
The Following User Says Thank You to DannyZ83 For This Useful Post:
GaN-MaN (06-04-2012)
-
06-02-2012, 09:21 PM #1057What's Jailbreak?
- Join Date
- May 2012
- Location
- Connecticut
- Posts
- 18
- Thanks
- 1
- Thanked 4 Times in 4 Posts
If this reply is a double post sorry :/
Any chance you can make it with the default actual Metro Messaging Theme, which is the two shades of purple, dark purple with white letters and light purple with dark letters? I prefer the two shades versus the white with the color outline. If not thank you anyway
Last edited by Socom; 06-02-2012 at 09:38 PM.
-
06-02-2012, 09:48 PM #1058My iPhone is a Part of Me
- Join Date
- May 2010
- Location
- quebec ,
- Posts
- 716
- Thanks
- 381
- Thanked 197 Times in 109 Posts
Hey is it you j0k3r0815 on the x&$$$$ forum asking to get my theme free ??
strange the guy says the same thing almost as I got in PV from you ... I hope you don't come here asking new feature to Endfinity for a theme you must have downloaded somewhere else ? And in PV you where not having a credit card or a PayPal to donate for my theme but you have one now to get metroon ... Very strange , It must be a coincidence !!!
-
06-02-2012, 09:50 PM #1059
-
06-02-2012, 10:14 PM #1060What's Jailbreak?
- Join Date
- May 2012
- Location
- Connecticut
- Posts
- 18
- Thanks
- 1
- Thanked 4 Times in 4 Posts




LinkBack URL
About LinkBacks
Reply With Quote

