When creating an object, assign it to some variable (like "rect" in your code but something you can access from outside the function creating the object). You can then access the object through the variable.
When creating an object, assign it to some variable (like "rect" in your code but something you can access from outside the function creating the object). You can then access the object through the variable.
Thank you. Do you have an example?
Here is one option:
javascript Code:
Item { property Item dynamicItem function createItem() { dynamicItem = cmpnt.createObject(...); } }To copy to clipboard, switch view to plain text mode
Thank you, but in my case I cannot figure out how to do to change the state of my element. Can you help me?
Bookmarks