SharedObject and Arrays

hi,

can anyone tell me how to save data into array using sharedobject.

For example:

There is one text field on the stage. Think that it is meant for user to enter UserName.

So I want to store the usernames in an array. When a user types the user name which already exists, its shoudl display a message saying that “user name already exists”.

I thik this can be done by saving into arrays. Can you tell me how to put these usernames into array and retrive data using shared objects. How to check whether it already exists.

Thanking you<
Prathap

First of all, you would have to use a button or something, because the person would have to specify when they have completed entering their name.

So, within the button actions, you could do

[AS]
on(release, press) {

for (i = 0; i < nameArray.length; i++){
if (theVariableNameForTheTextField == nameArray*){
nameFoundBoolean = true;
}
}

if (!nameFoundBoolean){
nameArray.push(theVariableNameForTheTextField);
}else{
trace(“The user name already exists”);
}
}

[/AS]

Hope that helps a bit.

hi,

thank you,

I will get back to you after working on that,

thank you very much,

let me see if it works fine,

thanking you,
prathap