Your favorite Apple, iPhone, iPad, iOS, Jailbreak, and Cydia site.
Thread: [Tweak] iWidgets
is a discussion within theiPhone 4|4S New Skins / Themes Launches
forums, a part of theNew Skins / Themes Launches
section;Originally Posted by King_O_Hill Try this, I removed the spin animation: FlowerFallsNOSpin.zip someone could change the color of the flowers of this widget??? put more vivid colors, cyan, purple, pink,
...-
02-24-2013, 02:50 PM #2881iPhone? More like MyPhone
- Join Date
- Oct 2012
- Location
- ESPAÑA
- Posts
- 283
- Thanks
- 889
- Thanked 187 Times in 124 Posts
-
02-24-2013, 04:17 PM #2882The Infamous Modder
- Join Date
- Oct 2008
- Location
- From Scotland, live in Philippines, German company, work worldwide, currently in China.
- Posts
- 3,990
- Thanks
- 5,442
- Thanked 13,791 Times in 3,001 Posts
Back up the original script files, then look for all script files that have rain or snow and delete the lines of code that refer to spin & flip, I removed these yonks ago from the UniAW to speed things up, nobody noticed any difference as it's such a subtle effect but it runs a lot smoother without it, if I remember correctly I think Dacal's cloud animations also have this spin & flip code, I also got rid of it on the clouds for the UniAW a very long time ago when people were having trouble running it on iPhone 3G/3GS devices.
You can temporarily disable these lines of code by adding // at the beginning of the line in the .js files.
I just found some older version of the UniAW so you can see what I removed from the code, below is an example for the rain so you get some idea.
OLD VERSION
NEW VERSIONCode:function createAdrop() { var dropDiv = document.createElement("div"); var image = document.createElement("img"); image.src = "rain/Private/images/drop" + randomInteger(1, NUMBER_OF_IMAGES) + ".png"; dropDiv.style.top = pixelValue(randomInteger(-15, -50)); dropDiv.style.left = pixelValue(randomInteger(0, 320)); var spinAnimationName = (Math.random() < 0.5) ? "clockwiseSpin" : "counterclockwiseSpinAndFlip"; dropDiv.style.webkitAnimationName = "drop"; image.style.webkitAnimationName = spinAnimationName; var fadeAndDropDuration = durationValue(randomFloat(1, 3)); var spinDuration = durationValue(randomFloat(1,3)); dropDiv.style.webkitAnimationDuration = fadeAndDropDuration + ", " + fadeAndDropDuration; image.style.webkitAnimationDuration = spinDuration; dropDiv.appendChild(image); return dropDiv;
LOL... This widget has 51 images! many of them very similar, really it needs re-coded with perhaps 5 or 6 images and a random integrator added.Code:function createAdrop() { var dropDiv = document.createElement("div"); var image = document.createElement("img"); image.src = "Images/Weather/rain/drop" + randomInteger(1, NUMBER_OF_DROP_IMAGES) + ".png"; dropDiv.style.top = pixelValue(randomInteger(-100, 50)); dropDiv.style.left = pixelValue(randomInteger(10, 310)); dropDiv.style.webkitAnimationName = "fade2, drop"; var fadeAndDropDuration = durationValue(randomFloat(2, 4)); dropDiv.style.webkitAnimationDuration = fadeAndDropDuration + ", " + fadeAndDropDuration; dropDiv.appendChild(image); return dropDiv;Last edited by Ian Nicoll; 02-24-2013 at 04:33 PM.

"If it's not broken, I'll fix it till it is"
If I've helped you, please press my "Thanks" button. Thank you.

-
The Following User Says Thank You to Ian Nicoll For This Useful Post:
The_Durben (02-25-2013)
-
02-24-2013, 05:26 PM #2883The Modder Supporter
- Join Date
- Sep 2007
- Location
- NYC
- Posts
- 5,551
- Thanks
- 5,911
- Thanked 5,391 Times in 2,644 Posts
-
The Following User Says Thank You to zplit For This Useful Post:
SHARON1O (02-25-2013)
-
02-24-2013, 05:37 PM #2884
Hi everyone,
I am looking to modify the solarsystem iwidget so that it is always transparent (the way it is when you go into wiggle mode and then press on it to move it around). I have a picture of a plantet as the wall paper on my home screen and would like to overlay the widget over it so that the planet is visible under the spinning solar system. If anyone here can help me with this that would be great and thanks!Last edited by STAR1618SH; 02-24-2013 at 05:39 PM.
-
02-24-2013, 06:13 PM #2885Not always right, but always confident
- Join Date
- Jan 2012
- Posts
- 4,317
- Thanks
- 1,561
- Thanked 3,468 Times in 1,702 Posts
Thanks so much, Ian, for helping us solve this mystery. I'm just 'barely enough of a coder/modder' to accomplish what you're asking. Could you communicate this also to Dacal who's stated that he's been having trouble tracking down the problem on his weather. I also see the cloud jitteriness too. Will it involve all rain snow and combination scripts too like 'wind/rain'?
Thanks again !
GrantHere to help if I can.
If I can't - I know someone who can.
-
The Following User Says Thank You to NewdestinyX For This Useful Post:
Ian Nicoll (02-25-2013)
-
02-24-2013, 07:52 PM #2886The Modder Supporter
- Join Date
- Sep 2007
- Location
- NYC
- Posts
- 5,551
- Thanks
- 5,911
- Thanked 5,391 Times in 2,644 Posts
-
02-24-2013, 09:23 PM #2887
Took a few hours but I figured it out. You actually have to place all dashboard x widgets first and then download iwidgets and the solarsystem widget (or just that since it also installs iwidgets) and then use ssh to edit the files in /private/var/mobile/Library/iWidgets/solarsystes: plist to use a smaller footprint, I used 50 x 50 because you need a way to move it on the springboard and /css to delete the background picture and take the line out of style.css file that calls for the background picture. Then use iwidgets to put the solarsystem widget on the springboard and move it under the dashboard x widgets.
-
02-25-2013, 06:17 AM #2888
Durban, your AniWeathyer does not seem to be reachable via cydia, can you give me a link so I can munually install it. Can't wait to hear a yes because I enjoy it very much
-
02-25-2013, 06:25 AM #2889My iPhone is a Part of Me
- Join Date
- Jun 2011
- Location
- Anywhere under Heaven is my Home
- Posts
- 760
- Thanks
- 458
- Thanked 1,236 Times in 388 Posts
-
02-25-2013, 06:34 AM #2890Not always right, but always confident
- Join Date
- Jan 2012
- Posts
- 4,317
- Thanks
- 1,561
- Thanked 3,468 Times in 1,702 Posts
-
The Following 2 Users Say Thank You to NewdestinyX For This Useful Post:
@_$oN_@ (02-25-2013), The_Durben (02-25-2013)
-
02-25-2013, 07:19 AM #2891
-
The Following 2 Users Say Thank You to GUNNY29 For This Useful Post:
King_O_Hill (02-25-2013), The_Durben (02-25-2013)
-
02-25-2013, 07:19 AM #2892iPhone? More like MyPhone
- Join Date
- Oct 2012
- Location
- ESPAÑA
- Posts
- 283
- Thanks
- 889
- Thanked 187 Times in 124 Posts
-
02-25-2013, 07:37 AM #2893
-
02-25-2013, 08:51 AM #2894The Modder Supporter
- Join Date
- Sep 2007
- Location
- NYC
- Posts
- 5,551
- Thanks
- 5,911
- Thanked 5,391 Times in 2,644 Posts
-
02-25-2013, 09:02 AM #2895
-
02-25-2013, 09:08 AM #2896The Modder Supporter
- Join Date
- Sep 2007
- Location
- NYC
- Posts
- 5,551
- Thanks
- 5,911
- Thanked 5,391 Times in 2,644 Posts
-
02-25-2013, 10:23 AM #2897The Mechanic
- Join Date
- Aug 2010
- Location
- Vancouver Canada
- Posts
- 7,610
- Thanks
- 30,845
- Thanked 35,608 Times in 6,735 Posts
-
02-25-2013, 10:40 AM #2898Not always right, but always confident
- Join Date
- Jan 2012
- Posts
- 4,317
- Thanks
- 1,561
- Thanked 3,468 Times in 1,702 Posts
-
The Following User Says Thank You to NewdestinyX For This Useful Post:
The_Durben (02-25-2013)
-
02-25-2013, 11:06 AM #2899The Mechanic
- Join Date
- Aug 2010
- Location
- Vancouver Canada
- Posts
- 7,610
- Thanks
- 30,845
- Thanked 35,608 Times in 6,735 Posts
-
The Following 2 Users Say Thank You to The_Durben For This Useful Post:
Ian Nicoll (02-25-2013), King_O_Hill (02-25-2013)
-
02-25-2013, 11:08 AM #2900Not always right, but always confident
- Join Date
- Jan 2012
- Posts
- 4,317
- Thanks
- 1,561
- Thanked 3,468 Times in 1,702 Posts
LinkBacks (?)
-
04-20-2013, 12:34 AM
-
04-15-2013, 10:39 AM
-
04-08-2013, 06:20 AM
-
&#63743;iDevice help us&#63743;: Add HTML Widgets to the Home Screen With 'iWidgets'
Refback This thread10-29-2012, 07:45 AM




LinkBack URL
About LinkBacks


Reply With Quote
![[Tweak] iWidgets-imageuploadedbymodmyi1361760688.640664.jpg](http://modmyi.com/attachments/forums/iphone-4-4s-new-skins-themes-launches/623595d1361760689t-tweak-iwidgets-imageuploadedbymodmyi1361760688.640664.jpg)

I'm quite sure if you sent him a PM he would send you a copy

