Rescale from 2048 x 1536 to 1024 x 768

Hello,

I made a mistake by sizing the Hype Document to 2048 x 1536 what gives me performance problems with animations on ipad. Is there any way to scale it down to 1024 x 768, without re-layouting and readjust the whole document and animations? Vers. 3.0.3

Thank you for your help!

Limetic

None that I know of, sorry.

Thanks :slight_smile: So Note for me as a Newbie: Don’t put a 2048 x 1536 res if you need it on “retina” because 1024 x 768 does it also. :coffee:

1 Like

This doesn't work?

Nope, it will leave elements off of the stage in the browser view.

1 Like

Heh, duh!

Perhaps adding CSS could work, scale/transform the whole project. If it's just for iPad, maybe the following code would work...

<style>
body {
zoom: 0.5;
}
</style>

...but yeah, that's not going to fix the performance problems.