also, do not precede ther var with int. it should be only var myStuff:int = pop1.stuff;
I'm taking a deeper look into your code now, I was about to sleep when first answered.
Main Topics
Browse All TopicsI am having a problem getting information back from a popup title window to the main app. During debugging, I was able to see that the value was set in the custom popup but it doesnt get back to the main app. Can you please help? Am I missing something? Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Sorry for the late response julianopolito...I just woke up. This is what I am looking for, but whenever I tried to access the stuff variable outside of the setDefaults() method in the main app, it was always getting the initial value and not the new value (the updated numeric stepper value). It seemed to be reset back to the initialized value. For instance, I placed a button in the main app and set its click event to call results(). In results, I try to get the updated stuff value (after the changing the value in the numeric stepper and pressing OK), but I get the old value of 30.
But...I just realized why. The popup window instance only had scope to the setDefaults() method. When I gave it scope to the entire class, I was then able to access the latest stuff variable (after a change to the numeric stepper). Thanks
Business Accounts
Answer for Membership
by: julianopolitoPosted on 2008-04-04 at 23:20:33ID: 21287238
int var myStuff:int = pop1.stuff;
you gotta call this upon window close so you get the value updated. also put that info in a variable outside the scope of the function so its available