[Newbie Friendly] Zooper Q&A Help Thread - Zooper Widget General

Ask Your Zooper Question!
Having gone through the, at the moment of typing, 7 pages in this subforum; it quickly became apparent that a lot of members had questions they wanted answered regarding varying components of Zooper Widget Pro ranging from problems "caused" by it to some coding/programming help.
My aim is to create a singular thread where members can dump all of their queries and, hopefully, in that process help each other out where possible. Of course, it wouldn't go amiss if a few wisened senior members (read: not me) can drop in every now and then to aid replying to the questions. If you have some niche/specific questions, by all means go ahead and create your own thread if you can't find your solution here.
As thread starter, I'll make it clear that, unlike Zooper Widget, I'm no Pro. I've been playing around with UCCW for a long time until recently another member advised me to give Zooper a try. It's been a week since then, and I'm still being amazed by the features available. I've still got to learn more about integrating with Tasker in order to add even more functionality but I've got plenty of time to work that out.
Currently, I've been working on a mainly Zooper based homescreen pack which I may post later on. Suffice to say, I have basic knowledge of manipulating codes, editing layout, and dabbled my hands in progress bars, changing icon sets, etc. I think it would be a great idea to spread what I know and, perhaps, get something back as well.
Links to somewhat helpful resources which you should probably have a look at before making your post here:
- Zooper Widget - The Complete Guide VIDEO
- Zooper Widget Conditionals - The Basics VIDEO
- Zooper Widget - Advanced Parameters VIDEO
- Comprehensive list of Zooper Guides, References & Advanced Parameters as compiled by Kwerdenker XDA
Cheers.

Okay, I'll start. I can't get my widget transparent. Under Widget Background I have moved the slider all the way to the right, but when I back out, the setting doesn't stick. Is this a Pro-only feature? Thanks

jdjohn said:
Okay, I'll start. I can't get my widget transparent. Under Widget Background I have moved the slider all the way to the right, but when I back out, the setting doesn't stick. Is this a Pro-only feature? Thanks
Click to expand...
Click to collapse
Definitely a free feature. Ensure you are doing the following:
- Select "Widget Background"
- Slide alpha handle all the way to the right until the first 2 characters after the number sign is 00
- Tap on the 2nd colour preview box (the one which shows the new colour) instead of backing out
- Select force update
- Exit Zooper configuration
- Background should be transparent now
Let me how you get along.

Rickav said:
Definitely a free feature. Ensure you are doing the following:
- Select "Widget Background"
- Slide alpha handle all the way to the right until the first 2 characters after the number sign is 00
- Tap on the 2nd colour preview box (the one which shows the new colour) instead of backing out
- Select force update
- Exit Zooper configuration
- Background should be transparent now
Let me how you get along.
Click to expand...
Click to collapse
That worked! Tapping the 2nd color preview box was the trick. Thanks very much! Attached is a screenshot of my humble beginnings.

jdjohn said:
That worked! Tapping the 2nd color preview box was the trick. Thanks very much! Attached is a screenshot of my humble beginnings.
Click to expand...
Click to collapse
Brilliant... The first happy customer of the thread. Hopefully, the first of many to come...

I have a question about creating a network status Iconset. I read through the official zooper post about creating a battery set, then I changed that to network variables. I set up the images and the config xml and everything "seems" to be ok. When I create the widget and call the Iconset it displays only full signal. I also called dbm and ncsig separately in a text module to compare and troubleshoot.
I get a constant full signal Iconset, 85 dbm and 99% signal without change throughout the day.
I'm at work so I can't post my config text but I set it up to look at ncsig mode and display different icons depending on if ncsig=0 ncsig>0 ncsig>25 ncsig>50.. Etc. I'm not sure what is exactly wrong but nothing updates or changes.
I'm on a Samsung Galaxy, usually getting 4G, with a custom Paranoid Android ROM 3.99+ and I'm using lightning launcher. I would consider myself an advanced User but I can't find any real resources for signal status and bars to work this out on my own.
Sent from my Galaxy Nexus using xda app-developers app

.ax said:
I have a question about creating a network status Iconset. I read through the official zooper post about creating a battery set, then I changed that to network variables. I set up the images and the config xml and everything "seems" to be ok. When I create the widget and call the Iconset it displays only full signal. I also called dbm and ncsig separately in a text module to compare and troubleshoot.
I get a constant full signal Iconset, 85 dbm and 99% signal without change throughout the day.
I'm at work so I can't post my config text but I set it up to look at ncsig mode and display different icons depending on if ncsig=0 ncsig>0 ncsig>25 ncsig>50.. Etc. I'm not sure what is exactly wrong but nothing updates or changes.
I'm on a Samsung Galaxy, usually getting 4G, with a custom Paranoid Android ROM 3.99+ and I'm using lightning launcher. I would consider myself an advanced User but I can't find any real resources for signal status and bars to work this out on my own.
Sent from my Galaxy Nexus using xda app-developers app
Click to expand...
Click to collapse
Without seeing your iconset XML I can't say much but here is my current variant to emulate a network status display. These values follow the ones used in Androids SignalStrength.java.
Code:
$[#NCSIG#>=12] && [#NCSIG#<99]?4$
$[#NCSIG#>=8] && [#NCSIG#<12]?3$
$[#NCSIG#>=5] && [#NCSIG#<8]?2$
$[#NCSIG#>2] && [#NCSIG#<5]?1$
$[#NCSIG#<=2] || [#NCSIG#=99]?0$
Hope this helps you out

kwerdenker said:
Without seeing your iconset XML I can't say much but here is my current variant to emulate a network status display. These values follow the ones used in Androids SignalStrength.java.
Code:
$[#NCSIG#>=12] && [#NCSIG#<99]?4$
$[#NCSIG#>=8] && [#NCSIG#<12]?3$
$[#NCSIG#>=5] && [#NCSIG#<8]?2$
$[#NCSIG#>2] && [#NCSIG#<5]?1$
$[#NCSIG#<=2] || [#NCSIG#=99]?0$
Hope this helps you out
Click to expand...
Click to collapse
SOOOO sorry I posted in your thread, I was on my xda app and I didn't notice it was all on your screens, didn't mean to muck it up.
Those last few variable lines look foreign to me, I haven't seen the signalstrenght.java, I'll have to take a look.
This is super basic, I'm completely based of limited examples online, I can't find any resources on code for the signal anywhere. I'd love some resources if you have any. I can pick apart code to make things work for me I just need to see working examples.
My config.xml looks like this:
<?xml version="1.0" encoding="utf-8" ?>
- <!-- #NCSIG# 25% Bars -->
- <config>
<title>Cell Status Icons</title>
<description>Cell / Alarm Set</description>
<demo>demo.png</demo>
<icons>icons</icons>
<default>alarm2.png</default>
<mode value="#NCSIG#">Cell Signal</mode>
<mode value="Alarm">Alarm Set/Not Set</mode>
- <condition>
<test>#MODE#=Alarm</test>
- <condition>
<test>#SALARM#=Not Set</test>
<image>alarm2.png</image>
</condition>
- <condition>
<test>1=1</test>
<image>alarm1.png</image>
</condition>
</condition>
- <condition>
<test>#NCSIG#>75</test>
<image>signal-4.png</image>
</condition>
- <condition>
<test>#NCSIG#>50</test>
<image>signal-3.png</image>
</condition>
- <condition>
<test>#NCSIG#>25</test>
<image>signal-2.png</image>
</condition>
- <condition>
<test>#NCSIG#>0</test>
<image>signal-1.png</image>
</condition>
- <condition>
<test>#NCSIG#=0</test>
<image>signal-0.png</image>
</condition>
</config>

Is there any way to get an unread count of all unread emails in K9 Mail? I tried following the instructions here: http://www.zooper.org/wp/old/topic/email-widget but I don't see how to get the folder_id of the INBOX folder or how to add multiple accounts together.

problem with zw skin
hello everyone..happy new year to all...need some assistance...I'm having trouble with my zooper pro widget...i can't add any skin to my homescreen and it keeps popping out not responding...this happens to me for over a month now and i don't know what else to do...i changed ROMs, install and uninstall my zooper, clear cache and and any that i can possibly think of...i'm currently using PA 4.0 beta ROM and zooper pro v2.44...please anyone...i need some help..

.ax said:
SOOOO sorry I posted in your thread, I was on my xda app and I didn't notice it was all on your screens, didn't mean to muck it up.
Those last few variable lines look foreign to me, I haven't seen the signalstrenght.java, I'll have to take a look.
This is super basic, I'm completely based of limited examples online, I can't find any resources on code for the signal anywhere. I'd love some resources if you have any. I can pick apart code to make things work for me I just need to see working examples.
Click to expand...
Click to collapse
I'll try to translate it to more "human readable" terms:
$[#NCSIG#>=12] && [#NCSIG#<99]?4$ => If #NCSIG# is equal-or-larger then 12 and smaller then 99, signal strength is four bars
$[#NCSIG#>=8] && [#NCSIG#<12]?3$ => If #NCSIG# is equal-or-larger then 8 and smaller then 12, signal strength is three bars
$[#NCSIG#>=5] && [#NCSIG#<8]?2$ => If #NCSIG# is equal-or-larger then 5 and smaller then 8, signal strength is two bars
$[#NCSIG#>2] && [#NCSIG#<5]?1$ => If #NCSIG# is equal-or-larger then 2 and smaller then 5, signal strength is one bar
$[#NCSIG#<=2] || [#NCSIG#=99]?0$ => If #NCSIG# is equal-or-smaller then 2 or or equal to 99, signal strength is not existent (special case)
You would have to port these conditionals as <test>'s to make your icon set. You can see from your XML that your values for NSIG were not in the correct value-range to make the icon change in any way
If you haven't seen it yet, here is the official tutorial on how to make icon sets for Zooper that explains the general structure and some caveats you have to keep in mind: Simple ZW Battery Iconset example

irasujamang said:
hello everyone..happy new year to all...need some assistance...I'm having trouble with my zooper pro widget...i can't add any skin to my homescreen and it keeps popping out not responding...this happens to me for over a month now and i don't know what else to do...i changed ROMs, install and uninstall my zooper, clear cache and and any that i can possibly think of...i'm currently using PA 4.0 beta ROM and zooper pro v2.44...please anyone...i need some help..
Click to expand...
Click to collapse
Could you explain a bit more of what you mean by "can't add any skin to my homescreen". Are meaning 3rd party apps such as Themer or Buzz out-fitting your homescreen in a new skin or something.
Also, you mentioned you are on Paranoid Android rom. I heard one of its main features is changing dpi. Currently, I too am on a custom rom in 240dpi and I can assure you 3rd party apps attempting to apply a new skin to a dpi other 320dpi has a very high tendency to break. If that's the case, perhaps try to change dpi settings through the appropriate Xposed module to see if that has a more positive effect.

Hi all!
I'm trying to create a curved text for hours on clock like that one in the screen shot attached to post. Unfortunately I can't get it done. Maybe someone have created this kind of text and could help me with it? Thanks in advance!

bladehawk said:
Is there any way to get an unread count of all unread emails in K9 Mail? I tried following the instructions here: http://www.zooper.org/wp/old/topic/email-widget but I don't see how to get the folder_id of the INBOX folder or how to add multiple accounts together.
Click to expand...
Click to collapse
The site you linked seemed to be pretty thorough in its instructions. I looked around and couldn't find much to add to that. Personally, I simply use Gmail so it's easy enough to link to that account. I'm guessing you've looked here as well.
It seems as if K9, and some other alternate e-mail providers, are not supported all that well with Zooper at the moment. Even with Tasker integration.
EDIT: Hold on, I have 2 email accounts; 1 Gmail & 1 Yahoo. I'm gonna download K9 & check if I can make it work with Zooper somehow. Let you know in a few.
2nd EDIT: That's a negative. Couldn't get K9 to work with Zooper. Kept giving me "-1" as unread number. Maybe wait for future updates for a fix.

Rickav said:
The site you linked seemed to be pretty thorough in its instructions. I looked around and couldn't find much to add to that. Personally, I simply use Gmail so it's easy enough to link to that account. I'm guessing you've looked here as well.
It seems as if K9, and some other alternate e-mail providers, are not supported all that well with Zooper at the moment. Even with Tasker integration.
EDIT: Hold on, I have 2 email accounts; 1 Gmail & 1 Yahoo. I'm gonna download K9 & check if I can make it work with Zooper somehow. Let you know in a few.
Click to expand...
Click to collapse
I use Gmail and the Email app that is found stock with android. I got counters to work for the email app with tasker integration. Only problem I have with it is that I have to open the app in order to clear the number (so if I delete the email from the notification, I still have the unread count as 1 due to not opening the app). It's a work in progress.

thanks
thanks for the info...maybe the DPI setting is causing the problem...whenever i tried to apply any skin...my zooper widget just froze up and pop up the notification saying that my zooper has stop responding...i will tried your solution. thanks again for helping.
Rickav said:
Could you explain a bit more of what you mean by "can't add any skin to my homescreen". Are meaning 3rd party apps such as Themer or Buzz out-fitting your homescreen in a new skin or something.
Also, you mentioned you are on Paranoid Android rom. I heard one of its main features is changing dpi. Currently, I too am on a custom rom in 240dpi and I can assure you 3rd party apps attempting to apply a new skin to a dpi other 320dpi has a very high tendency to break. If that's the case, perhaps try to change dpi settings through the appropriate Xposed module to see if that has a more positive effect.
Click to expand...
Click to collapse

Issue with icons on imported template
I've imported a media player template, that I downloaded from one of the forums here. However it is missing the icons, the template did not have any iconset files or anything else? are the iconsets built into the templates?

I have been doing a lot of reading but have not found anything about wind chill does anyone have any idea how to show it?
Sent from my Nexus 7 using XDA Premium 4 mobile app

Wind chill $(35.74+0.6215*#WCTEMPN#-35.75*#WCWSPEED#^0.16+0.4275*#WCTEMPN#*#WCWSPEED#^0.16)$
If anyone wants it I think I got it worked out
Sent from my Nexus 7 using XDA Premium 4 mobile app

force update not working on widget on tap action... toast is displayed.. but widget is not updated.. any known issue with conflicting apps?

Related

NRG Weather 3.0 - "The pretty version..."

Here's Chome Weather 3.0 with a 10 day forecast. Download the cab and enjoy.
1) Install the cab in the link at the bottom of the post.
2) It should ask to reboot ! Press "Ok"
3) Go to your Start Menu and find "Weather Options", or go down to the Settings slide on your homescreen and the second slide will be the CHome Weather options slide.
Set your Zip / Location Code to your zip code if you're in the US or a "location code" if you're anywhere else (ex: ROXX003 for Bucharest). More info on finding your specific code is here http://developer.yahoo.com/weather/#req . Set the "Fahrenheit / Celsius" option. This will only affect the reading of the current conditions panels, not the text descriptions in the forecast panels. Those will always be in Fahrenheit.
Specify whether you would like the application to attempt to connect your default GPRS connection first, before updating. If you have a constant data connection on, leave this on "N". Finally you can turn off the autoupdate feature with the last option #7.
4) Now it might be a good idea to go to Start and find "Update Weather" and run it to update the weather data! Alternatively you can click the center button while you're on any of the forecast panels.
5) The cab should set your Home Screen to "Sliding Panel + Weather!" automatically.
6) Enjoy and report any bugs you might encounter, please.
New features:
- New 6 day forecast layout (layout #7)
- Autoupdate using Yahoo's server time. No manual control over update interval anymore.
- Revised layouts to ensure correct wrapping
- HomeScreen update feature. No need to reboot to see forecast or layout changes. This option is turned off by default because it doesn't work for everybody. If you turn it on and you see problems with your phone's radio turning off, phone becoming very slow etc... turn it off. (it's option #10)
- Added new panel to the Settings panel at the bottom for easy access to the weather updates and settings.
- "Stardock icons" are default for forecast and regular panels.
Screenshot descriptions:
1- IPhone Layout (this is the default layout)
2- Forecast Panels screenshot
3- Slim Panels Layout with the background options enabled
4- HTC Slim Layout while updating
5- HTC Slim Layout in normal mode
6- The HomeScreen with the weather plugin in its "condensed" state at the bottom, showing current conditions
7- Regular Panel Layout with no background.
8- IPhone Slim Layout
Download link > http://www.sendspace.com/file/4mh11j
Vox Version (Currently still at 3.0.1) > http://www.sendspace.com/file/0bie7d
Current Version: 3.1
Changes in 3.1
- Rearranged the order the various subroutines run.
- Fixed autoupdate issue.
- Removed HTC icons and background PNGs from the cab. Please download them separately from the addons post if you plan to use those layouts.
- Added option to show extended forecast panels on the homescreen or not.
- Added detection routine to detect if your phone's keypad is locked and NOT to update the homescreen is that's the case. Should help with the "Phone - Incoming" message problem that's been reported
- Edited some CPRs for better alignment
- More verbose status messages
- Etc...
More to come soon. The next version will update your clock panel with current conditions info. Just wanted to get this update out of the way first.
Changes in 3.0.1:
- Added 6 day forecast layout.
- Autoupdate feature based on Yahoo server's time.
- Small bugfixes, revised Options panel.
- Compressed PNGs.
- Complete portrait support for the new 6 day layout.
- Background used in screenshots included in .cab.
Changes to 2.0.3:
- completely redesigned Options panel. Hopefully things will be easier to get around. Now it tell you what the current layout used is.
- Fixed HTC Layout (5) text not wrapping down issue.
- Added option NOT to check for internet connection before connecting.
- Options panel keeps track of what layout you're running.
- added blue, purple, WM7 style or original glass panel selection to options panel.
- updated portrait CPRs.
- forecast panels should now display "N/A" icons when a forecast is not available instead of a red x.
- ability to choose between european ("rest of the world pretty much...) or american style dates on the forecast panels.
If you like this application and feel the need to support my work, here's a link to donate to me via PayPal.
PayPal Donate Link
DO NOT install this to the storage card. It will not work that way!
p.s. Portrait support is included for the new 6 day layout.
p.s.s. The cab seems to take a few minutes to install, especially if you're installing over 2.0.3. So just be patient I guess...
Update to 3.1
Only install this if you have 3.0.1 or 3.0.2 installed. Otherwise, download the cab in the sendspace link above and install the whole app.
This is the "addons" post.
Added "NRG Power Key..... .cab This will add three options to the menu that comes up when you hit the power key on the side of your Excalibur. "Power off", "Reboot" and "Weather Update". I hope they're self explanatory Have fun. Take note your wireless manager might be gone, or might act erracticaly. If you have problems, just install the cab. Don't post in the thread about it, there's nothing I can do about it.
Download the Calibri font mod if you want your system font to look like the one in the screenshots.
The Yahoo, Spil, Novaweather and 7Degree icon sets are alternative icons sets for most of your layouts and extended forecast panels
Most of the icons sets install as a one time installation application. Which means you will not see it in the "uninstallable" list of program under "Settings". Once you run the cab, it will overwrite whatever icons are installed and that's it...
Reserved... the last one.. I promise
Looks niiice i will be testing on Portrait (tornado)
Good Job
So far so good on my Q9c. Last version had to be uninstalled due to a couple of crashes. The worst being when I plugged into the computer the home screen crashed and would not recover after a reboot.
Like the new layout.
Formatting on QVGA
Incredible progress!
I've attached two SS's from my QVGA, using your layout #9 (Standard 6 day which is only 4 day by the way). As you can see, the bottom Temps are not lined up in either F or C and I looked at the CPR, but it is like Greek to me... I see "Bottom Temps" but fiddling and restarting gives me either to the Right or Left - I don't suppose there is a GUI for modding these CPRs is there?
Can you assist in getting it all lined up?
Thanks and keep up the GREAT work! Expect some more PayPal coming your way!
The new layout looks beautiful. The one thing i might suggest: You may want to add an option in advanced options to turn off the 10 day forecast. Since it appears that im going to be using this 6 day testpluginui ( and several others will be too) they may not want or need the additional 10 day forecast panel.
I personally know how to disable it via the registry, but others may not. Secondly, If that option is de-selected, if you can also put in the weather.mscr file to not update that panel, so that way the weather updater runs a little faster.
Edit: I also think that today's Hi/Lo under the city needs to be removed. Its kind of redundant info, since the same info is located in the 6 day forecast located in the first day of the 6 day forecast.
This will also allow more room for lengthier weather condition names.
Damn,
Free service is at full capacity, hope someone can mirror it later.....
I'm anxious to try it
I installed on my Q9c and I still get that font issue with large text boxes in PIE, however, I'm willing to put up with it at this point since the 6-day layout means I don't have to reboot the phone to see the latest forecast.
Any idea what might be causing the font issue? Since this weather panel is basically just scripts reading XML files and making registry changes, I can't imagine that it'd be too hard to figure out what's causing the PIE font issue. The font issue isn't a huge deal and I'd completely ignore it if it weren't for the fact that the digital font makes no differentiation between upper and lower case and many special characters just show up as boxes.
I dumped the 10-day panel and added a link to the Weather Update in my links panel if I ever decide to manually update the weather.
Dees_Troy said:
I installed on my Q9c and I still get that font issue with large text boxes in PIE, however, I'm willing to put up with it at this point since the 6-day layout means I don't have to reboot the phone to see the latest forecast.
Any idea what might be causing the font issue? Since this weather panel is basically just scripts reading XML files and making registry changes, I can't imagine that it'd be too hard to figure out what's causing the PIE font issue. The font issue isn't a huge deal and I'd completely ignore it if it weren't for the fact that the digital font makes no differentiation between upper and lower case and many special characters just show up as boxes.
I dumped the 10-day panel and added a link to the Weather Update in my links panel if I ever decide to manually update the weather.
Click to expand...
Click to collapse
It may be the chome_320X240.cpr file in your /windows directory. When you load a layout. his program pulls .cprs from the chomeweather directory and replaces your original chome_320X240.cpr file ... you may uninstall. copy over your chome320X240.cpr file do your PC's desktop and open it and whatever .cpr file you use for the weather layout and compare the differences.
Glad you guys like it. I'm sorry the portrait guys are still experiencing issues, like the misalignment of the bottom temps. However, the issue needs to be taken care of in the weather.mscr file, not the cpr file. I think I will switch to png rendering of the bottom temps instead of relying on text handled by the plugin. It's just not reliable at all and the temps are always a little misaligned....
Look for 3.0.1 at the end of the day... LOL
pudgedaddy said:
The new layout looks beautiful. The one thing i might suggest: You may want to add an option in advanced options to turn off the 10 day forecast. Since it appears that im going to be using this 6 day testpluginui ( and several others will be too) they may not want or need the additional 10 day forecast panel.
I personally know how to disable it via the registry, but others may not. Secondly, If that option is de-selected, if you can also put in the weather.mscr file to not update that panel, so that way the weather updater runs a little faster.
Edit: I also think that today's Hi/Lo under the city needs to be removed. Its kind of redundant info, since the same info is located in the 6 day forecast located in the first day of the 6 day forecast.
This will also allow more room for lengthier weather condition names.
Click to expand...
Click to collapse
I was gonna say EXACTLY what you just said. lol.
pudgedaddy said:
The new layout looks beautiful. The one thing i might suggest: You may want to add an option in advanced options to turn off the 10 day forecast. Since it appears that im going to be using this 6 day testpluginui ( and several others will be too) they may not want or need the additional 10 day forecast panel.
I personally know how to disable it via the registry, but others may not. Secondly, If that option is de-selected, if you can also put in the weather.mscr file to not update that panel, so that way the weather updater runs a little faster.
Edit: I also think that today's Hi/Lo under the city needs to be removed. Its kind of redundant info, since the same info is located in the 6 day forecast located in the first day of the 6 day forecast.
This will also allow more room for lengthier weather condition names.
Click to expand...
Click to collapse
I second that, the testui pluig in is enough for me, I already remove the welcome center because is no need to get it on the screen, anyway it looks besutiful, great work......
Great work as always, man. Amazing how you fit so much information in such a small place.
Personally, I'm sticking with the NRG Slim layout for now. Going for the "less is more" effect
Whats Vox version and how do i get my NRG Colored panels with the 5 day forcast like on PIcture 4?
pudgedaddy said:
The new layout looks beautiful. The one thing i might suggest: You may want to add an option in advanced options to turn off the 10 day forecast. Since it appears that im going to be using this 6 day testpluginui ( and several others will be too) they may not want or need the additional 10 day forecast panel.
I personally know how to disable it via the registry, but others may not. Secondly, If that option is de-selected, if you can also put in the weather.mscr file to not update that panel, so that way the weather updater runs a little faster.
Edit: I also think that today's Hi/Lo under the city needs to be removed. Its kind of redundant info, since the same info is located in the 6 day forecast located in the first day of the 6 day forecast.
This will also allow more room for lengthier weather condition names.
Click to expand...
Click to collapse
Point taken. I will remove the "hi -lo" in the top left corner and make enabling the welcome center an option
Excuse me for the question, but will this app work on regular WM6, or it only works with WM 6.1 Chome?
No chances to have a version for WM6?
luckyland said:
Excuse me for the question, but will this app work on regular WM6, or it only works with WM 6.1 Chome?
No chances to have a version for WM6?
Click to expand...
Click to collapse
this app is specifically written for the sliding panel homescreen. The sliding panel homescreen is only available on the WM 6.1 platform. So no. it does not and will not work on the WM6 interface
I've got the shakes...
Oh man... I SO wanna download this and "finagle" while I'm here at work, but I'll need to edit my cpr and it's too cumbersome trying to do it from the phone (instead of on my PC desktop). Blast! My love for boldened titles hinders me from enjoying this .cab this instant! lol

Feather Weather, Goes PORTRAIT! Updated 8/17/08

For Feather Weather 2, click HERE
Portrait Version Now Available!
The smallest weather app available has just gone on a diet, it started at 950kb and now comes in at a lightweight sub 850 kb. Its been slimmed down in size but not in weather data available. The new TotalClock cab has the full five day and current conditions within the clock panel itself. Check out the screenshots below, you only see one day at a time for a nice clean look. Hit the right soft key to advance thru the days and when you done, it has a timer to reset itself to current conditions after 60 seconds of non-flipping of the forecast pages.
For those who would rather have it seperate, the original version still uses a seperate forecast panel along with current conditions only in the clock panel. But even though it hasn't changed, I have managed to squeeze another 100 kb off of it.
On the original version clock panel you get info for current: temperature, icon, real feel temp, winds, humidity, visibility, barometer, uv level, cloud cover, precipitation, sunrise, sunset, air quality levels, and dewpoint. Also, on the clock panel you get tomorrow's forecast: conditions, hi/lo temperatures, real feel high temps, winds, and estimated precipitation.
On condensed clock panel, there is current temp, current condition icon, time, and todays Hi/Lo temperatures. So if you dock your clock, you will always have weather and time showing on homescreen.
And for a full forecast, there is a 5 day forecast panel that can be enabled or disabled. The forecast pages have info for: day, date, conditions, hi/lo temperatures, precipitation estimates, uv levels, and winds expected.
Both have a user set time interval for the updates depending on your needs, wants, or data plans. Just go to setup and specify the interval in minutes. The default is 30 minutes. The forecast data updates every 8th time weather update runs, that way you get updated forecast info every 4 hrs if you use the default for current condition updates.
To install: For now, install to main memory, I'm working on either or version.
Download the cab. After installation, it should prompt you to restart. If it doesn't, then restart your phone to set new clock panel in place. After reboot, wait about 10 seconds and the FeatherOptions will run automatically. Go to Setup and set all of your info, good idea to go ahead and set your right soft key on the clock panel at this time. After setup, exit options by selecting "Run Weather Update and Exit".
That's it, your done.
NOTE: I beleive I worked out my problem with mortscript registering itself, but if it doesn't auto start the options after 10 seconds, then go to FeatherWeather folder in Program Files and click on Mortscript.exe .
To uninstall: First download the ResetClockPanel.zip below. Unzip and then place the .mscr file on your phone. Run it with File Explorer, this will reset your clock panel. Now go to Settings/Remove Programs and uninstall the cab.
City Location Codes:
For anyone that needs to find their city code, use this link and change the location in this url to the name of your city and then go to it and it will give a list of all cities worldwide that have that name. Get your location from there and enter it exactly as it appears in the quotes, but do not use the quotes.
http://hadle.accu-weather.com/widget/hadle/city-find.asp?location=calcutta
So, for this link above, if you were looking for Calcutta, India. Go to this link, and you will see a line like this:
<location cnt="1" city="Calcutta" state="India(Bangla)" location="ASI|IN|IN036|CALCUTTA" />
So your location to enter in to options would be :
ASI|IN|IN036|CALCUTTA
This should work for cities worldwide.
Feather currently is installed with a slim panel layout only. If you want more dll or cpr options, they are easily installed with FileChanger. Those are more homescreen customizations than they are weather customization, thats why they aren't in here.
For landscape phones: If you don't want the slim panels, I have standard panels cpr and mini panels cpr that work specifically with FeatherWeather. They are in the Featherscprs.zip below. Just install with the FileChanger app or copy into windows folder. Click on the File Changer in my signature below for the File Changer thread and download.
New Portrait versions below, the last 2 cabs that names end with "P" are the portrait versions. Portrait versions updated 8/19/08 with new cpr. If you already installed, you can download the cpr zip only and install to windows directory.
Check out these new portrait layouts provided by Kron2:
Make sure you get the landscape or portrait version you need, first 2 are Landscape, last 2 are Portrait
NOTE: There was a slight change in the feed. So after installing one of these cabs, please go to Post #101 and download the forecast fix.
showaco said:
Here's the smallest Weather app available. It weighs in at only 950 kb. Its been slimmed down in size but not in weather data available. It has current conditions and a five day forecast.
On the clock panel you get info for current: temperature, icon, real feel temp, winds, humidity, visibility, barometer, uv level, cloud cover, precipitation, sunrise, sunset, air quality levels, and dewpoint. Also, on the clock panel you get tomorrow's forecast: conditions, hi/lo temperatures, real feel high temps, winds, and estimated precipitation.
On condensed clock panel, there is current temp, current condition icon, time, and todays Hi/Lo temperatures. So if you dock your clock, you will always have weather and time showing on homescreen.
And for a full forecast, there is a 5 day forecast panel that can be enabled or disabled. The forecast pages have info for: day, date, conditions, hi/lo temperatures, precipitation estimates, uv levels, and winds expected.
It has a user set time interval for the updates depending on your needs, wants, or data plans. Just go to setup and specify the interval in minutes. The default is 30 minutes. The forecast data updates every 8th time weather update runs, that way you get updated forecast info every 4 hrs if you use the default for current condition updates.
To install: Download the cab or the zip file. The zip file has the exe file for installing thru ActiveSync, just unzip it first. After installation, it should prompt you to restart. If it doesn't, then restart your phone to set new clock panel in place. After reboot, go to start menu and run FeatherOptions. Go to Setup and set all of your info. After setup, exit options by selecting "Run Weather Update and Exit".
That's it, your done.
To uninstall: Go to Settings, Remove Programs and uninstall the cab. It won't change your clock panel back, but it will remove everything else. To revert clock panel back, install an original cpr or cpr of your choice.
Feather currently uses a slim panel layout, but I will add more support if anyone wants standard or fat panels. If you want more dll or cpr options, they are easily installed with FileChanger. Those are more homescreen customizations than they are weather customization, thats why they aren't in here.
Click to expand...
Click to collapse
how is it that you have 3g on that phone what service provider do you have?
RussianSolja said:
how is it that you have 3g on that phone what service provider do you have?
Click to expand...
Click to collapse
show doesn't have a dash. he has a blackjack and is on the at&t network
pudgedaddy said:
show doesn't have a dash. he has a blackjack and is on the at&t network
Click to expand...
Click to collapse
shhhhh!! I'm masquerading as a dash.
Nice and sweet and at that size, I'm downloading now and disabling NRG Mini Weather to see how it compares but the size is the enticing factor me, cool, thanks
First post updated with two new cabs, here are the standard sized panels and the mini sized panels cprs that work with Feather below in the zip file. I also included the slim cpr for going back to.
Good weather application. Seems nice, but I will give it a shot later to see how it works...
showaco are you going to make Feather weather for 240x320 screen i have a shadow and would love to try your weather loveing your sports app
kron2 said:
showaco are you going to make Feather weather for 240x320 screen i have a shadow and would love to try your weather loveing your sports app
Click to expand...
Click to collapse
The app only needs the cpr file adjusted for the clock panel layout to be ready to go. I have no way to test the layout, so it would be a total guess. If someone wants to make the cpr, or I could post a test version. A test version would probably have to be tweaked after installed to get the layout just right. You want to test? I can take a stab at the layout if you want to finish the final tweaking of positions.
Edit: If you want to pm me your email, I have a test cpr ready if you want to try it.
When I try and run Feather Options, I get and error: There is no application associated with "FeatherOptions"
I installed the CAB to the device memory. I get a generic clock icon and some weather info.
Thanks for any help, and of course for the nice plugin (once I can get it to work) I'm on a Moto Q Global.
braj108 said:
When I try and run Feather Options, I get and error: There is no application associated with "FeatherOptions"
I installed the CAB to the device memory. I get a generic clock icon and some weather info.
Thanks for any help, and of course for the nice plugin (once I can get it to work) I'm on a Moto Q Global.
Click to expand...
Click to collapse
Sometimes mortscript doesn't register correctly on my cab installs. Go to program files\featherweather and find the mortscript.exe. Click on it and it will say that the extentions are registered. Now try again.
showaco said:
Sometimes mortscript doesn't register correctly on my cab installs. Go to program files\featherweather and find the mortscript.exe. Click on it and it will say that the extentions are registered. Now try again.
Click to expand...
Click to collapse
Awesome, thanks for the quick reply. Now I can run setup and get a forecast, but I still don't have a image, it shown a grainy white clock placeholder.
But progress has been made!
I just tried to uninstall this until I get the display issue resolved, and I get the following error occasionally: Cannot execute \Program Filea\FeatherWeather\Feather.exe
Please help.
braj108 said:
I just tried to uninstall this until I get the display issue resolved, and I get the following error occasionally: Cannot execute \Program Filea\FeatherWeather\Feather.exe
Please help.
Click to expand...
Click to collapse
download sktools lite, its free. With it you can remove the notifications which are causing the error. If you want to reinstall, let me know which version you are using and I will get your icon fixed. If its the total clock version, the reason you didn't get the icon is because of not mortscript not registering at the beginning. It writes the value for the iconpath when the reboot occurs, but it needs mortscript to do it. Its an easy fix. After install, if mort doesn't register again, then reregister mortscipt again. After that, while you are in the featherweather folder, click on install.mscr. This will setup your icon for the clock panel and start your setup when it finishes.
I just reinstalled and rebooted my phone, and when the plugin came up, all seemed good then the screen died! It couldn't come on. I just got the phone and the first one AT&T shipped me had a bad backlight so I thought the worst, then I pulled the battery and rebooted again. Now the sun is shining gloriously on my Q Thanks, it was a little rocky but it sure looks nice. I really appreciate teh help getting this running, kudos to you sir.
braj108 said:
I just reinstalled and rebooted my phone, and when the plugin came up, all seemed good then the screen died! It couldn't come on. I just got the phone and the first one AT&T shipped me had a bad backlight so I thought the worst, then I pulled the battery and rebooted again. Now the sun is shining gloriously on my Q Thanks, it was a little rocky but it sure looks nice. I really appreciate teh help getting this running, kudos to you sir.
Click to expand...
Click to collapse
No problem, I'm still trying to figure out why mort doesn't always register correctly because thats the culprit in most problems that have been reported.
Portrait version is now available for download in post #1. Huge Thanks go to Kron2 for the work on the cpr layout for these two new portrait cabs.
I have installed the portrait total clock version in my HTC VOX. It runs fine. But it is not updating weather for my town. I live in Calcutta, India. After a lot of googling for getting accuweather codes, I tried the following in settings but none seemed to work.
ASI/IN/IN036/CALCUTTA
"ASI/IN/IN036/CALCUTTA"
INO36
CALCUTTA
Can anybody help me as to how to insert the code for my hometown Calcutta as I have liked the application very much and does not feel to ditch the same. Although it is not a forum for VOX I had to write in this forum as there are no threads for Feather weather in VOX forum.
Moreover, would anybody please give the link to the slide homescreen in Portrait version as posted in post no. 1.
Thanks in advance.
parthabhatta said:
I have installed the portrait total clock version in my HTC VOX. It runs fine. But it is not updating weather for my town. I live in Calcutta, India. After a lot of googling for getting accuweather codes, I tried the following in settings but none seemed to work.
ASI/IN/IN036/CALCUTTA
"ASI/IN/IN036/CALCUTTA"
INO36
CALCUTTA
Can anybody help me as to how to insert the code for my hometown Calcutta as I have liked the application very much and does not feel to ditch the same. Although it is not a forum for VOX I had to write in this forum as there are no threads for Feather weather in VOX forum.
Moreover, would anybody please give the link to the slide homescreen in Portrait version as posted in post no. 1.
Thanks in advance.
Click to expand...
Click to collapse
You have the right code, sort of. instead of "/" , you need "|". I tried it and it works, so for you code enter:
ASI|IN|IN036|CALCUTTA
For the theme, thats Kron2's theme. You may be able to find it at allshadow.com or by contacting him.
For anyone that need to find their city code, use this link and change the location in this url to the name of your city and then go to it and it will give a list of all cities worldwide that have that name. Get your location from there and enter it exactly as it appears in the quotes, but do not use the quotes.
http://hadle.accu-weather.com/widget/hadle/city-find.asp?location=calcutta
First of all i am very sorry to ask this stupid question as you have narrated the same example in your post 1. Actually I was too excited and overlooked that part. Anyway I am trying to find out the "|" character in my keyboard. Many thanks to you.

[upd. Nov 17, 2008] hgToday & hgAgenda: Fingerfriendly calendars

11/17/08: Version 0.31 of hgToday
Bugfix
Added hgColors 0.3 config file in zip archive. This makes it possible to change the font size of the list, and the height of the individual list items.
11/10/08: Version 0.3 of hgToday
Updated to work with the latest version of Christec's framework
Rewritten list control (loosely based on KListControl)
Removed buttons on top, menus included in popup menu, moving to next/previous day through finger movement.
New popup menu is now scrollable with finger.
New datepicker, more fingerfriendly.
Skinning with bitmaps has been removed in order to reduce memory usage.
Colors can still be changed.
9/11/08: Version 0.2
Added the program hgColors to make it possible to customize all colors.
Added the option of seeing all appointments and all tasks together.
Bugfix for the calendar dialog (got stuck on the screen sometimes).
9/5/08:
Added hgAgenda to the files below. This is the standalone full screen version of hgToday. It also has some more images for skinning.
Also added some more screenshots.
Earlier:
hgToday
This is a small fingerfriendly plugin I've put together for my todayscreen. I use it as one of my views in my Homescreen++ setup (prev. BatteryStatus). It can also be used as a regular today plugin.
hgToday will show you the current appointments and all tasks not completed with a due date on or before today, or with a start date on or before today (i.e. all tasks that should be worked on).
The list can be scrolled with a finger.
If doubleclicked, it will mark the item completed.
To view the task, hold the finger long enough for item to be selected and popupmenu to show, tapping view will take you to the default calendar/task application for editing and viewing.
Scroll left or right for next/previous day.
Skinning
This can be done with hgColors. Just click on the various items, choose save, and restart hgToday.
Both list height and item height can be changed.
Font size can also be changed, although if too large, the day will be mixed with the description.
The file hgColors must be in the same directory as hgToday or hgAgenda.
Future plans:
More fingerfriendly editing, entering new items.
Update hgAgenda to 0.3.
+??
To install hgAgenda:
Just unzip the files to any directory - can be used on a storage card too.
To install hgToday:
Must be installed to main memory.
1) Uninstall previous version of "ChrisTec Managed Today Screen Item Framework" and hgToday.
2) Unzip and install the "ChrisTec Managed Today Screen Item Framework" (see separate copyright notice).
3) Copy hgToday.dll to the same directory where the ChrisTec Framework is installed (normally "Program Files\Managed Today Screen Framework").
4) Go into settings, Today, Items: and make sure the "Managed Items" is checked.
Thanks to dosfan for his KListControl (http://forum.xda-developers.com/showthread.php?t=333124)
I don't take any responsibility for the problems this program might cause on your device, but it seems to work for me on a smartphone running Microsoft Mobile 6.
I value comments, but can't promise anything,.
Hope it can be useful for other people.
Great software calendar .. thank you veru much for this release
any "working" screenshot please ?
Im not able to get working on Sprint Touch 6.1. I had the HGplugin showing in the settings/home/items. I then closed out and went back in and its gone. I have tried to reinstall a few times with no luck.
Screenshots
I'm sorry, but I didn't know that you had to have a url to post a screenshot. Therefore the small bmp file.
Installation
Csquared said:
Im not able to get working on Sprint Touch 6.1. I had the HGplugin showing in the settings/home/items. I then closed out and went back in and its gone. I have tried to reinstall a few times with no luck.
Click to expand...
Click to collapse
Sorry about your problems.
Did you try going into the registry to see that the height is correct? Do you have other plugins? Can you run the file hgToday.exe directly? Can you try to put a checkmark in the today settings for Managed items?
It doesn't work. The item doesn't appear in settings/home/items. I tried to open the executable and I get an error: Null reference exception.

			
				
dancer_69 said:
It doesn't work. The item doesn't appear in settings/home/items. I tried to open the executable and I get an error: Null reference exception.
Click to expand...
Click to collapse
Have behavior here. item not showing in today setting. launching the exe returns this error.
hgToday.exe
NullReferenceException
en Christec.WindowsMobile.TodayScreen.TodayScreenPluginForm.OnLoad(EventArgs e)
en System.Windows.Forms.Form._SetVisibleNotify(Boolean fVis)
en System.Windows.Forms.Control.set_Visible(Boolean value)
en System.Windows.Forms.Application.Run(Form fm)
en SampleTodayScreenItem.Program.Main()
updated plugin
It seems my app was based on an early version of "ChrisTec Managed Today Screen Item Framework".
So I've attached that version in my first post. That should the program run. I have had it on my device for about a month now.
However, I probably should upgrade my app to take advantage of the newer version of the framework. The reason I didn't do that in the first place, was because it used an exe file that could be run by itself. The newer version requires a dll file.
It works good on my Kaiser - thanks.
Screenshot? I can't see anything on that small 1x1 pic!
NotLutzik said:
Screenshot? I can't see anything on that small 1x1 pic!
Click to expand...
Click to collapse
Did you see post #8?
It's quite similar to the gslide file explorer (we use the same list control), except hgToday doesn't have to be full screen.
I'm also hoping to release a non-plugin version later today.
Feedback: ))
the viewing options of all appointment and all tasks and so on are wonderful. also the option to change the height..
the scrolling thing is VERY important and useful..
the gray background is heavy on the eyes... i'd make it compatible with the tsk.. that is, transparent.
an option to view all appointments+all tasks is important in my eyes... for day to day use..
thank you so much.. i'm using your thing instead of Calendar+ now
Thanks!
nir36 said:
Feedback: ))
the viewing options of all appointment and all tasks and so on are wonderful. also the option to change the height..
the scrolling thing is VERY important and useful..
the gray background is heavy on the eyes... i'd make it compatible with the tsk.. that is, transparent.
Click to expand...
Click to collapse
The color scheme is based on the system colors, i.e. the list takes it's color from the active caption color. I'm planning skinning in a future version. As for now, in order to have a different background when there is no selection, you can add an image file called noselect.png (similar to the select.png file) and the program will show that for the list items, instead of the current background. However, the app will use a lot more resources that way. That's why I'd like to make some configuration file to store colors and other stuff.
an option to view all appointments+all tasks is important in my eyes... for day to day use..
Click to expand...
Click to collapse
I'm not quite sure what you mean, because the program should show all appointments AND all tasks on the screen for today or other chosen days.
thank you so much.. i'm using your thing instead of Calendar+ now
Click to expand...
Click to collapse
Added hgAgenda, the full screen standalone version of hgToday.
This can be run as a separate program.
Also included some more screenshots.
See first post.
I should probably do some version numbering. Any ideas?
ajige said:
The color scheme is based on the system colors, i.e. the list takes it's color from the active caption color. I'm planning skinning in a future version. As for now, in order to have a different background when there is no selection, you can add an image file called noselect.png (similar to the select.png file) and the program will show that for the list items, instead of the current background. However, the app will use a lot more resources that way. That's why I'd like to make some configuration file to store colors and other stuff.
I'm not quite sure what you mean, because the program should show all appointments AND all tasks on the screen for today or other chosen days.
Click to expand...
Click to collapse
i meant having All appointments+All tasks... for all days... not just for one specific day.
and i see what you mean about the background. unfortunately my background is black
thanks
nir36 said:
i meant having All appointments+All tasks... for all days... not just for one specific day.
and i see what you mean about the background. unfortunately my background is black
thanks
Click to expand...
Click to collapse
With the way the program is written, that would not be possible. What can be done, is to have all the appointments first and then all the tasks, but I assume you mean you want it sorted by date. To accomplish that, I have to do a complete rewrite of the program.
Right now I am working on a settings app so that all colors can be easily configured by the user.
ajige said:
With the way the program is written, that would not be possible. What can be done, is to have all the appointments first and then all the tasks, but I assume you mean you want it sorted by date. To accomplish that, I have to do a complete rewrite of the program.
Right now I am working on a settings app so that all colors can be easily configured by the user.
Click to expand...
Click to collapse
even having tasks after appointments would be great.
and of course having it arranged by date would be even better, but i understand it can be hard to accomplish. thanks.
btw, it's very very useful and i'm enjoying it.
New version 0.2
nir36 said:
even having tasks after appointments would be great.
and of course having it arranged by date would be even better, but i understand it can be hard to accomplish. thanks.
btw, it's very very useful and i'm enjoying it.
Click to expand...
Click to collapse
New version with all appointments and all tasks on one screen.
Also skinning via separate program.
See more details in first post.

Zooper Coding Question

So while using the Greenly theme I noticed that the top Zooper widget bar has notifications popping up when I get Emails/Calls/Texts which I wasn't expecting to see but this gave me an idea.
Would it be possible to put the date on a widget and then once a notification comes for an email/missed call/text the date disappears and just shows those notifications? I am coding impaired so I wouldn't know if it possible and where to begin if it is.
Thanks!
On a somewhat unrelated note, is it possible to code it so if zooper reads that there is a notification of any sort in the notification bar it throws out a notification image to let you know that there is one there?
jonnyg1097 said:
So while using the Greenly theme I noticed that the top Zooper widget bar has notifications popping up when I get Emails/Calls/Texts which I wasn't expecting to see but this gave me an idea.
Would it be possible to put the date on a widget and then once a notification comes for an email/missed call/text the date disappears and just shows those notifications? I am coding impaired so I wouldn't know if it possible and where to begin if it is.
Thanks!
Click to expand...
Click to collapse
The following code as the content of a Text or Rich Text module should do what you want. I couldn't test it though, so there might be some errors. Please test it and tell me if anything isn't working
Code:
$#SMCALLS#=0 && #SUG#=0 && #SUSMS#=0?#Ddd/MM/YYYY#$$#SMCALLS#!=0?#SMCALLS#$ $#SUG#!=0?#SUG#$ $#SUSMS#!=0?#SUSMS#$
jonnyg1097 said:
On a somewhat unrelated note, is it possible to code it so if zooper reads that there is a notification of any sort in the notification bar it throws out a notification image to let you know that there is one there?
Click to expand...
Click to collapse
In general something like that is possible but Zooper currently only supports calls, mails and text notifications. If you want to extend it to use other apps you have to use Tasker. Here is a really good tutorial how to do that: http://www.jagwar.de/en/show-notification-counts-in-zooper-with-tasker/
kwerdenker said:
The following code as the content of a Text or Rich Text module should do what you want. I couldn't test it though, so there might be some errors. Please test it and tell me if anything isn't working
Code:
$#SMCALLS#=0 && #SUG#=0 && #SUSMS#=0?#Ddd/MM/YYYY#$$#SMCALLS#!=0?#SMCALLS#$ $#SUG#!=0?#SUG#$ $#SUSMS#!=0?#SUSMS#$
In general something like that is possible but Zooper currently only supports calls, mails and text notifications. If you want to extend it to use other apps you have to use Tasker. Here is a really good tutorial how to do that: http://www.jagwar.de/en/show-notification-counts-in-zooper-with-tasker/
Click to expand...
Click to collapse
Thanks for doing the code for me, it didnt work I am getting an "ERR" message which I assume is a error message. I will look into Tasker for that then if Zooper cant do it on its own.
jonnyg1097 said:
Thanks for doing the code for me, it didnt work I am getting an "ERR" message which I assume is a error message. I will look into Tasker for that then if Zooper cant do it on its own.
Click to expand...
Click to collapse
I double checked the code and it was a simple mistake on my part. The code for year is not YYYY but yyyy. Change that and it should work
kwerdenker said:
I double checked the code and it was a simple mistake on my part. The code for year is not YYYY but yyyy. Change that and it should work
Click to expand...
Click to collapse
Cool. That did the trick! Thanks again kwerdenker!

[Q] tasker bbcode color/size variables not updating

hello, i am relatively new to zooper, but I'm pretty good with tasker.
I'm creating a basic notification widget, and i have it sending and updating the notification numbers just fine, but I am lazy and i don't wan't to have to copypasta the color codes/font sizes 12 times whenever i change my mind (frequently).
I have a tasker widget called" Zooper Widget Vars" pushing these commands (via the Zooper Widget Pro Variable plugin) (brackets are obviously not in the code)
configuration #TZFLG# = 50 (large size for icons)
configuration #TZFSM# = 10 (small size for numbers)
configuration #TZFLGC# = #ffffffff (color for icons)
configuration #TZFSMC# = #ff66d5da (color for numbers)
And i just press play whenever i want to send the variables to Zooper.
in zooper, in a rich text module, I have:
[s=#TZFSM#][c=#TZFSMC#]#TWHATSAPPCT#[/c][/s]
and in another Rich text module I have:
[s=#TZFLG#][c=#TZFLGC#]f[/c][/s]
#TZFSM#,#TZFLG#,#TZLGC# and #TZFSMC#
#TWHATSAPPCT# updates just fine. Problem is, #TZFSM# and #TZFSMC# do not update the widget until #TWHATSAPPCT# changes. #TZFLG# and #TZLGC# do not change at all unless I manually change the letter icon and change it back, which is, quite frankly, a pain in the ass.
I have tried just sticking #TZFSM#,#TZFLG#,#TZLGC# and #TZFSMC# in an RT module without the BBcode around them, and their values do print out, so I know that Zooper is actually receiving them, but its just ignoring them when they are enclosed in BBtags.
In layman's terms, the widget will not redraw with the new color and size parameters unless the content that the bbcode is modifying changes. Ive spent about 2 hours youtubing and googleing and wiki-ing, and I've decided I'm a noob and should just ask for help.
thank you so much in advance for any assistance.
(Nexus 5 with the lollipop dev preview installed)
P.S. though I think that ZW Utilities is a lovely little tool, it does not solve the lack of size updates, so please do not direct me there.
digitalgraffiti said:
hello, i am relatively new to zooper, but I'm pretty good with tasker.
I'm creating a basic notification widget, and i have it sending and updating the notification numbers just fine, but I am lazy and i don't wan't to have to copypasta the color codes/font sizes 12 times whenever i change my mind (frequently).
I have a tasker widget called" Zooper Widget Vars" pushing these commands (via the Zooper Widget Pro Variable plugin) (brackets are obviously not in the code)
configuration #TZFLG# = 50 (large size for icons)
configuration #TZFSM# = 10 (small size for numbers)
configuration #TZFLGC# = #ffffffff (color for icons)
configuration #TZFSMC# = #ff66d5da (color for numbers)
And i just press play whenever i want to send the variables to Zooper.
in zooper, in a rich text module, I have:
[s=#TZFSM#][c=#TZFSMC#]#TWHATSAPPCT#[/c][/s]
and in another Rich text module I have:
[s=#TZFLG#][c=#TZFLGC#]f[/c][/s]
#TZFSM#,#TZFLG#,#TZLGC# and #TZFSMC#
#TWHATSAPPCT# updates just fine. Problem is, #TZFSM# and #TZFSMC# do not update the widget until #TWHATSAPPCT# changes. #TZFLG# and #TZLGC# do not change at all unless I manually change the letter icon and change it back, which is, quite frankly, a pain in the ass.
I have tried just sticking #TZFSM#,#TZFLG#,#TZLGC# and #TZFSMC# in an RT module without the BBcode around them, and their values do print out, so I know that Zooper is actually receiving them, but its just ignoring them when they are enclosed in BBtags.
In layman's terms, the widget will not redraw with the new color and size parameters unless the content that the bbcode is modifying changes. Ive spent about 2 hours youtubing and googleing and wiki-ing, and I've decided I'm a noob and should just ask for help.
thank you so much in advance for any assistance.
(Nexus 5 with the lollipop dev preview installed)
P.S. though I think that ZW Utilities is a lovely little tool, it does not solve the lack of size updates, so please do not direct me there.
Click to expand...
Click to collapse
Instead of entering the bbcode in the text field with the text did you try separating it out and entering it in the advanced parameters field.
jr67 said:
Instead of entering the bbcode in the text field with the text did you try separating it out and entering it in the advanced parameters field.
Click to expand...
Click to collapse
in the end i figured it out with putting all of the styling in the advanced params space and the content in the text area
thanks for your help!

Categories

Resources