Play with object properties with javascript

Problem:
I use ActivePresenter to create dynamic presentation inside a single slide. I use Javascript code for this but I didn’t find a list of accessible object properties and syntax description.
For example, how to show or hide an object using JS or how to change a color with JS.
Can you help me?

ActivePresenter version:

OS:

Notes:

Hi,

You can find the information about JavaScript in ActivePresenter from pages 256 - 269 manual.
For example, hiding an object using javascript:

prez.object('Objectname').hide();

image

Javascript code to change color (you can see this info on page 265 > fillSolid(color):
prez.object('Objectname').fillSolid("blue");

Regards,
Hang

Hi,
I’m sorry to have disturbed you. I realize how obvious the answers are. The manual is now my bedside book. Thank you

1 Like