July 2017
Intermediate to advanced
354 pages
9h 58m
English
Layers are the most basic elements you will use in your prototypes. They will contain your images, texts, and videos. They come with a set of properties you can modify according to your needs.
To create our first layer, we will use the word new and the name of the class, Layer in this case. This will create a new instance of the Layer class--by calling what is known as the constructor function of the class--and will assign it to the myFirstLayer variable. In the future, you can manipulate the Layer using the myFirstLayer variable:
myFirstLayer = new Layer
We can change its position by giving values to the x and y properties. Those values will be provided in pixels. As we will use an Android device for our prototype with a resolution ...