I’m trying to make an app with a background image and text on the image but the image keeps covering up the text. How would I be able to achieve this?
Maybe you have declared the image after the text…
If so, try this:
myText:toFront( );
after your image declaration…
The order you create objects determines the order matters. If you create the text first, it will be on the bottom of the background.
Rob
Thanks so much Rob that is exactly what I was looking for!
Maybe you have declared the image after the text…
If so, try this:
myText:toFront( );
after your image declaration…
The order you create objects determines the order matters. If you create the text first, it will be on the bottom of the background.
Rob
Thanks so much Rob that is exactly what I was looking for!