Thread: ** RELEASE ** Windows Per7ection
-
02-08-2009, 12:44 PM #41
Thanks Ebl
Here is my screenshot
-
02-08-2009, 01:02 PM #42
-
02-08-2009, 01:02 PM #43
can anyone help me on the slideshow picture???
EDIT: I took the original picture out (picture9) and i put my own in... and it works... but how do I put more then 9... i did picture10 in HTML but it didn't do anything...Last edited by mashimarowu; 02-08-2009 at 01:10 PM.
-
02-08-2009, 01:11 PM #44My iPhone is a Part of Me
- Join Date
- Jun 2008
- Location
- Kentucky
- Posts
- 752
- Thanks
- 345
- Thanked 42 Times in 39 Posts
-
02-08-2009, 01:20 PM #45
-
The Following User Says Thank You to Blik For This Useful Post:
whoadie (02-08-2009)
-
02-08-2009, 02:24 PM #46
for those of you that want to make it so when u click the weather icon it takes u to the weather app heres what u need to do:
-download rename from installer
-rename your weather app to " " (just a space)
-make a completly transparent icon
-name that icon " " (space again)
-ssh that into this themes folder and your weather icon will be completly blank *so make sure u know where its at before u make it transaperent*
-finally place the icon over the weather widget so when u touch it itll take u to weather
sorry i havent figured out a way to rename the photos app so this wont work with that.
-
02-08-2009, 03:08 PM #47My iPhone is a Part of Me
- Join Date
- May 2008
- Location
- Scranton
- Posts
- 584
- Thanks
- 164
- Thanked 197 Times in 155 Posts
Thank you ebl....
i added a wallpaper rotation to the theme....
i love it...
its great work....Last edited by Ice9812; 02-08-2009 at 03:50 PM.
If I Helped You Hit The Thanks Button
-
The Following 4 Users Say Thank You to Ice9812 For This Useful Post:
Jaholibop (02-21-2009), jatatla (02-09-2009), mashimarowu (02-08-2009), samber (02-08-2009)
-
02-08-2009, 03:57 PM #48

Thanks ebl, this theme is great, just that it slows the iPhone a bit. But its great. See my screenshot. Thanks
-
02-08-2009, 04:19 PM #49
-
02-08-2009, 04:30 PM #50iPhone? More like MyPhone
- Join Date
- Dec 2008
- Location
- In your girl's thoughts and dreams
- Posts
- 242
- Thanks
- 43
- Thanked 136 Times in 88 Posts
To get more pictures on the photo side bar you have to edit the html. I know you said you've done that, but I'm guessin you missed an extra step.
1. Look for this in the html file..."
document.images.slide.src=eval("image"+step+".src" )
if (step<9)".
2. Change "step<9" to how many photos you want to use. If you have 13 photos, you must change it to (step<13).
3. Don't forget to edit these as well ---> var image13=new Image()
image13.src="picture13.jpg"Don't take life so serious...no one comes out alive anyways.
-
-
02-08-2009, 04:41 PM #51My iPhone is a Part of Me
- Join Date
- May 2008
- Location
- Scranton
- Posts
- 584
- Thanks
- 164
- Thanked 197 Times in 155 Posts
Dizzy714,
are these the 2 you want?....they originally came from ebl VMP theme
i take no credit for them
If I Helped You Hit The Thanks Button
-
02-08-2009, 04:44 PM #52
-
02-08-2009, 04:52 PM #53My iPhone is a Part of Me
- Join Date
- May 2008
- Location
- Scranton
- Posts
- 584
- Thanks
- 164
- Thanked 197 Times in 155 Posts
Dizzy714,
im not sure why they are there i can se them...try close your browser and reloading the page
all i added was this wallpaper.html to the windowsper7ection theme folder and edit it to however many wallpapers you want...
and i also changed the wallpaper.html inside the winsidebar weather (1st) folder to widget.html
and then you need to create a folder called "wallpaper" inside thw Windows Per7ection theme folder and put whatever wallpapers you want inside and name the wallpapers according to the .html file
to change the amout of wallpapers edit this part:
<img src="wallpaper/one.png"/>
<img src="wallpaper/two.png"/>
<img src="wallpaper/three.png"/>
<img src="wallpaper/four.png"/>
<img src="wallpaper/five.png"/>
<img src="wallpaper/six.png"/>
<img src="wallpaper/seven.png"/>
<img src="wallpaper/eight.png"/>
<img src="wallpaper/nine.png"/>
<img src="wallpaper/ten.png"/>
if you want less take out some if you want more add a new line...
and change the img name to eleven.png and so on.
pmme if you need any help
wallpaper.html...created by cpjr
Code:<html><head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <style> body { background-color: black; margin: 0; padding: 0; height: 480px; width: 320px; } img { -webkit-transition-property: opacity; -webkit-transition-duration: 3s; position: absolute; width: 320px; height: auto; } img.fade-out { opacity: 0; } img.fade-in { opacity: 1; } </style> </head> <body style="color: black"> <img src="wallpaper/one.png"/> <img src="wallpaper/two.png"/> <img src="wallpaper/three.png"/> <img src="wallpaper/four.png"/> <img src="wallpaper/five.png"/> <img src="wallpaper/six.png"/> <img src="wallpaper/seven.png"/> <img src="wallpaper/eight.png"/> <img src="wallpaper/nine.png"/> <img src="wallpaper/ten.png"/> <script> // // Displays each <img> once in random order before // randomizing the list again. // Just add an <img> tag with your filename to add a pic, // and change interval to control the cycle speed. var interval = 4 * 20; // Seconds between change var images = document.getElementsByTagName("img"); var imageArray = []; var imageCount = images.length; var current = 0; var randomize = function(){ return (Math.round(Math.random() * 3 - 1.5)); } for(var i = 0; i < imageCount; i++){ images[i].className = 'fade-out'; imageArray[i] = images[i]; } imageArray.sort(randomize); var fade = function(){ imageArray[current++].className = 'fade-out'; if(current == imageCount){ current = 0; imageArray.sort(randomize); } imageArray[current].className = 'fade-in'; setTimeout(fade, interval * 1000); }; fade(); </script> </body></html>Last edited by Ice9812; 02-08-2009 at 04:54 PM.
If I Helped You Hit The Thanks Button
-
The Following User Says Thank You to Ice9812 For This Useful Post:
mashimarowu (02-08-2009)
-
02-08-2009, 05:17 PM #54
They're showing up now, thanks.
-
02-08-2009, 05:31 PM #55
Last edited by mashimarowu; 02-08-2009 at 05:34 PM.
-
02-08-2009, 06:18 PM #56
-
02-08-2009, 06:44 PM #57
I created the wallpaper.html and put it in the windowsper7ection folder, created the wallpaper folder, but now when you say "changed the wallpaper.html inside the winsidebar weather (1st) folder to widget.html" did you put in a widget or just change the name of it to widget.html?
Last edited by Rey79; 02-08-2009 at 06:52 PM. Reason: Got the weather widget to work again.
-
02-08-2009, 07:06 PM #58
-
02-08-2009, 07:17 PM #59My iPhone is a Part of Me
- Join Date
- Jun 2008
- Location
- Kentucky
- Posts
- 752
- Thanks
- 345
- Thanked 42 Times in 39 Posts
Best theme to date!! Much props EBL!!
-
02-08-2009, 07:23 PM #60
I tried that but all it did was kill my weather widget.
I downloaded my own wallpapers, although I would love to have a couple of the ones he has...
For the wallpaper.html, i just copied the wallpaper.html that was in the WinSideBar Weather (1st), replaced it with what he posted and put it into the theme folder...maybe this is why it's not working.



LinkBack URL
About LinkBacks
Reply With Quote



