Is there a way to change component's page programmatically?


Recommended Posts

It's just that, since there seems to be no way to create a new component programmatically, I'm trying to create the components beforehand and then when needed, bring them in that page. Is there a way to do that in a sequence?

let's say my component's name is 1.

component.1.

Thanks!

Link to comment
Share on other sites

No, but if you are just trying to precreate components (because you can't create them dynamically), you can simply put them on the page and set their visible property to 0 to make them invisible.

Component.mycomponent.visible = 0

Note that you can't have a component named "1". It has to start with a letter.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.