I can't understand why Facer App doesn't work well on my cell phone

Good morning companions

Today I am programming a design … where, on the cell phone, Facer APP does not work well for me … it shows me my design with a programming error.
As I show in these images …

The numbers of all hours appear on the screen …

This is another example

But on the computer, and on the clock … everything works fine, and it shows me well, my design …
As I show in these images …


I tell them what I want to design and program
I want to make a design using each number of the hour … individually … apart … each number, number …

And using this type of code for each number of the hour

for the “0”
in the case of 01:00 or 02:00 and others, until 09:00 hours

$ # Db # == 00? 100: 0 $ || $ # Db # == 01? 100: 0 $ || $ # Db # == 02? 100: 0 $ || $ # Db # == 03? 100: 0 $ || $ # Db # == 04? 100: 0 $ || $ # Db # == 05? 100: 0 $ || $ # Db # == 06? 100: 0 $ || $ # Db # == 07? 100: 0 $ || $ # Db # == 08? 100: 0 $ || $ # Db # == 09? 100: 0 $

for 1 "
in the case of 10:00, 11:00 and others, until 19:00

$ # Db # == 10? 100: 0 $ || $ # Db # == 11? 100: 0 $ || $ # Db # == 12? 100: 0 $ || $ # Db # == 13? 100: 0 $ || $ # Db # == 14? 100: 0 $ || $ # Db # == 15? 100: 0 $ || $ # Db # == 16? 100: 0 $ || $ # Db # == 17? 100: 0 $ || $ # Db # == 18? 100: 0 $ || $ # Db # == 19? 100: 0 $

for the “2”
in the case of 20:00, 21:00 and others, until 24:00

$ # Db # == 20? 100: 0 $ || $ # Db # == 21? 100: 0 $ || $ # Db # == 22? 100: 0 $ || $ # Db # == 23? 100: 0 $ || $ # Db # == 24? 100: 0 $

And so on consecutively with the other figures and minutes

On the computer and on the clock … the programming and the system work well …

But on the cell phone it shows me this way … with error

I wanted to know if it is my cell phone that works badly … looking at other designs by other designers … and also mine …
And everything looks good … works fine …

I would like to know if someone has had this type of problem with the APP facer, with the cell phone … ?

Cordially

Are you using the “Glow” or “Stroke” effect on the text? If so turn it off and see if it fixes it.

1 Like

Yes, use the shadows …
Then I erase them … and it looks good … if I change the color of each layer from light to darker …

But I still have the problem that it shows me the numbers of all the hours …

I just tried with my son’s phone … enter my facer account … and I have the same error … the same thing that happens to me with my cell phone …

With the computer, and with my watch … the programming that I did works well …

With the cell phone … it shows me that error …

I do not know what it could be…

Too Many Conditions in one Tag?. I thought we were only able to use three || in one line.

2 Likes

Thank you very much for being interested in @russellcresser for my situation … :slightly_smiling_face:
For me, it is very interesting … what is the mistake …
I still can’t understand … where is the error :thinking:

It may be, that it has many commands …?

As I have told @mrantisocialguy too … that on my watch and on my computer, the design works well …
But but with the cell phone … the design and the programming … I got buggy …

I have also tried with my son’s cell phone … having my facer account … And he happens himself … the same mistakes …
Then try another cell phone, from another brand … and the same thing happens …

But … On my computer, and on my watch … everything is fine … it shows me the design and programming …

The truth is, I don’t know what it can be …

I think Russell is right. 3 seems to be the max. You’ll probably have to rework it with multiple layers and conditions either via opacity or position to show/hide as needed.

And in general, I think we’ve all found that a lot of things that appear to work in the creator don’t work on the watch, or apparently sometimes even the app.

2 Likes

Thank you very much @mrantisocialguy for being interested in for my situation … :slightly_smiling_face:

Today a different day for me … with this design … :upside_down_face:

Thank you very much for your time and help @kvansant

I think I am going to analyze again, with the subject of layers, shadows and highlights …
See what happens…

For now, I just published another design with another type of hour and minute programming …
And with fewer layers … and shadows …

It’s not what I wanted … but hey … it’s something similar … that I could design …

1 Like

Did you make it with beta creator? For some reason it always makes me to log into beta.
btw. from the screen shots it seems you are doing the things unnecessary complicated when the digits are made using text fields.
then you only need one text (not opacity)
for the first digit (floor(#Db#/10))
for the second digit (#Db#%10)
for the third digit #DmMT# or (floor(#Dm#/10))
for the fourth digit #DmST# or (#Dm#%10)
even if you used images instead of text fields then for the opacity is enough
for the first digit 0 put $#Db#<10?100:0$
for the first digit 1 put $((#Db#>9)*(#Db#<20))?100:0$
for the first digit 2 put $#Db#>19?100:0$
and so on

2 Likes

Thank you very much for your time and support @petruuccios :slightly_smiling_face: :+1:

Did you make it with beta creator?

Yes. I use Beta … v6.3.7.2_beta

I understood … your help …
Today I’m going to work on this topic … let’s see how I finish it …

Cordially

Many … Many … Thank you very much @petruuccios … and also to @mrantisocialguy , @russellcresser , @kvansant

for the great help of him … :blush: :+1: :+1: :+1:

Now it works for me and everything looks good (the programming and the vision) (through the computer, cell phone and the clock), with these commands that
@petruuccios gave me …

I used the same number of coats … but with less amount of glitter for each coat …
What I changed, was the commands of the first hour … “10:00”
, and the first minutes … “00:10”

the first digit 0 put $ # Db # <10? 100: 0 $
for the first digit 1 put $ ((# Db #> 9) * (# Db # <20))? 100: 0 $
for the first digit 2 put $ # Db #> 19? 100: 0 $
and so on

And also change the commands to all layers of all hours and minutes
for the first digit (floor (# Db # / 10))
for the second digit (# Db #% 10)
for the third digit # DmMT # or (floor (# Dm # / 10))
for the fourth digit # DmST # or (# Dm #% 10)

And everything started to work well …

I am very grateful for your great help and time :slightly_smiling_face: :+1:

Thank you very much partners !!! :beers:

** CORDIALLY !!!**

2 Likes