Hidden Elements on Mobile

Hi Sammit,
Here I have a few answers/solutions for you.

  1. About the next one:
    “This is just a question on animation. Is it possible to give properties to the animation effect. Let’s say like “Float In” from bottom with 2 speed and 1 delay. If it is possible, how should the code be?”

At this moment we don’t have the full scope of Editor API’s for custom usage, but you can easily set animation effect with delay via code, here is the sample:

setTimeout(showimage, 1000);

function showimage() {
	$w("#image1").show('FloatIn');
}
  1. “Code Not Loaded” error: can’t reproduce this issue at this point, will continue with analyz.
  2. About “Hide” animations - I see a few issues, once it will be solved - I’ll update you, that you can use it.

Thanks.