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