Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X
Hi all,
How can I use a global variable in the APP, for transfer an information from OnEnter to OnExit function?( I need to used any type of information, and not just string).
If you are transferring OnEnter to OnExit then you don't want to use a global variable. In APP, global variables are not sensitive to the format state which means you can end up with strange results in certain cases.
What APP traditionally uses for this type of storage are the "format safe" counters and FISH. In v10 M070 and above, Javascript variables (but not Javascript objects) will also be format safe.
Thank you for your response!
I created a external javascript and a global variable in it. It worked well!