I'm having trouble getting data out of my shared object into a new movie
clip... it works great withing the main clip, but keeps returning an
'undefined' in my newly loaded clips... here is my sharedObject code on my
first frame of my _root MC
................................................................................
.....................................
user = SharedObject.getLocal("user_profile");
if (user.data.verb1 == undefined ){
_root.gotoAndStop("form");
} else {
propernoun = user.data.propernoun;
verb1 = user.data.verb1;
_root.gotoAndStop("done");
}
...........................
This is how I populate the dynamic text box with the sharedObject data... but
I want it to use the same sharedObject data
name = "Welcome " + propernoun;
dr_font - 23 Aug 2005 22:18 GMT
got it...
seems all i had to do was add to the actions layer...
user = SharedObject.getLocal("user_profile");