Your favorite Apple, iPhone, iPad, iOS, Jailbreak, and Cydia site.
Thread: Eight OS
is a discussion within theiPhone 2G|3G|3GS iPod Touch 1G|2G|3G New Skins / Themes Launches
forums, a part of theNew Skins / Themes Launches
section;any news?? its absolutly a shame that the developer takes the money we've paid, but won't develop his theme anymore. can i get my money back cause i paid for
...-
10-20-2010, 08:57 PM #1941
any news??
its absolutly a shame that the developer takes the money we've paid,
but won't develop his theme anymore.
can i get my money back cause i paid for a theme that wont work on my iPhone4 neither on my iPad.
DeCoy
-
11-01-2010, 04:31 AM #1942
Since I find that the update of weather, alignment of boxes of this theme are not work properly and not in the good positions respectively on the iphone, I changed the following config.js and widget.html for all themes. I try to post them one by one.
This is the frist one - Calendar theme
<html>
<head><title>newclock</title></head>
<style>
TD#date{
font-family: Helvetica;
font-weight: bold;
text-align: left;
color: #d1d1d1;
opacity 0.0;
text-shadow: 0 0 0.2em rgba(0, 0, 0, 1);
/*text-shadow: #FFFFFF 0px 1px 0px;*/
font-size: 16px;
text-transform: lowercase;
line-height: 10px;
}
SPAN#date{
font-family: Helvetica;
font-weight: bold;
text-align: left;
color: #d1d1d1;
opacity 0.0;
text-shadow: 0 0 0.2em rgba(0, 0, 0, 1);
/*text-shadow: #FFFFFF 0px 1px 0px;*/
font-size: 16px;
text-transform: lowercase;
line-height: 10px;
}
</style>
</head>
<body >
<table style="position: absolute; top: 191px; left: 117px; width: 175px; height: 161px; z-index: 100;" cellspacing="0" cellpadding="0" align="CENTER">
<tr>
<td id="date" valign="top">
<span id="calendar">
<img src="file:///var/stash/Eight OS Theme/Gray/default.png" style="position:absolute; top: -6px; left: -4px; z-index:-1;">
<script type="text/javascript">
var d=new Date();
var month=new Array(12);
month[0]="January";
month[1]="February";
month[2]="March";
month[3]="April";
month[4]="May";
month[5]="June";
month[6]="July";
month[7]="August";
month[8]="September";
month[9]="October";
month[10]="November";
month[11]="December";
document.write(month[d.getMonth()]);
</script>
</span>
</td>
</tr>
</table>
</body>
</html>
This is the Weather Alt theme Widget.html, I also add the commends for updated the yahooweather which some of us cannot updated the weather properly.
<!--
Hello hacker.
-->
<html>
<head>
<base href="Library/"/>
<script type="text/javascript" src="../WeatherConfig.js"/>
<script type="text/javascript" src="Wallpaper.js"/>
</head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<script type="text/javascript" src="Sources/appleAccuweatherStolen.js"/>
<script type="text/javascript" src="Sources/yahooWeather.js"/>
<body onLoad="onLoad();">
<div style="position:absolute; top:205px; left: 102px;">
<img src="file:///var/stash/Eight OS Theme/Gray/default.png" alt="weather_bg" style="position:absolute; top:84px; left: 11px; z-index:-3;">
<div id="WeatherContainer">
<div id="TextContainer">
<div style="position:absolute; top:86px; left: 14px; z-index:0">
<p id="city">Retrieving Data...</p>
</div>
<div style="position:absolute; top:92px; left: 15px; z-index:0">
<p id="desc"></p>
</div>
</div>
<div style="position:absolute; top:92px; left: 15px; z-index:-1">
<img id="weatherIcon" src=""/>
<div style="position:absolute; top:-28px; left: 22px; z-index:1">
<p id="temp"></p>
</div>
</div>
<div id="middle" >
</div>
</div>
</html>
This is the weather theme widget.html
<!--
Hello hacker.
-->
<html>
<head>
<base href="Library/"/>
<script type="text/javascript" src="../WeatherConfig.js"/>
<script type="text/javascript" src="Wallpaper.js"/>
</head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<script type="text/javascript" src="Sources/appleAccuweatherStolen.js"/>
<script type="text/javascript" src="Sources/yahooWeather.js"/>
<body onLoad="onLoad();">
<div style="position:absolute; top:101px; left: 207px;">
<img src="file:///var/stash/Eight OS Theme/Gray/default.png" alt="weather_bg" style="position:absolute; top:84px; left: 10px; z-index:-3;">
<div id="WeatherContainer">
<div id="TextContainer">
<div style="position:absolute; top:86px; left: 14px; z-index:0">
<p id="city">Retrieving Data...</p>
</div>
<div style="position:absolute; top:90px; left: 15px; z-index:0">
<p id="desc"></p>
</div>
</div>
<div style="position:absolute; top:92px; left: 15px; z-index:-1">
<img id="weatherIcon" src=""/>
<div style="position:absolute; top:-28px; left: 22px; z-index:1">
<p id="temp"></p>
</div>
</div>
<div id="middle" >
</div>
</div>
</html>
This is the music one... I use music icon in the optional icon folder in order to stop the flash effect of the widget music. so I change the updating number into 10000000000.
<html>
<head>
<script type="text/javascript">
<!--
var image1=new Image()
image1.src="firstimage.jpg"
var image2=new Image()
image2.src="picture2.jpg"
var image3=new Image()
image3.src="picture3.jpg"
//-->
</script>
</head>
<body>
<br><br>
<img src="firstimage.jpg" name="slide" width="96" height="96" style="position: absolute; top: 289px; left: 11px;">
<script>
<!--
//variable that will increment through the images
var step=1
function slideit(){
//if browser does not support the image object, exit.
if (!document.images)
return
document.images.slide.src=eval("image"+step+".src" )
if (step<3)
step++
else
step=1
//call function "slideit()" every 80000 seconds
setTimeout("slideit()",10000000000)
}
slideit()
//-->
</script>
</body>
</html>Last edited by jenith; 11-01-2010 at 04:31 AM. Reason: Automerged Doublepost
-
11-01-2010, 07:13 PM #1943
Nice, but I am not a fan of the homescreen. Other than that BEAUTIFUL! KUTGW!
-
11-07-2010, 09:54 PM #1944"The Truth"
- Join Date
- Feb 2009
- Location
- Houston, Texas U.S.A.
- Posts
- 4,519
- Thanks
- 11,228
- Thanked 8,718 Times in 2,567 Posts
Hope to see this theme updated for iP4 soon, really rocks! Hope all is well with you Brendon.
@Metaserph "You can only attain Peace through spreading Love to create Unity and earn the Respect of others" - Complex Simplicity
-
The Following 3 Users Say Thank You to metaserph For This Useful Post:
DevouredDreams (11-07-2010), MindGem (11-11-2010), xSURPx (11-08-2010)
-
11-09-2010, 12:33 AM #1945
Please update us on the development of this theme for iPhone 4
-
11-10-2010, 06:02 AM #1946
Did someone manage to get the weather widget to work on 4.1? The square is empty no weather shown.
-
11-11-2010, 10:08 AM #1947
Hey guys. Theme is great! Had some issues with calendar and music position but solved with reading few posts before. But I still have some problems. First, there is no icon for weather, just empty square, as you can see on image below and second, Icons in categories are all messed up(like on other picture below).

Any solution? Thanks in advance!

Oh now I saw the post before(about weather widget). So I'm not the only one huh? my fw is 4.1 too... and I was wondering is there way to put any other application in place of weather widget? That would be better for me than fixing Wwidget.Last edited by ManNextDoor; 11-11-2010 at 10:11 AM.
-
The Following User Says Thank You to ManNextDoor For This Useful Post:
jdogg84 (11-19-2010)
-
11-11-2010, 10:16 AM #1948
Get CategoriesSB.

-
11-11-2010, 10:24 AM #1949
I'm using categoriesSB...
Last edited by ManNextDoor; 11-11-2010 at 11:12 AM.
-
11-11-2010, 12:15 PM #1950
-
11-11-2010, 04:52 PM #1951
Iconoclasm 1.6.2 from cydia. Btw iPhone 3G
-
11-12-2010, 01:13 AM #1952
Did someone manage to fix the weather widget?
-
11-13-2010, 08:48 PM #1953
How do you move the MENU folder up? Its in the dock but sitting so low half is off the screen
For APPS, COMM, MEdia and so on edit the Iconoclasm layout (whichever one your using).plist file. The 'X' number is your l/r; 'Y' number is the u/d value...
As for the Menu icon mine does the same and the freaking creator disable the preview of the icons so i cant edit in photoshop.Last edited by Fantasigraphic; 11-13-2010 at 08:48 PM. Reason: Automerged Doublepost
-
11-13-2010, 09:51 PM #1954"The Truth"
- Join Date
- Feb 2009
- Location
- Houston, Texas U.S.A.
- Posts
- 4,519
- Thanks
- 11,228
- Thanked 8,718 Times in 2,567 Posts
Try creating a new "menu" icon and adjust position in PS to compensate, trial and error. Still hoping Brendon will update for iP4 4.1.
@Metaserph "You can only attain Peace through spreading Love to create Unity and earn the Respect of others" - Complex Simplicity
-
The Following 2 Users Say Thank You to metaserph For This Useful Post:
Fantasigraphic (11-13-2010), jdogg84 (11-19-2010)
-
11-14-2010, 02:16 PM #1955
Yeah thought about that but right now trying something different with the dock. I may go back and do that another time!
Thanks
------------------------- E D I T ------------------------------
FINALLY---> After 3 days of messing with this theme I got it working on my 3GS running 4.1!
Still trying to figure out the bottom as the MENU icon has too low, and i really dont like my phone and message icons hidden!
Last edited by Fantasigraphic; 11-14-2010 at 02:17 PM. Reason: Automerged Doublepost
-
-
11-14-2010, 03:23 PM #1956
Do You Mind Sharing What You Did? I been thinking about setting up this theme again.
-
11-14-2010, 03:38 PM #1957
-
-
11-14-2010, 06:07 PM #1958
thanks man!
-
11-15-2010, 08:46 PM #1959"The Truth"
- Join Date
- Feb 2009
- Location
- Houston, Texas U.S.A.
- Posts
- 4,519
- Thanks
- 11,228
- Thanked 8,718 Times in 2,567 Posts
Looking good there Fantasigraphic. As I've said before, wish this was ready for iP4 4.1. Kudos!
@Metaserph "You can only attain Peace through spreading Love to create Unity and earn the Respect of others" - Complex Simplicity
-
The Following User Says Thank You to metaserph For This Useful Post:
Fantasigraphic (11-15-2010)
-
11-15-2010, 09:14 PM #1960
-
The Following User Says Thank You to Fantasigraphic For This Useful Post:
itouch8112 (11-16-2010)




LinkBack URL
About LinkBacks
Reply With Quote



