when i use this blocks it not working.
is there anything different to do this .
please help me
when i use this blocks it not working.
is there anything different to do this .
please help me
It works.
Your logic is wrong
Hi @AryanGupta,
Check this one.that one uses same logic at yours.But notice the values used.
Hope it helps
If (screen3.width > 501 and screen3.width < 600){
ā¦
}else if (screen3.width <= 500){
ā¦
}
the correct sequence of your statements is important in your case (because <600 includes <500)ā¦
first ask for <500 and then for <600ā¦
Taifun