Export location and size as percentage(%) in specification

Hi! I am exporting a spec as a wireframe and I am wondering if I can export “location and size” as a % of the canvas, rather than explicit pixel values?

My developer wants this as the app UI is dynamically resizable, would be a great feature if it doesn’t exist already!

Thanks!

Hi forge13!

While this scaling information is not available in Word specifications at the moment, you could have this scaling information display on the page when previewed in a web browser! A function like the one shown below calculates the scaling difference between a dynamic panel and the window:

[[((LVAR1.width)*(LVAR1.height))/((Window.width)*(Window.height))]]

The “LVAR1” local variable checks the width and height of the dynamic panel targeted in the function. You could set the text of a widget to equal a similar function as the widget or page loads to get an idea of the scaling. I hope that helps!

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.