Is it possible to flip a button

Good morning to you all!
Is it possible to turn a button horizontally or vertically (e.g. an arrow) without having to change each state?
Thank you for your always valuable support! :smiling_face_with_three_hearts:

ActivePresenter Version: 8.0.4

OS: 10.13.6

Notes:

Hi Betty,

ActivePresenter doesn’t support this feature in the editor.
If you need it for HTML5 output, you can use the following script:

// flip horizontally
prez.object('object name').scaleBy(-1, 1);

// flip vertically
prez.object('object name').scaleBy(1, -1);

Regards

1 Like

thank you very much, very kind!