GWD - How Do I Change Font Color on Tap Action? - Samsung Gear S3

Hi,
I know how to create an Action and assign a Tap or Double-Tap action to change an image, but if I am using a digital watch face and want to tap to change the color of the time display (as opposed to a background image), how would I go about doing that?
For example, if my default digital watch face shows the time digits in red, how can I set an action to change it to orange upon the Tap Action, then yellow, then green, etc.?
Thanks in advance!
-Swooperz

Swooperz said:
Hi,
I know how to create an Action and assign a Tap or Double-Tap action to change an image, but if I am using a digital watch face and want to tap to change the color of the time display (as opposed to a background image), how would I go about doing that?
For example, if my default digital watch face shows the time digits in red, how can I set an action to change it to orange upon the Tap Action, then yellow, then green, etc.?
Thanks in advance!
-Swooperz
Click to expand...
Click to collapse
There are a ton of watch faces out there that change their font color when you tap on the time digits. Surely someone knows how to create this effect in GWD. Alternatively, is there a way to view the xml from purchased or downloaded watch faces on my watch? Just to view the code for that action?
Thanks in advance!!

i was curious about the same thing.
so what i did was copied the .wgt file of a face that had that feature as it was being sent to my watch. root is needed to intercept the transfer from phone to watch.
renamed to .zip, unzipped and looked through the files.
its hard to explain but there is no special coding in the xml for this. it is basically using layers and a transparent png as a font.
i have never shared a gwd file so not sure if you can but i am willing to do a very basic time face and send it to you, if you would like. i will include all files so you can see what is happening.
let me know.

Hi Stealo,
That sounds awesome. I would love to see how this is done. I'd root my Note 8 but I don't think the Verizon Note 8 can be rooted safely. Anyone correct me if that is not right.
Anyway - yes, please do share whatever you find, Stealo, and let me know how I can help.
Cheers,
Swoop

Swooperz said:
Hi Stealo,
That sounds awesome. I would love to see how this is done. I'd root my Note 8 but I don't think the Verizon Note 8 can be rooted safely. Anyone correct me if that is not right.
Anyway - yes, please do share whatever you find, Stealo, and let me know how I can help.
Cheers,
Swoop
Click to expand...
Click to collapse
ok cool. i will try and get it done tonight, and post.
----------------------------------------------------------------
Ok, so i started writing a "how to" and it got way out of control, :silly:.
I cant take any credit for this, all i did was pull apart someone elses work and learn from it. The attached is my work but built in the same way as the other person did it. I hope this doesnt upset anyone. I will never share the original persons work.
I have attached all the files you need for this to work including my gwd file & tpk file. Im not sure if you will be able to import it into your GWD but give it ago. if not start a new face and rebuild it from the resources.
At any point you get stuck let me know and i will help you out.

Hi Stealo,
Thanks for posting this! Things have been crazy busy here and I have not yet had a chance to sit down and dig into this but I look forward to seeing what cool trickery lies in the scripts, etc.
Thanks again,
Swoop

Swooperz said:
Hi Stealo,
Thanks for posting this! Things have been crazy busy here and I have not yet had a chance to sit down and dig into this but I look forward to seeing what cool trickery lies in the scripts, etc.
Thanks again,
Swoop
Click to expand...
Click to collapse
hey swooperz,
nothing is scripted for this to work.
just layer composition and thats it.
if you need a hand or any explaining let me know.

stealo said:
hey swooperz,
nothing is scripted for this to work.
just layer composition and thats it.
if you need a hand or any explaining let me know.
Click to expand...
Click to collapse
Everything worked like a charm! I got one error about the TPK needing to be rebuilt when trying to deploy to my watch (unsure of the issue), but I chose only version 3 and it worked perfectly. Maybe my watch needs to have OS 4? I have a Samsung Gear S3 Frontier.
Anywho - now I am going to learn how bitmap fonts work and how to convert a TTF font that I own, to a bitmap font. :good:
This is awesome! Thanks again for helping me get over this hurdle. It was a big one for me. :laugh:

Swooperz said:
Everything worked like a charm! I got one error about the TPK needing to be rebuilt when trying to deploy to my watch (unsure of the issue), but I chose only version 3 and it worked perfectly. Maybe my watch needs to have OS 4? I have a Samsung Gear S3 Frontier.
Anywho - now I am going to learn how bitmap fonts work and how to convert a TTF font that I own, to a bitmap font. :good:
This is awesome! Thanks again for helping me get over this hurdle. It was a big one for me. :laugh:
Click to expand...
Click to collapse
i am using gwd 1.6.1 i think which lets you build for os 4.0 and lower.
the font in the example was the fortnite font.
very simple task but very boring to make, but you will only need to do once for each digit 0-9.
are you familiar with adobe illustrator or photoshop?
simply make the canvas the size you need with the same colour or pattern of the face, type a single number, adjust its size so it just fits height and width, cut it out so the number is transparent, save it as a png to preserve the transparency.
much more to it but like i said let me know if you get stuck.
regarding the background cut to make, i think i made it 200px wide and 80px high.
so that means you can fit 4 digits at 50px wide X 80px high, which is important for making the font.

stealo said:
i am using gwd 1.6.1 i think which lets you build for os 4.0 and lower.
the font in the example was the fortnite font.
very simple task but very boring to make, but you will only need to do once for each digit 0-9.
are you familiar with adobe illustrator or photoshop?
simply make the canvas the size you need with the same colour or pattern of the face, type a single number, adjust its size so it just fits height and width, cut it out so the number is transparent, save it as a png to preserve the transparency.
much more to it but like i said let me know if you get stuck.
regarding the background cut to make, i think i made it 200px wide and 80px high.
so that means you can fit 4 digits at 50px wide X 80px high, which is important for making the font.
Click to expand...
Click to collapse
Makes sense. I have Photoshop so will upgrade GWD and open the files up in Photoshop to have a look. Thanks again!

I got the set-up working with my own bitmap font and clickable button to change the colors - the caveat now is when a single digit shows up - the mask layer shows up from underneath the single digit, since it gets centered, and the mask is only half the width (one digit's width as opposed to two digit widths).
See my picture of both cases (still need to work out anti-aliasing artifacts).
Any ideas on how to work around that, yet still only use single digit hours?
EDIT: Just to be clear: my background is black, so other than the digits, there should be no purple color coming through as shown for the single digit of one.
Thanks,
Swoop

Swooperz said:
I got the set-up working with my own bitmap font and clickable button to change the colors - the caveat now is when a single digit shows up - the mask layer shows up from underneath the single digit, since it gets centered, and the mask is only half the width (one digit's width as opposed to two digit widths).
See my picture of both cases (still need to work out anti-aliasing artifacts).
Any ideas on how to work around that, yet still only use single digit hours?
EDIT: Just to be clear: my background is black, so other than the digits, there should be no purple color coming through as shown for the single digit of one.
Thanks,
Swoop
Click to expand...
Click to collapse
hey swoop,
good to see you making progress.
just off the top of my head
at the the bottom of the screen is a time line. so you could make 2 backgrounds and have 1 apear between the hours of 1 to 9 and the other from 10 to 12.
read about the conditional lines,
https://developer.samsung.com/galaxy-watch/design/watch-designer/gear-watch-dev
to fix the auto centering maybe align your text to the right so a single digit will snap right when changing.
i use only 24hr time, not sure why but always have. if i get time i will try it out and see.
regarding artifacts, i generally use illustrator, which produces cleaner images. if you dont have illustrator you can dowload a free alternative called inkscape, i think, or an online vector converter.
i always make an image twice as large if possible then clean it up and scale it down. im still learning also, so what i do may not be right but it works for me.
in the mean time let me know if what i said is right.

Thanks, Stealo.
I have Adobe CS 6 with Illustrator, so will try that next as well as start working on a timeline-based position of the background. Great idea! That way, I can leave the single digits centered (I hope), which looks better in my design.
Cheers!

is It possible to change with double tap, one object's color that moves ? (such as the second hand)

stealo said:
i was curious about the same thing.
so what i did was copied the .wgt file of a face that had that feature as it was being sent to my watch. root is needed to intercept the transfer from phone to watch.
renamed to .zip, unzipped and looked through the files.
its hard to explain but there is no special coding in the xml for this. it is basically using layers and a transparent png as a font.
i have never shared a gwd file so not sure if you can but i am willing to do a very basic time face and send it to you, if you would like. i will include all files so you can see what is happening.
let me know.
Click to expand...
Click to collapse
just found this thread.. may i ask you how did you intercept the transfer from phone to watch?
i have phone rooted, do i need root also on gear?
i'd like to do this to study some of watchfaces i bought, so i could learn to make them.
thanks in advance ^^

up @stealo

erghetto said:
up @stealo
Click to expand...
Click to collapse
hey sorry, dont use xda as much anymore.
You need to have a rooted device (phone/tablet) first, and a good file explorer, no root needed on watch at all. i cant give specifics as i dont use the devices anymore, i can try and point you in the right direction though.
what i did was monitor a folder in the WEAR app root directory on my phone, when i downloaded an app from the store it would store it on my phone for maybe ten seconds, then transfer to my watch.
Using your file explorer you can copy it and paste it to a new location before the transfer ends.
Rename it .zip, extract, learn and explore.
Like i said i am not 100% if it is still possible as i no longer use both devices. Please dont steal anybodies work though.
Good luck.

stealo said:
hey sorry, dont use xda as much anymore.
You need to have a rooted device (phone/tablet) first, and a good file explorer, no root needed on watch at all. i cant give specifics as i dont use the devices anymore, i can try and point you in the right direction though.
what i did was monitor a folder in the WEAR app root directory on my phone, when i downloaded an app from the store it would store it on my phone for maybe ten seconds, then transfer to my watch.
Using your file explorer you can copy it and paste it to a new location before the transfer ends.
Rename it .zip, extract, learn and explore.
Like i said i am not 100% if it is still possible as i no longer use both devices. Please dont steal anybodies work though.
Good luck.
Click to expand...
Click to collapse
Thanks for the info. I have root on my s8 so i could try, but wear app folder is a bit generic. Without knowing the folder's name i wouldn't know where to look.
Thanks again

erghetto said:
Thanks for the info. I have root on my s8 so i could try, but wear app folder is a bit generic. Without knowing the folder's name i wouldn't know where to look.
Thanks again
Click to expand...
Click to collapse
hey, sent you a pm.

mimmog said:
is It possible to change with double tap, one object's color that moves ? (such as the second hand)
Click to expand...
Click to collapse
I want to know the same thing. Basically I want to to double tap on say 3 o'clock area and have hour hand change images/color. How is this possible? Yes, you can change background defining itself as a buton and add "change image" action but how can you change other layer images by double tapping on another layer?

Related

"Start"

If this is the wrong section, let me know please.
I see a lot of themes or people SS's of their home screen and, the Start button at the top, i see a lot of people have custom names there, like in Laskar's theme and etc. i was wondering how it's possible to put a custom name there... Like... Susa instead of Start, or something along those lines
i would also like to see this possible
Well, i still don't know how to do it, but the new co0kies 1.7 has an option for it now, so all's well
Susasama said:
Well, i still don't know how to do it, but the new co0kies 1.7 has an option for it now, so all's well
Click to expand...
Click to collapse
I thought it was only your service provider details that CHT would change, not the txt next to the start button?
I'm still after customizing the start txt if any one can help...
There's two ways that I know of..........
Either look here. Needs a bit of knowledge to do that, tried a few times but couldn't get the dll to re-sign correctly and gave up in the end.
Or.......the cheating option which I use.
Install the "No Start" patch attached (WWE only), no idea who wrote it originally so can't credit them, but it came off here somewhere.
Then in Photoshop add whatever you want to replace it with, this has the advantage that you can use whatever font/image/colour you want rather than just sticking to white text in your system font if you do it the proper way.
To align in Photoshop, take a screenshot to show your start icon with no text, then overlay it with some transparency onto your new wallpaper then you can see perfectly where you need to paste your new text/icon or whatever.
Hope this helps.
sniper-wolf said:
There's two ways that I know of..........
Either look here. Needs a bit of knowledge to do that, tried a few times but couldn't get the dll to re-sign correctly and gave up in the end.
Or.......the cheating option which I use.
Install the "No Start" patch attached (WWE only), no idea who wrote it originally so can't credit them, but it came off here somewhere.
Then in Photoshop add whatever you want to replace it with, this has the advantage that you can use whatever font/image/colour you want rather than just sticking to white text in your system font if you do it the proper way.
To align in Photoshop, take a screenshot to show your start icon with no text, then overlay it with some transparency onto your new wallpaper then you can see perfectly where you need to paste your new text/icon or whatever.
Hope this helps.
Click to expand...
Click to collapse
Thanks! Sneaky, but I like it! Will give it a go!
Must admit, I'm a bit surprised no one has come up with a editor yet

Hex Codes For Colors

This is being posted for people who want to edit the colors of certain parts of their phone. This is simply meant as a resource for those folks. This IS NOT a [How To] thread, and if you don't know what to do with these links, this is not the place to ask. I simply wanted an easily searchable resource here on XDA for those who need it. Don't know what they are for? You don't need it. Yet
To those that do need this, Happy Hex-Editing!
Dithering:
http://www.2createawebsite.com/build/hex-color-chart-grid.html
Non-Dithering:
http://www.htmlgoodies.com/tutorials/colors/article.php/3479001
tejasrichard said:
This is being posted for people who want to edit the colors of certain parts of their phone. This is simply meant as a resource for those folks. This IS NOT a [How To] thread, and if you don't know what to do with these links, this is not the place to ask. I simply wanted an easily searchable resource here on XDA for those who need it. Don't know what they are for? You don't need it. Yet
To those that do need this, Happy Hex-Editing!
Dithering:
http://www.2createawebsite.com/build/hex-color-chart-grid.html
Non-Dithering:
http://www.htmlgoodies.com/tutorials/colors/article.php/3479001
Click to expand...
Click to collapse
What do I do with this??
Can you show me how to color certain parts of my phone. I'd like to color my entire physical phone blue... how would I go about doing this using these Hex codes?
/s
pseudoremora said:
What do I do with this??
Can you show me how to color certain parts of my phone. I'd like to color my entire physical phone blue... how would I go about doing this using these Hex codes?
/s
Click to expand...
Click to collapse
step one: print copy of hex codes
step two: place phone on top of large, flat surface
step three: cover phone with printout of hex code chart, colorside-up
step four: Hit phone repeatedly as hard as you can with a hammer* until desired saturation is achieved.
*BE CAREFUL! ONLY hit the color that you intend to transfer to your phone, otherwise you may have unintended results!
tejasrichard said:
step one: print copy of hex codes
step two: place phone on top of large, flat surface
step three: cover phone with printout of hex code chart, colorside-up
step four: Hit phone repeatedly as hard as you can with a hammer* until desired saturation is achieved.
*BE CAREFUL! ONLY hit the color that you intend to transfer to your phone, otherwise you may have unintended results!
Click to expand...
Click to collapse
Hahahahaha.
What should I do for transparency?
pseudoremora said:
Hahahahaha.
What should I do for transparency?
Click to expand...
Click to collapse
Print it on Saran Wrap
i know you said not to ask about these things, but i thought it best to ask here over posting a whole new thread (and this came up in the search results...so...yeah...)
i know vaugly about hex codes and the colors, mainly from HTML structure, but im not to familiar with how android implements it.
my question is simple:
green. the browser loading, highlighted ANYTHING, the box around a floating widget, alllll the greeeeen; is this a global hex edit, or does it have to be stripped down piece by piece, app by app, widget by widget.
i ask because in regawmod, everything that was green was grey. i really liked that, and it proved it was possible, but i also know that ALOT of dev'ing went into that theme (thanks neb!!) and that the simpliest of changes to the theme messed with the whole lot. implying that it wasnt a matter of changing on line, but many. is this fact?
tia&sorry for the clutter :-D
Short answer is no, there is no global hex code that affects all the highlights. There are many png's that must be edited to change all the green to another color. While there certainly is SOME hex involved, it is mostly super-tedious PhotoShop work.
tejasrichard said:
it is mostly super-tedious PhotoShop work.
Click to expand...
Click to collapse
Yup, basically, me and neb photoshopped pngs for days, and I had to recompile every single .9.png in Eclipse for it to work after all of the changes. I actually did no hex editing for the themed RegawMOD, BUT there are a few things I'm going to be adding that involve that when I get back into this soon.
thanks for the info guys
geuss ill learn to love the green until your next release dan
you could just take all the files of one color and batch hue change them in photoshop and then take all the white files and batch throw a new layer on, paint it green and then set it to overlay...and then just repatch all the 9-patch files...
venumx said:
you could just take all the files of one color and batch hue change them in photoshop and then take all the white files and batch throw a new layer on, paint it green and then set it to overlay...and then just repatch all the 9-patch files...
Click to expand...
Click to collapse
i thought the green was dictated by hex, not individual images.
im straight, reg and neb are crazy for sitting there for days and turning probably 200 images grey lol.
mountaindont said:
i thought the green was dictated by hex, not individual images.
im straight, reg and neb are crazy for sitting there for days and turning probably 200 images grey lol.
Click to expand...
Click to collapse
a quick secret about the changing green to grey, the "change to black and white" option is VERY fast but still, took a long time to do, then 9patch and recompile them.

[Request] Simple Digital Clock (using "Segoe UI"fonts)

i've searched everywhere for some nice digital clocks, but everyone creates clocks with some really wierd fonts, or colors that isnt really my taste. So, i made a "concept art" of how a digital clock id like to use look like. (see attachments)
The clock has to be adjustable via CHT (i mean being able to move it around like the normal manila digital clock), so that i can use it in all screens, (Home , all levels, and lockscreen).
Anyone knows if anything like this exists?
if not, anyone willing to make it?
i used the font known as "Segoe UI" (light). Also, if possible, id like some extra versions of it, like the fonts being black instead of white, and an other one with having that black transparent panel behind the clock, using white for the fonts.
PS1:i know that the clock im thinking about looks horrible with the current looks of my phone, but i cant be arsed to change anything until i find a proper clock
PS2: i also know that theres a cab that removes the white panels behind the manila numbers of the clock. The thing is that, without it, the numbers got a little gap between them, looking ugly imo
I basically achieve this by mixing two cabs I've found here in xda
one is called
[Star] Segoe UI light clock charecters White.cab
and the other one is
Transparent Clock flippers.cab
you can find them here on xda posted by their respective authors.
edit: oh I forgot! you can use
transparent clock background.cab to get the effect you want
awesome! thanks a lot for ur reply!
Yeah use my cabs, but you will still get the lines its inevitable when you remove the clock flippers man
ah shame. i thought that ppl let those gaps there, so that the "flip" of the numbers looked better
excellent work with those cabs btw, they were exactly what i needed
I would love a clock like this also. Shame nobody wants to make it without the lines (from the flippers).
Having the lines kills the elegancy of it.
Hi everyone,
I get a solution to fix the problem with the flip lines but you have to be very carefully 'coz it's a bit risky...don't be panic, it works for me perfectly without problem and it would work for you guys too, just follow the instruction
1. Make a backup of the 7c60907d_manila go to your /windows directory and find that file, copy and paste it in your SD card.
2. Download the attached rar. file to your PC, extract the file and save the folder "NoFlipLIne" in your SD card
3. Using Total Commander or File Resco, go to your SD card and open the folder "NoFlipLine" and copy the manila file and paste it into your /Windows directory and accept overwrite (don't worry, you have a backup in case something go wrong)
4. Now reset Sence or restart your phone (as you prefer) and see if you like the magic
Also this manila file has a fix to get installed up to 20 CHT widgets too.
In case of any problem, just find your backed up original file and reinstall it back.
Remember, that works perfectly in my device, but I will not be responsible if it does not work well on yours or cause any other problems, so use it at your own risk
Enjoy it and please let me know if it works well for you.
Your feedback or just a Thanks button clicked is always appreciated.
Thank you for the reply, and your effort.
Unfortunately this did not work. I did exactly as you said, when I restart the phone, I get the original clock, with flippers, but no text where the time is. Basically the time (text) is blank and I just have the original flippers which flipe with nothing inside them.
I don't have screen capture software so I hope you know what I mean. I fyou want a screen print, please link a screen capture app.
I copied the original (backup file) to Windows and all is ok now.
My phone details are as follows:
ROM: 314 WWE (3.14.831.3
Manila: 2.5.20161330.0
WM6.5
Thanks again for trying. Any other suggestions?
ok, this s a little embaressing, I feel like an idiot.
There was no clock text as everything was white. When I mucked around and applied the 'transparent flippers' boom, the clock is just like the pic. PERFECT.
Thanks heaps. I have 'thanked' your post. Good job.
hgalanos said:
ok, this s a little embaressing, I feel like an idiot.
There was no clock text as everything was white. When I mucked around and applied the 'transparent flippers' boom, the clock is just like the pic. PERFECT.
Thanks heaps. I have 'thanked' your post. Good job.
Click to expand...
Click to collapse
Hi Hgalanos,
Please, don't feel like that, it happen to everyone sometimes
I'm glad it works for you too and you get it the way you like it, thanks for your feedback my friend.
Best regards.
hgalanos said:
Thank you for the reply, and your effort.
I don't have screen capture software so I hope you know what I mean. I fyou want a screen print, please link a screen capture app.
Click to expand...
Click to collapse
Hi again my friend,
I forgot to give you a hand with this one too, so here I'm again
For screen capture I use a great app that is very easy to use and works perfectly and with good quality, it is "Shake and Save" which you can find it in this thread: http://forum.xda-developers.com/showthread.php?t=488990
Best regards.
Wow, brilliant app. Thank you x2. For the app, and the clock.

[APP][2.2+/3.0+][open source] Pixelesque - Pixel Art Creator

So I found out there's no pixel art creator/editor/drawer for android. Naturally I had to write one. 72 hours later: Pixelesque.
Backend is done with Processing, and all the android buttons were made with the app itself.
100% free
Market: https://market.android.com/details?id=com.rj.pixelesque
Source: https://github.com/rjmarsan/Pixelesque
You can edit, export, share, etc.
I'm super interested in feedback; ease of use, feature suggestions, etc.
Hey, thanks for working on this. It is a very good start and a good idea since it can be a quick few minute diversion while waiting in line, on the bus, etc.
Additions that would be cool to see-
ability to choose the size of the canvas and be able to add or remove rows/columns.
see a preview of the picture quickly while creating it
have an optional coordinate system (a la excel) to keep track of space, symmetry, etc
(far off thought) social aspect! Have browsable creations from other artists, ratings, tagging and sorting, etc
silentheero said:
Hey, thanks for working on this. It is a very good start and a good idea since it can be a quick few minute diversion while waiting in line, on the bus, etc.
Additions that would be cool to see-
ability to choose the size of the canvas and be able to add or remove rows/columns.
see a preview of the picture quickly while creating it
have an optional coordinate system (a la excel) to keep track of space, symmetry, etc
(far off thought) social aspect! Have browsable creations from other artists, ratings, tagging and sorting, etc
Click to expand...
Click to collapse
Good suggestions. The preview and coordinate system seem totally doable. As for the first one, do you mean resize things, or making new ones? I thought the 'new' dialog did a good job of choosing custom sizes.
The social part is certainly something I had thought a lot about, but don't have the time or skill to write the server/browser side (anyone want to help?)
awesome!! i am huge into low-res pixel art (weird, i know) so i am very excited about this. just got a warranty replacement on my phone so i have to upgrade to 2.2 again before i can install but i'm definitely going to try it out.
as for quickly resizing to look at the overall picture: in a pixel program i use (GraphicsGale) as well as photoshop and whatnot, you can set a little "preview" window of your image to see how it looks zoomed out. it really helps being able to glance over and see the image to make sure it's all coming together and the composition is right, and as it might be bulky doing something like that on a phone it would be equally useful to have a quick "zoom out/zoom in" button to look at the overall image. i'm guessing that's what the other guy was saying - but like i said, i haven't gotten to install it yet so i have no idea if this kind of thing exists yet!
lauu said:
awesome!! i am huge into low-res pixel art (weird, i know) so i am very excited about this. just got a warranty replacement on my phone so i have to upgrade to 2.2 again before i can install but i'm definitely going to try it out.
as for quickly resizing to look at the overall picture: in a pixel program i use (GraphicsGale) as well as photoshop and whatnot, you can set a little "preview" window of your image to see how it looks zoomed out. it really helps being able to glance over and see the image to make sure it's all coming together and the composition is right, and as it might be bulky doing something like that on a phone it would be equally useful to have a quick "zoom out/zoom in" button to look at the overall image. i'm guessing that's what the other guy was saying - but like i said, i haven't gotten to install it yet so i have no idea if this kind of thing exists yet!
Click to expand...
Click to collapse
The preview is an excellent idea.
I'm slowly starting to realize I have more ideas than space on the screen. Is there anything that's less necessary, or confusing about the UI? I'm debating having a quick popup on startup explaining how to use it, but i sort of hate those apps.
Someone mentioned to me having the bottom bar of tools swipe side to side like launcher pro. Don't know if that's 'intuitive' or most people wont notice it.
rjmarsan said:
The preview is an excellent idea.
I'm slowly starting to realize I have more ideas than space on the screen. Is there anything that's less necessary, or confusing about the UI? I'm debating having a quick popup on startup explaining how to use it, but i sort of hate those apps.
Someone mentioned to me having the bottom bar of tools swipe side to side like launcher pro. Don't know if that's 'intuitive' or most people wont notice it.
Click to expand...
Click to collapse
I finally got around to updating my phone to get pixelesque, and I love it. The UI to me is simple and straight-forward; if you're looking to downsize, the pencil/hand tools could probably be combined. It helps having the single-pixel option but I don't think it's totally necessary. I'm impartial to the whole "side-swipe" thing; if you add more options/icons yeah it could come in handy but for now I personally like it as is. One thing that could attract a lot more pixel art enthusiasts could be the option to begin with a canvas of large pixels (like it has now) or smaller (maybe half-size?) pixels, for better detail. Again I don't know **** about app development so I have no idea how difficult changes like this are
But so far I love it! I'll update here with some pixel art if I ever get the time
lauu said:
One thing that could attract a lot more pixel art enthusiasts could be the option to begin with a canvas of large pixels (like it has now) or smaller (maybe half-size?) pixels, for better detail.
Click to expand...
Click to collapse
You and silentheero have mentioned the same point. Is this an extension to the "New" dialog, or something I'm missing?
Also, I'm almost done with making a 'fill' brush and some geometry brushes 'circle, rectangle, line'. I think I'll try to implement a live preview as well as a color picker for the next release (probably in a week or so), along with any more features you guys can think of.
Thanks so much for the ideas guys.
New update, added a preview on the bottom, brushes (fill, rect, circle, and line), and upped the single image size to 64x64. Performance also has increased quite a bit.
No color picker JUST yet, still working out exactly how I'd like to implement it. Ideas? Thoughts in general?
rjmarsan said:
Someone mentioned to me having the bottom bar of tools swipe side to side like launcher pro. Don't know if that's 'intuitive' or most people wont notice it.
Click to expand...
Click to collapse
I tried if I could swipe the tools
rjmarsan said:
No color picker JUST yet, still working out exactly how I'd like to implement it. Ideas? Thoughts in general?
Click to expand...
Click to collapse
How about holding the finger down on a pixel picks its color?
FEATURES I WOULD LIKE:
1) A textured background, so it is possible to distingush between a black pixel and a transparent one.
2) The ability to swich to fullscreen mode in the settings.
3) I can't save the file. I simply cannot figure out how to get a .png file out of the program. Export seems just wierd, I don't want to save at some other resolution than the one I draw in.
4) How about a simple in-game help text? I uninstalled Pixelesque once because I didn't discover most of the features (multiple canvas sizes, drag, zoom, auto-saved colors)
5) It would be nice if it was possible to import a high-res bitmap in the background, which I could trace as pixel-art. Then I could sketch naturally, either using a physical pencil, or another drawing app.
... Besides that, the app is perfect! Good work.
kasper hviid said:
How about holding the finger down on a pixel picks its color?
Click to expand...
Click to collapse
I like that a lot. I'll just have to make sure to put a short help guide when the app starts.
kasper hviid said:
1) A textured background, so it is possible to distingush between a black pixel and a transparent one.
Click to expand...
Click to collapse
Yup. Haven't done this one yet out of laziness, but I should.
kasper hviid said:
2) The ability to swich to fullscreen mode in the settings.
Click to expand...
Click to collapse
How exactly does this work? Would the bottom and top bars just go away, and you hit menu again for them to come back?
kasper hviid said:
3) I can't save the file. I simply cannot figure out how to get a .png file out of the program. Export seems just wierd, I don't want to save at some other resolution than the one I draw in.
Click to expand...
Click to collapse
Yeah... for now you can dig out the actual .png from the program folder (that's all it uses to save the images itself), but I should add an 'original size' to the export menu, if that works?
kasper hviid said:
4) How about a simple in-game help text? I uninstalled Pixelesque once because I didn't discover most of the features (multiple canvas sizes, drag, zoom, auto-saved colors)
Click to expand...
Click to collapse
Definitely. coming soon.
kasper hviid said:
5) It would be nice if it was possible to import a high-res bitmap in the background, which I could trace as pixel-art. Then I could sketch naturally, either using a physical pencil, or another drawing app.
Click to expand...
Click to collapse
I was actually thinking of making this a 'paid' feature, as it's a pretty intense. Not sure if this app is at a point yet where anyone would buy a paid version.
kasper hviid said:
... Besides that, the app is perfect! Good work.
Click to expand...
Click to collapse
Thanks a lot man. Thanks for the feedback too. I pretty much make this app based off what people here ask for. The only other feature I've been thinking that you didn't mention, is a way to shift and resize drawings.
rjmarsan said:
Yeah... for now you can dig out the actual .png from the program folder (that's all it uses to save the images itself), but I should add an 'original size' to the export menu, if that works?
Click to expand...
Click to collapse
That would be nice!
rjmarsan said:
How exactly does this work? Would the bottom and top bars just go away, and you hit menu again for them to come back?
Click to expand...
Click to collapse
I would think of something like "stays fullscreen untill it's turned off again in the settings." I really like discrete minimalistic interfaces, so my ideal Pixelesque would probably be something like this:
img805.imageshack.us/img805/3075/pixelesque.jpg
I have removed everything, sized down the icons and removed the icons background, and added a bit of drop shadow.
After Chrome came out, Firefox copypasted its minimalistic GUI. So having less GUI must have some value. But I'm more fanatical about it than most.
rjmarsan said:
I was actually thinking of making this a 'paid' feature, as it's a pretty intense. Not sure if this app is at a point yet where anyone would buy a paid version.
Click to expand...
Click to collapse
Making it a paid feature sounds reasonable, since it is more geared towards more ambitious users.
Another method would be to have a high-res sketching layer with a few basic sketching tools: Sketching pencil, larger pencil at the size of a "final pixel" and eraser. Colors won't be needed. That way, the sketch could be drawn to fit a certain pixel size, and the artist won't waste time with too small details.
A FEW SMALL IDEAS:
Ability to turn the grid off
Two-finger shortcuts like Menu+screentouch or Pencil+screentouch. Could be used to turn preview on/off or eyedropper.
Toggle small/large/both by clicking the preview
For some reason, the semi-opaque square at my finger "feels" sluggish, since it jumps to the current pixel.
Will definitely be trying this. Used to "draw" on my old ti-82 all the time.
Sent using Tapalk.
People invent fantastic and simply things sometimes...
maybe a dialog to save when exiting should be added ?
or some mechanism that saves the last made image automaticly when exiting ?
I love pixel art but never got into it but as a person who never done it... I think the ability to import a picture in the background and create pixel art over it is an awesome idea.
It shouldn't be only in the pro version since I think this single feature will let everyone try it out and create pixel art.
Perhaps free version is limited to 16 colors vs 256 of pro + more tools.
Just the ability to import a picture in the background and use 16 colors to recreate it (don't need tools really just a pencil tool) = free.
Pro should have more tools, ability to resize grid, upload options (Facebook?), and more.
G2x - 2.3.7 CM7
Transformer - 3.2 Revolver OC/UV
maepchik said:
People invent fantastic and simply things sometimes...
Click to expand...
Click to collapse
Thank you very much. I really appreciate the comments people leave.
1immortal said:
maybe a dialog to save when exiting should be added ?
or some mechanism that saves the last made image automaticly when exiting ?
Click to expand...
Click to collapse
I spent all lunch discussing your comment. I think what I'm going to do, is it will automatically save right before the app quits. That way you can open an existing image, edit it for a while, save it as something else, but don't lose your original. However if you edit it and quit, you don't lose your work. Is that a fair tradeoff?
player911 said:
I love pixel art but never got into it but as a person who never done it... I think the ability to import a picture in the background and create pixel art over it is an awesome idea.
It shouldn't be only in the pro version since I think this single feature will let everyone try it out and create pixel art.
Perhaps free version is limited to 16 colors vs 256 of pro + more tools.
Just the ability to import a picture in the background and use 16 colors to recreate it (don't need tools really just a pencil tool) = free.
Pro should have more tools, ability to resize grid, upload options (Facebook?), and more.
G2x - 2.3.7 CM7
Transformer - 3.2 Revolver OC/UV
Click to expand...
Click to collapse
I have a really tough time with making a paid app. I've never done it before, as it feels really mean. On the one hand, I want the paid app to be for hardcore users who want the 'power tools' that are tough to implement and only benefit them. On the other hand, I don't want to purposefully lobotomize the free version to force people to upgrade... The image as a background is a handy feature, albeit a bit of an intense feature. I think I can work it in the free version, or alternately just may give away the pro version to you awesome xda guys.
rjmarsan said:
I spent all lunch discussing your comment. I think what I'm going to do, is it will automatically save right before the app quits. That way you can open an existing image, edit it for a while, save it as something else, but don't lose your original. However if you edit it and quit, you don't lose your work. Is that a fair tradeoff?
Click to expand...
Click to collapse
fair enough
you're doing a great job, thanks for all your time and work !
rjmarsan said:
Yeah... for now you can dig out the actual .png from the program folder (that's all it uses to save the images itself), but I should add an 'original size' to the export menu, if that works?
Click to expand...
Click to collapse
Where is the Program folder? I can't find it on my SD Card.
This App is FANTASTIC. It's perfect for making my Rockbox Artwork. My suggestions so far are:
1) An easy way to export my created art in one go, rather than one at a time. The current way isn't that good for me. I see no point in having the option to export in the current Low, Medium and High resolutions. Like, what's the point? I'd just like to see it export the image(s) I've created in their existing size and be able to chose from one/many or all to export at once. ie transfer them to my PC.
2) The ability to Play the created files as an Animation or Flip Art. ie Let me choose a list of files I've created (all the same grid size) and the order I wish to see them shown and the speed. Similar to this:
https://market.android.com/details?...51bGwsMSwxLDEwNCwiYWlyLkJyaWRnZUludmFkZXJzIl0.
Check out the Vimeo link there.
3) The option to save them as bitmaps,preferably with colour options ie 2 colour Black and White.
4) I'd like to see the "Save As" option in the same Menu as the "Save". If I'm creating multiple files in succession, it would be nice to only have to tap the menu once and not click "More".
5) The option to choose Preview Size. I'd like a larger preveiw that what's there now.
Thanks for the great free app. It's a lot of fun.
---------- Post added at 07:55 PM ---------- Previous post was at 07:53 PM ----------
rjmarsan said:
I spent all lunch discussing your comment. I think what I'm going to do, is it will automatically save right before the app quits. That way you can open an existing image, edit it for a while, save it as something else, but don't lose your original. However if you edit it and quit, you don't lose your work. Is that a fair tradeoff?
Click to expand...
Click to collapse
I'd like this option.

Gear Watch Designer and Color Option

Anyone knows how to make a watch face with Gear Watch Designer with multiple background or index options?
I want to make a face with the option for the user to choose bg og index color, but I can't find out how.
There are several other faces with options so there must be a way to do this.
None?
No one wants to share? I know someone in here knows it!
KingChaos said:
Anyone knows how to make a watch face with Gear Watch Designer with multiple background or index options?
I want to make a face with the option for the user to choose bg og index color, but I can't find out how.
There are several other faces with options so there must be a way to do this.
Click to expand...
Click to collapse
There is a way to add "Actions" to things. I haven't played around with it too much but you can swap images on touch. That's what I had gathered.
Or they do it on Tizen SDK
Sent from my SM-G925F using Tapatalk
What you could do is create new images with different merged backgrounds and indexes. You then add a background that has an index as part of the picture. With that image selected, go over to the right and choose action and create button. Click the action tab and under first drop down select change picture. You can then add up to six other pictures that have an index included. Align all the pictures to fit in the circle. Then once on a watch, you just tap the picture and it will cycle through the backgrounds with their indexes.
Wacholtz said:
There is a way to add "Actions" to things. I haven't played around with it too much but you can swap images on touch. That's what I had gathered.
Click to expand...
Click to collapse
Ok. Thanks. Found it. To bad the whole screen is the a button. But it kind of works.
lonelydra said:
Or they do it on Tizen SDK
Sent from my SM-G925F using Tapatalk
Click to expand...
Click to collapse
Yeah. Gotto start using that to find out how it works. Or maybe someone can post a settings.xml with an sample...
Hobson318 said:
What you could do is create new images with different merged backgrounds and indexes. You then add a background that has an index as part of the picture. With that image selected, go over to the right and choose action and create button. Click the action tab and under first drop down select change picture. You can then add up to six other pictures that have an index included. Align all the pictures to fit in the circle. Then once on a watch, you just tap the picture and it will cycle through the backgrounds with their indexes.
Click to expand...
Click to collapse
Can you give me an exact step by step on how to do this ie go into more detail
what about hands
hi every body
what about hands how can i change with each deferment background ?
amrmaher said:
hi every body
what about hands how can i change with each deferment background ?
Click to expand...
Click to collapse
The program just requires some trial and error. I learned how to use it by modifying preexisting unlocked template faces.
Although it's fun to create something yourself, it's very easy to find practically any design that you want online.
You can leave the designs as they are, drastically change them in some way that suits you or just create something from scratch.
Next just sync the face to your watch via WiFi.
Furthermore, you can create a developer account and upload your own creations to sync with your Samsung account.
It literally took me 10 minutes to submit the developer application and get accepted.
Sent from my LeEco Le Pro3 using XDA Labs
amrmaher said:
hi every body
what about hands how can i change with each deferment background ?
Click to expand...
Click to collapse
Can anybody tell me about, how to change hands image with background image on taping.
tsongming said:
The program just requires some trial and error. I learned how to use it by modifying preexisting unlocked template faces.
Although it's fun to create something yourself, it's very easy to find practically any design that you want online.
You can leave the designs as they are, drastically change them in some way that suits you or just create something from scratch.
Next just sync the face to your watch via WiFi.
Furthermore, you can create a developer account and upload your own creations to sync with your Samsung account.
It literally took me 10 minutes to submit the developer application and get accepted.
Sent from my LeEco Le Pro3 using XDA Labs
Click to expand...
Click to collapse
Spot on mate. I have been making my own well trying. I got animated backgrounds working. I never used Photoshop so im learning from scratch
azharshafiq100 said:
Can anybody tell me about, how to change hands image with background image on taping.
Click to expand...
Click to collapse
I join the question. How to change the color of the arrows on tap, without prejudice to other functions. For example, I want to change the background color and the color of the hour and minute hands. At the same time, if you add different types of arrows to the "action" section, the background change function is blocked, since the layers are located below the arrows. I saw how the developers made a separate place on the screen for the function of changing the color of the arrows. But I did not understand how to do this.

Categories

Resources