Facer question - Moto 360

Im using one of the stock facer face watch and have a question.
I added the Current Temp as 1 layer and added another one for the Weather Units. The issue I have is if the temp is single digit, theres a huge gap between the temp and the weather unit while in double digits, its lined up perfectly.
Is there anyway to set it so if its a single digit to have it lined up to the right side?

Related

Wallpaper help

I'm trying to get this shot of the headphones to be shown entirely on the home screen of my Nexus 7 but I can't seem to format it properly. What I did first was shrink the width to 720 (with the height changing proportionally) and then I pasted it into a black background of a 720x1280. I loaded it onto my tablet and I only get the headphone partially. I then took the original image and increased the canvas width and filled in with black. I pretty much get the same cropped portion of the headphone. Can anyone help me in what I'm doing wrong?
http://wall.alphacoders.com/wallpaper.php?i=73967
Thanks!
Tweaked the image a little as it looked very crooked and "wrong" to my eyes, but I attacked two versions, one that is full width and one that is single screen width. Also I use a free app called "Wallpaper Set Save" to set the wallpaper, as it makes it fit and means you dont have to do that "crop" shenanigans.
eu4ria said:
Tweaked the image a little as it looked very crooked and "wrong" to my eyes, but I attacked two versions, one that is full width and one that is single screen width. Also I use a free app called "Wallpaper Set Save" to set the wallpaper, as it makes it fit and means you dont have to do that "crop" shenanigans.
Click to expand...
Click to collapse
Thanks - but those images still didn't quite do what I was hoping for. I'm looking to have the headphones only on the main home screen. I thought adding black bars to the side would take care of that, but didn't seem to make much of a difference. I'll fool around with the app.

[Q] Two Qs regarding progress bar adv parameters

Thanks for your time. Two questions, #1: I've been around here and throughout other sites, and found (it seems) dozens of different options but none have seemed to work regarding getting an object to follow a CIRCULAR progress bar. In this case, I have a simple clock that I would like to have a sunrise icon and sunset icon (each) move around the outside the clock at the appropriate time. I have tried multiple codes and combos to no avail. I have successfully managed to achieve this result on a straight prog bar using [oy]$(-34+(#BLEVN#*2.70))$[/oy]. Those are, of course, my coordinates plugged in. I've found so many different "Oh, do this, this'll work" codes that don't work, I won't bore you with them (including this one http://forum.xda-developers.com/showthread.php?t=2563932). At any rate, any help would be appreciated.
#2: Is it possible to set up a 12 hour progress bar clock that handles just am and/or just pm?
Thanks again.
#1 Take a look at the Zooper standard analog Clock
#2 Use the 24h. For am use min 0 max 12 and for pm use min 12 max 24
Sent from GT-I9505 via Tapatalk
ibashmuck said:
Thanks for your time. Two questions, #1: I've been around here and throughout other sites, and found (it seems) dozens of different options but none have seemed to work regarding getting an object to follow a CIRCULAR progress bar. In this case, I have a simple clock that I would like to have a sunrise icon and sunset icon (each) move around the outside the clock at the appropriate time. I have tried multiple codes and combos to no avail. I have successfully managed to achieve this result on a straight prog bar using [oy]$(-34+(#BLEVN#*2.70))$[/oy]. Those are, of course, my coordinates plugged in. I've found so many different "Oh, do this, this'll work" codes that don't work, I won't bore you with them (including this one http://forum.xda-developers.com/showthread.php?t=2563932). At any rate, any help would be appreciated.
#2: Is it possible to set up a 12 hour progress bar clock that handles just am and/or just pm?
Thanks again.
Click to expand...
Click to collapse
#1: Moving things circular is a bit different from moving this along a straight line. For circles you need three parameters in Zooper: thie radius of your circle ([ar][/ar]), the sweep angle of said circle ([as][/as]) and finally the rotation ([r][/r]). The first one is static and the other two depend on what you are trying to do. You need to determine the size of your circle in degrees (360 for full, 180 for half etc.) and then determine in how many steps you need to cut that size. For something that moves with the minutes of the hour it would be 60 for instance. Then your amount of degrees per minute is 360/60 and if you multiply that with the numbers of minutes #Dm#, you get your current position and rotation. So for something to move around a circle based on the minutes of the hour you would need these advanced parameters:
[r]<whatever size>[/r]
[as]$(360/60*#Dm#)$[/as]
[ar]$(360/60*#Dm#)$[/ar]​To apply this to your idea, you need to figure out in how many steps you want your circle to be broken down to (I would guess 12) and then what's your variable you want to multiply with (#ARK# maybe). With these values it should position the symbol on the hour of the sunrise.
I hope this helps you out and if not, don't hesitate to ask
#2: I think so but you probably would have to work with some advanced parameter conditionals to check whether it's currently am or pm. This depends on what exactly you are trying to do. If you can give me more details I can try to think something up.
kwerdenker said:
#1: Moving things circular is a bit different from moving this along a straight line. For circles you need three parameters in Zooper: thie radius of your circle ([ar][/ar]), the sweep angle of said circle ([as][/as]) and finally the rotation ([r][/r]). The first one is static and the other two depend on what you are trying to do. You need to determine the size of your circle in degrees (360 for full, 180 for half etc.) and then determine in how many steps you need to cut that size. For something that moves with the minutes of the hour it would be 60 for instance. Then your amount of degrees per minute is 360/60 and if you multiply that with the numbers of minutes #Dm#, you get your current position and rotation. So for something to move around a circle based on the minutes of the hour you would need these advanced parameters:
[r]<whatever size>[/r]
[as]$(360/60*#Dm#)$[/as]
[ar]$(360/60*#Dm#)$[/ar]​To apply this to your idea, you need to figure out in how many steps you want your circle to be broken down to (I would guess 12) and then what's your variable you want to multiply with (#ARK# maybe). With these values it should position the symbol on the hour of the sunrise.
I hope this helps you out and if not, don't hesitate to ask
#2: I think so but you probably would have to work with some advanced parameter conditionals to check whether it's currently am or pm. This depends on what exactly you are trying to do. If you can give me more details I can try to think something up.
Click to expand...
Click to collapse
Thanks for the response. That's actually the first parameter that I found and tried to work with, and, like then, I still can't get it to work. My "hour clock" numbers are:
x= 60
y= -210
w= 520
Using #Dh#, min 0, max 12
Putting numbers into the codes you gave...
[as]$(360/12*#ARh#)$[/as]
[ar]$(360/12*#ARh#)$[/ar]
...(or even #ARK#) still sends the icon low and to the left, as you can see in the second screen shot (I've enlarged it to show it's position better). I'm living up to my namesake with this, I know, but my guess is I'm missing one small bit that's throwing me off. Apologies, of course.

[Feature Request] Locality for Rectangles

I would like to request the ability to apply a locality to a rectangle.
I want to design a widget that is a dual-time-zone analog clock. One hour hand would be for local time, and a second hour hand would be for a specified location. Because hour hands are implemented using rectangles and Advanced Parameters that specify sweep angle and rotation as a function of time, I need to be able to specify the locality of the rectangle separately from the widget so that the Advanced Parameters will use the correct time--that of the rectangle, not of the widget.
If this is not the correct forum for feature requests, please let me know where that is.
Thanks.
Jeff Jansen
jsjansen said:
I would like to request the ability to apply a locality to a rectangle.
I want to design a widget that is a dual-time-zone analog clock. One hour hand would be for local time, and a second hour hand would be for a specified location. Because hour hands are implemented using rectangles and Advanced Parameters that specify sweep angle and rotation as a function of time, I need to be able to specify the locality of the rectangle separately from the widget so that the Advanced Parameters will use the correct time--that of the rectangle, not of the widget.
If this is not the correct forum for feature requests, please let me know where that is.
Thanks.
Jeff Jansen
Click to expand...
Click to collapse
Might I suggest that you use the timezone in the sweep angle/ rotation calculation. If you use local time + timezone offset that should adjust the rectangle correctly. I did something like this to make a clock like xkcd:Now (google, I can't post outside links yet ). The outer edge is fixed and the colored timezones rotate. I tried to incorporate the #DZ# variable but I haven't got this quite working yet.

[Request] Rorschach Watchface

It would be awesome if someone could create the "delusional" Rorschach watch face for the Moto360, the way it works is you look at the upper right corner for the hour and the lower left corner for the minutes. The upper left and lower right are simply mirror images of the hour and minutes. Here is the site explaining the concept
http://blog.tokyoflash.com/2013/03/rorschach-2-e-paper-watch-update/
For the moto360, it would definitely look better if the background was black and the inkblot white
Anyone know if making this would be possible?
lordscipio said:
It would be awesome if someone could create the "delusional" Rorschach watch face for the Moto360, the way it works is you look at the upper right corner for the hour and the lower left corner for the minutes. The upper left and lower right are simply mirror images of the hour and minutes. Here is the site explaining the concept
http://blog.tokyoflash.com/2013/03/rorschach-2-e-paper-watch-update/
For the moto360, it would definitely look better if the background was black and the inkblot white
Anyone know if making this would be possible?
Click to expand...
Click to collapse
Hello, I've coded the app, and tested it, it is fully working and should be released on the play store soon :fingers-crossed:
Awesome! Looks much better than the attempts on facerepo. Just purchased. Thanks!
Actually, could not get it to show up. I rebooted my watch, disconnected/reconnected, but it will not show as an option in watch faces. : /
--Edit--
After resetting the apps on the watch it was able to show up, however it force closes whenever I try to go into settings (on S5 and moto360). Also, some numbers are a bit hard to read like 53 minutes as they merge together to form a blob that reads 99. Also, 08 minutes shows up as a 0 and a 0 fully filled (basically looks like two zeros). Currently very difficult/impossible to know what the minutes time is due to these merging issues.
Seems like a bit of fine tuning on the display of the numbers will make the app perfect!

Please set 'OPR of Always On State under 15%' when Build Watch Face

Wanted to post this for others using SWD to design watch faces for the Samsung line of watches. If you try to build and get the "Please set 'OPR of Always On State under 15%' when Build Watch Face" error message, I'll explain how to fix this. There are two ways of rectifying this issue:
1. Hide elements of the design until the message disappears. When you do this method though, the always-on-state image will only show the elements that weren't hidden so when the watch is in the AOD state it won't look like the original design and may look very weird depending on your design.
2. I build my designs (or copy name brand watch designs) inside of photoshop. if you build this way, make two layers of the watch face. One containing the actual face, and one that contains black that covers the entire face (and only the face). Make sure the black is on top. then simply reduce the opacity enough to see the design through the black. You'll have to play around with how much you need to reduce the opacity depending on the colors in the watch face. For a very white watch face, you'll want the opacity at around 75%, for darker faces, you'll use a lower opacity. In SWD, place the original watch face as the background and then put the opaque watch face right above it. Click the " always-on-state", then hide the opaque layer and build the project as normal. If you still get the error, go back to photoshop and make the opacity higher until you no longer get the error.
What is happening is that when you click " always-on-state" in SWD it takes a screenshot of the layers of the watch (excluding the watch hands) and uses this image instead of the regular image when you have the AOD set to on and you aren't looking at the watch. For whatever reason, SWD decided that the AOD image needs to almost be black. I'm not really sure why, but this is what is causing the issue.
Hopefully, this helps anyone out there.
****Update****
I forgot to add, you choose to not set the Always-On-State. This will prevent the error message as well, but the watch will use the generic Samsung watch design when the AOD on the watch is set to on and when someone turns their wrist to look at the watch, it will turn on your design but it takes a quick second to happen and this doesn't look good. I recommend using option 2 above as I think this is the best solution.
I have this showing up on my watch : OPR:11,34% does this meen it blocked the face i'm uploading or is it the face thats allready on my watch?
---------- Post added at 08:22 AM ---------- Previous post was at 08:17 AM ----------
Does this note prevent uploading watch faces to watch?

Categories

Resources