Changing variables in one VIEW from another (WMP)

This has been bugging me for long enough, I will at last seek an answer from the pros.

If you have a variable in one [view], and a button or other function in another, can you change the variable in the first [view] from the second?

An example of what I mean: let's say in the main view called "mainview" I have a text called "text". From a button in "mainview" I could call "text.value='this is the new text';". But from a different view, called "secondview", I can't just use that same code.

I assume there is a simple code to get a handle to the first view, but I am not familiar with the syntax. Thanks,
2,435 views 3 replies
Reply #1 Top
Maybe you have to use "mainview.text.value='this is the new text'" in your secondview VIEW. But dont take my word for it. I havent even figured out how to make multiple views yet.